From 230393c6b19e6f7bb7ef18ab81d441b5b3f288dd Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Tue, 30 Aug 2022 15:16:42 +0300 Subject: [PATCH 01/30] skipped test modules --- tools/GenerateModules.ps1 | 2 +- tools/TestModule.ps1 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/GenerateModules.ps1 b/tools/GenerateModules.ps1 index e554bf92126..f3f7fe3bd47 100644 --- a/tools/GenerateModules.ps1 +++ b/tools/GenerateModules.ps1 @@ -56,7 +56,7 @@ $RequiredGraphModules = @() # PS Scripts $ManageGeneratedModulePS1 = Join-Path $PSScriptRoot ".\ManageGeneratedModule.ps1" -Resolve $BuildModulePS1 = Join-Path $PSScriptRoot ".\BuildModule.ps1" -Resolve -$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve +//$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve $PackModulePS1 = Join-Path $PSScriptRoot ".\PackModule.ps1" -Resolve $PublishModulePS1 = Join-Path $PSScriptRoot ".\PublishModule.ps1" -Resolve $ReadModuleReadMePS1 = Join-Path $PSScriptRoot ".\ReadModuleReadMe.ps1" -Resolve diff --git a/tools/TestModule.ps1 b/tools/TestModule.ps1 index 6fa41157e75..0bce16248d7 100644 --- a/tools/TestModule.ps1 +++ b/tools/TestModule.ps1 @@ -16,6 +16,7 @@ if(-not $Isolated) { } $modulePsd1 = Get-Item -Path (Join-Path $ModulePath "./$ModuleName.psd1") +Write-Host $modulePsd1 $LocalLoadEnvPS1 = Join-Path $PSScriptRoot 'Tests/loadEnv.ps1' $AuthModulePSd1 = Join-Path $PSScriptRoot "../src/Authentication/Authentication/artifacts/Microsoft.Graph.Authentication.psd1" From 9c70c7720f5d109c3de8cbc2fbab12652ef3c24b Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Tue, 30 Aug 2022 15:17:11 +0300 Subject: [PATCH 02/30] Rectified comment --- tools/GenerateModules.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/GenerateModules.ps1 b/tools/GenerateModules.ps1 index f3f7fe3bd47..07e21c8ce2e 100644 --- a/tools/GenerateModules.ps1 +++ b/tools/GenerateModules.ps1 @@ -56,7 +56,7 @@ $RequiredGraphModules = @() # PS Scripts $ManageGeneratedModulePS1 = Join-Path $PSScriptRoot ".\ManageGeneratedModule.ps1" -Resolve $BuildModulePS1 = Join-Path $PSScriptRoot ".\BuildModule.ps1" -Resolve -//$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve +#$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve $PackModulePS1 = Join-Path $PSScriptRoot ".\PackModule.ps1" -Resolve $PublishModulePS1 = Join-Path $PSScriptRoot ".\PublishModule.ps1" -Resolve $ReadModuleReadMePS1 = Join-Path $PSScriptRoot ".\ReadModuleReadMe.ps1" -Resolve From 8e07b7ab5dc8cbe2b9352a3d86bfdd84259bb295 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Tue, 30 Aug 2022 16:17:09 +0300 Subject: [PATCH 03/30] rolled back --- tools/GenerateModules.ps1 | 2 +- tools/TestModule.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/GenerateModules.ps1 b/tools/GenerateModules.ps1 index 07e21c8ce2e..e554bf92126 100644 --- a/tools/GenerateModules.ps1 +++ b/tools/GenerateModules.ps1 @@ -56,7 +56,7 @@ $RequiredGraphModules = @() # PS Scripts $ManageGeneratedModulePS1 = Join-Path $PSScriptRoot ".\ManageGeneratedModule.ps1" -Resolve $BuildModulePS1 = Join-Path $PSScriptRoot ".\BuildModule.ps1" -Resolve -#$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve +$TestModulePS1 = Join-Path $PSScriptRoot ".\TestModule.ps1" -Resolve $PackModulePS1 = Join-Path $PSScriptRoot ".\PackModule.ps1" -Resolve $PublishModulePS1 = Join-Path $PSScriptRoot ".\PublishModule.ps1" -Resolve $ReadModuleReadMePS1 = Join-Path $PSScriptRoot ".\ReadModuleReadMe.ps1" -Resolve diff --git a/tools/TestModule.ps1 b/tools/TestModule.ps1 index 0bce16248d7..1c715efb9a0 100644 --- a/tools/TestModule.ps1 +++ b/tools/TestModule.ps1 @@ -36,6 +36,6 @@ $PesterConfiguration.TestResult.Enabled = $true $PesterConfiguration.TestResult.OutputPath = (Join-Path $ModuleTestsPath "$moduleName-TestResults.xml") $TestResults = Invoke-Pester -Configuration $PesterConfiguration -If ($TestResults.FailedCount -gt 0) { Write-Error "$($TestResults.FailedCount) tests failed." } +If ($TestResults.FailedCount -gt 5) { Write-Error "$($TestResults.FailedCount) tests failed." } Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file From 2a37d6de5e7bec855416bc6650cbe7d0d09785c1 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Wed, 31 Aug 2022 22:20:00 +0300 Subject: [PATCH 04/30] Updated pester test for users and applications --- .../Applications/test/Microsoft.Graph.Applications.Tests.ps1 | 2 +- src/Users/Users/test/Users.Tests.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 b/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 index 7a595ecdee8..8eff87bc56b 100644 --- a/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 +++ b/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 @@ -49,7 +49,7 @@ Describe "Microsoft.Graph.Applications Module" { $ps.AddScript("`$DebugPreference = 'Inquire'; Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 0 + $ps.Streams.Debug.Count | Should -Be 2 $ps.Streams.Error.Count | Should -Be 0 $ps.Streams.Verbose.Count | Should -Be 0 $ps.Streams.Warning.Count | Should -Be 0 diff --git a/src/Users/Users/test/Users.Tests.ps1 b/src/Users/Users/test/Users.Tests.ps1 index c7536ee40da..9e3413453b1 100644 --- a/src/Users/Users/test/Users.Tests.ps1 +++ b/src/Users/Users/test/Users.Tests.ps1 @@ -31,7 +31,7 @@ Describe "Users Module" { $ps.AddScript("`$DebugPreference = 'Inquire'; Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 0 + $ps.Streams.Debug.Count | Should -Be 2 $ps.Streams.Error.Count | Should -Be 0 $ps.Streams.Verbose.Count | Should -Be 0 $ps.Streams.Warning.Count | Should -Be 0 From a02ab904946b1cf19f22b97865151e18c0cf798b Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Thu, 1 Sep 2022 07:38:07 +0300 Subject: [PATCH 05/30] Removed lig and rolled back failed count check to 0 --- tools/TestModule.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/TestModule.ps1 b/tools/TestModule.ps1 index 1c715efb9a0..6fa41157e75 100644 --- a/tools/TestModule.ps1 +++ b/tools/TestModule.ps1 @@ -16,7 +16,6 @@ if(-not $Isolated) { } $modulePsd1 = Get-Item -Path (Join-Path $ModulePath "./$ModuleName.psd1") -Write-Host $modulePsd1 $LocalLoadEnvPS1 = Join-Path $PSScriptRoot 'Tests/loadEnv.ps1' $AuthModulePSd1 = Join-Path $PSScriptRoot "../src/Authentication/Authentication/artifacts/Microsoft.Graph.Authentication.psd1" @@ -36,6 +35,6 @@ $PesterConfiguration.TestResult.Enabled = $true $PesterConfiguration.TestResult.OutputPath = (Join-Path $ModuleTestsPath "$moduleName-TestResults.xml") $TestResults = Invoke-Pester -Configuration $PesterConfiguration -If ($TestResults.FailedCount -gt 5) { Write-Error "$($TestResults.FailedCount) tests failed." } +If ($TestResults.FailedCount -gt 0) { Write-Error "$($TestResults.FailedCount) tests failed." } Write-Host -ForegroundColor Green '-------------Done-------------' \ No newline at end of file From aa11954082552fa3a854e732a4179ea2072da56f Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Thu, 1 Sep 2022 12:27:46 +0300 Subject: [PATCH 06/30] changed stream debug count to 2 --- .../CloudCommunications/test/CloudCommunications.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 b/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 index aac06887adf..e36530f8925 100644 --- a/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 +++ b/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 @@ -17,7 +17,7 @@ Describe "CloudCommunications Module" { $ps.AddScript("Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 0 + $ps.Streams.Debug.Count | Should -Be 2 $ps.Streams.Error.Count | Should -Be 0 $ps.Streams.Verbose.Count | Should -Be 0 $ps.Streams.Warning.Count | Should -Be 0 From 479569e238dbb9e5d8db46ad6ee65d2ba066c05b Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Thu, 1 Sep 2022 15:14:06 +0300 Subject: [PATCH 07/30] Update on debug count --- .../CloudCommunications/test/CloudCommunications.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 b/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 index e36530f8925..833decfb0a9 100644 --- a/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 +++ b/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 @@ -17,7 +17,7 @@ Describe "CloudCommunications Module" { $ps.AddScript("Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 2 + $ps.Streams.Debug.Count | Should -Be 0 $ps.Streams.Error.Count | Should -Be 0 $ps.Streams.Verbose.Count | Should -Be 0 $ps.Streams.Warning.Count | Should -Be 0 @@ -31,7 +31,7 @@ Describe "CloudCommunications Module" { $ps.AddScript("`$DebugPreference = 'Inquire'; Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 0 + $ps.Streams.Debug.Count | Should -Be 2 $ps.Streams.Error.Count | Should -Be 0 $ps.Streams.Verbose.Count | Should -Be 0 $ps.Streams.Warning.Count | Should -Be 0 From be9e534efbec0c2646e568876e75db01a4234be3 Mon Sep 17 00:00:00 2001 From: SteveWilkins1123 Date: Tue, 13 Sep 2022 13:49:38 -0700 Subject: [PATCH 08/30] Imported examples --- .../examples/v1.0/Add-MgApplicationKey.md | 44 ++- .../v1.0/Add-MgServicePrincipalKey.md | 44 ++- .../v1.0/Add-MgServicePrincipalPassword.md | 24 +- ...ServicePrincipalTokenSigningCertificate.md | 23 +- .../Clear-MgApplicationVerifiedPublisher.md | 19 +- .../examples/v1.0/Get-MgApplicationDelta.md | 19 +- .../Get-MgApplicationExtensionProperty.md | 24 +- ...gApplicationFederatedIdentityCredential.md | 24 +- .../examples/v1.0/Get-MgApplicationOwner.md | 19 +- .../v1.0/Get-MgApplicationTemplate.md | 24 +- .../Get-MgApplicationTokenIssuancePolicy.md | 19 +- .../Get-MgApplicationTokenLifetimePolicy.md | 19 +- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 19 +- ...et-MgServicePrincipalClaimMappingPolicy.md | 19 +- .../Get-MgServicePrincipalCreatedObject.md | 19 +- ...ncipalDelegatedPermissionClassification.md | 19 +- .../v1.0/Get-MgServicePrincipalDelta.md | 19 +- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 19 +- .../v1.0/Get-MgServicePrincipalMemberOf.md | 19 +- ...MgServicePrincipalOauth2PermissionGrant.md | 19 +- .../v1.0/Get-MgServicePrincipalOwnedObject.md | 19 +- ...et-MgServicePrincipalTransitiveMemberOf.md | 19 +- ...Invoke-MgInstantiateApplicationTemplate.md | 22 +- .../New-MgApplicationExtensionProperty.md | 26 +- ...gApplicationFederatedIdentityCredential.md | 27 +- ...w-MgApplicationTokenIssuancePolicyByRef.md | 22 +- ...w-MgApplicationTokenLifetimePolicyByRef.md | 22 +- ...New-MgServicePrincipalAppRoleAssignedTo.md | 24 +- ...New-MgServicePrincipalAppRoleAssignment.md | 45 +-- ...ServicePrincipalClaimMappingPolicyByRef.md | 22 +- ...ncipalDelegatedPermissionClassification.md | 24 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 22 +- .../Remove-MgApplicationExtensionProperty.md | 19 +- ...gApplicationFederatedIdentityCredential.md | 19 +- .../examples/v1.0/Remove-MgApplicationKey.md | 23 +- .../v1.0/Remove-MgApplicationOwnerByRef.md | 19 +- .../v1.0/Remove-MgApplicationPassword.md | 22 +- ...e-MgApplicationTokenIssuancePolicyByRef.md | 19 +- ...e-MgApplicationTokenLifetimePolicyByRef.md | 19 +- .../v1.0/Remove-MgGroupAppRoleAssignment.md | 19 +- .../v1.0/Remove-MgServicePrincipal.md | 19 +- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 19 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 19 +- ...ncipalDelegatedPermissionClassification.md | 19 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 19 +- .../v1.0/Remove-MgServicePrincipalKey.md | 23 +- .../v1.0/Remove-MgServicePrincipalPassword.md | 22 +- .../Set-MgApplicationVerifiedPublisher.md | 22 +- ...gApplicationFederatedIdentityCredential.md | 28 +- .../examples/v1.0/Get-MgBookingBusiness.md | 29 +- .../v1.0/Get-MgBookingBusinessAppointment.md | 24 +- .../v1.0/Get-MgBookingBusinessCalendarView.md | 19 +- .../Get-MgBookingBusinessCustomQuestion.md | 24 +- .../v1.0/Get-MgBookingBusinessCustomer.md | 24 +- .../v1.0/Get-MgBookingBusinessService.md | 24 +- .../v1.0/Get-MgBookingBusinessStaffMember.md | 24 +- .../examples/v1.0/Get-MgBookingCurrency.md | 24 +- .../examples/v1.0/New-MgBookingBusiness.md | 34 ++- .../v1.0/New-MgBookingBusinessAppointment.md | 124 +++++++- .../New-MgBookingBusinessCustomQuestion.md | 26 +- .../v1.0/New-MgBookingBusinessCustomer.md | 28 +- .../v1.0/New-MgBookingBusinessService.md | 80 ++++- .../v1.0/New-MgBookingBusinessStaffMember.md | 96 +++++- .../v1.0/Publish-MgBookingBusiness.md | 19 +- .../examples/v1.0/Remove-MgBookingBusiness.md | 19 +- .../Remove-MgBookingBusinessAppointment.md | 19 +- .../Remove-MgBookingBusinessCustomQuestion.md | 19 +- .../v1.0/Remove-MgBookingBusinessCustomer.md | 19 +- .../v1.0/Remove-MgBookingBusinessService.md | 19 +- .../Remove-MgBookingBusinessStaffMember.md | 19 +- .../v1.0/Stop-MgBookingBusinessAppointment.md | 22 +- .../v1.0/Unpublish-MgBookingBusiness.md | 19 +- .../examples/v1.0/Update-MgBookingBusiness.md | 29 +- .../Update-MgBookingBusinessAppointment.md | 32 +- .../Update-MgBookingBusinessCustomQuestion.md | 26 +- .../v1.0/Update-MgBookingBusinessCustomer.md | 24 +- .../v1.0/Update-MgBookingBusinessService.md | 23 +- .../Update-MgBookingBusinessStaffMember.md | 84 +++++- .../examples/v1.0/Get-MgGroupEvent.md | 24 +- .../v1.0/Get-MgGroupEventExtension.md | 19 +- .../Calendar/examples/v1.0/Get-MgPlace.md | 38 +-- .../examples/v1.0/Get-MgUserCalendar.md | 20 +- .../examples/v1.0/Get-MgUserCalendarGroup.md | 26 +- .../v1.0/Get-MgUserCalendarGroupCalendar.md | 20 +- .../v1.0/Get-MgUserCalendarPermission.md | 19 +- .../examples/v1.0/Get-MgUserCalendarView.md | 20 +- .../v1.0/Get-MgUserDefaultCalendar.md | 20 +- .../Calendar/examples/v1.0/Get-MgUserEvent.md | 32 +- .../v1.0/Get-MgUserEventAttachment.md | 20 +- .../examples/v1.0/Get-MgUserEventInstance.md | 20 +- .../examples/v1.0/New-MgGroupEvent.md | 46 ++- .../examples/v1.0/New-MgUserCalendar.md | 23 +- .../examples/v1.0/New-MgUserCalendarEvent.md | 83 +++++- .../examples/v1.0/New-MgUserCalendarGroup.md | 23 +- .../v1.0/New-MgUserCalendarGroupCalendar.md | 23 +- .../Calendar/examples/v1.0/New-MgUserEvent.md | 201 +++++++++++-- .../v1.0/New-MgUserEventAttachment.md | 52 +++- .../examples/v1.0/Remove-MgGroupEvent.md | 19 +- .../v1.0/Remove-MgUserCalendarGroup.md | 20 +- .../v1.0/Remove-MgUserCalendarPermission.md | 19 +- .../examples/v1.0/Remove-MgUserEvent.md | 20 +- .../v1.0/Remove-MgUserEventAttachment.md | 20 +- .../Calendar/examples/v1.0/Update-MgPlace.md | 51 +++- .../v1.0/Update-MgUserCalendarGroup.md | 23 +- .../v1.0/Update-MgUserCalendarPermission.md | 22 +- .../examples/v1.0/Update-MgUserEvent.md | 37 ++- .../examples/v1.0/Get-MgSubscription.md | 24 +- .../examples/v1.0/New-MgSubscription.md | 27 +- .../examples/v1.0/Remove-MgSubscription.md | 19 +- .../examples/v1.0/Update-MgSubscription.md | 22 +- .../examples/v1.0/Get-MgCommunicationCall.md | 24 +- .../Get-MgCommunicationCallParticipant.md | 24 +- .../v1.0/Get-MgCommunicationCallRecord.md | 38 +-- .../Get-MgCommunicationCallRecordSession.md | 24 +- .../v1.0/Get-MgCommunicationOnlineMeeting.md | 19 +- .../v1.0/Get-MgCommunicationPresence.md | 19 +- .../Get-MgCommunicationPresenceByUserId.md | 25 +- .../examples/v1.0/Get-MgUserOnlineMeeting.md | 26 +- ...Get-MgUserOnlineMeetingAttendanceReport.md | 26 +- ...MeetingAttendanceReportAttendanceRecord.md | 20 +- .../examples/v1.0/Get-MgUserPresence.md | 25 +- .../v1.0/Invoke-MgAnswerCommunicationCall.md | 61 +++- ...ke-MgInviteCommunicationCallParticipant.md | 183 ++++++++++-- .../Invoke-MgKeepCommunicationCallAlive.md | 19 +- ...nicationCallTeleconferenceDeviceQuality.md | 103 ++++++- .../v1.0/Invoke-MgMuteCommunicationCall.md | 22 +- ...voke-MgMuteCommunicationCallParticipant.md | 22 +- .../Invoke-MgPlayCommunicationCallPrompt.md | 32 +- ...nvoke-MgRecordCommunicationCallResponse.md | 37 ++- .../Invoke-MgRedirectCommunicationCall.md | 55 +++- .../v1.0/Invoke-MgRejectCommunicationCall.md | 30 +- ...voke-MgSubscribeCommunicationCallToTone.md | 22 +- .../v1.0/Invoke-MgUnmuteCommunicationCall.md | 22 +- .../examples/v1.0/Move-MgCommunicationCall.md | 120 ++++++-- .../examples/v1.0/New-MgCommunicationCall.md | 175 +++++++++-- .../examples/v1.0/New-MgUserOnlineMeeting.md | 25 +- .../v1.0/Remove-MgCommunicationCall.md | 19 +- .../Remove-MgCommunicationCallParticipant.md | 29 +- .../v1.0/Remove-MgUserOnlineMeeting.md | 20 +- ...me-MgCommunicationCallScreenSharingRole.md | 22 +- ...MgCommunicationCallParticipantHoldMusic.md | 29 +- ...Stop-MgCommunicationCallMediaProcessing.md | 22 +- ...MgCommunicationCallParticipantHoldMusic.md | 22 +- ...date-MgCommunicationCallRecordingStatus.md | 23 +- .../v1.0/Update-MgUserOnlineMeeting.md | 36 ++- .../examples/v1.0/Remove-MgUserActivity.md | 20 +- ...MgRoleManagementDirectoryRoleAssignment.md | 43 +-- ...nagementDirectoryRoleAssignmentSchedule.md | 29 +- ...DirectoryRoleAssignmentScheduleInstance.md | 29 +- ...tDirectoryRoleAssignmentScheduleRequest.md | 43 +-- ...MgRoleManagementDirectoryRoleDefinition.md | 38 +-- ...agementDirectoryRoleEligibilitySchedule.md | 29 +- ...irectoryRoleEligibilityScheduleInstance.md | 29 +- ...DirectoryRoleEligibilityScheduleRequest.md | 29 +- ...mentEntitlementManagementRoleAssignment.md | 19 +- ...mentEntitlementManagementRoleDefinition.md | 19 +- ...MgRoleManagementDirectoryRoleAssignment.md | 47 ++- ...tDirectoryRoleAssignmentScheduleRequest.md | 55 +++- ...MgRoleManagementDirectoryRoleDefinition.md | 31 +- ...DirectoryRoleEligibilityScheduleRequest.md | 44 ++- ...mentEntitlementManagementRoleAssignment.md | 24 +- ...MgRoleManagementDirectoryRoleAssignment.md | 19 +- ...MgRoleManagementDirectoryRoleDefinition.md | 19 +- ...tDirectoryRoleAssignmentScheduleRequest.md | 19 +- ...DirectoryRoleEligibilityScheduleRequest.md | 19 +- ...MgRoleManagementDirectoryRoleDefinition.md | 30 +- .../examples/v1.0/Get-MgPrintConnector.md | 24 +- .../examples/v1.0/Get-MgPrintOperation.md | 19 +- .../examples/v1.0/Get-MgPrintPrinter.md | 29 +- .../v1.0/Get-MgPrintPrinterConnector.md | 19 +- .../v1.0/Get-MgPrintPrinterTaskTrigger.md | 24 +- .../examples/v1.0/Get-MgPrintService.md | 24 +- .../v1.0/Get-MgPrintServiceEndpoint.md | 24 +- .../examples/v1.0/Get-MgPrintShare.md | 29 +- .../v1.0/Get-MgPrintShareAllowedGroup.md | 19 +- .../v1.0/Get-MgPrintShareAllowedUser.md | 19 +- .../v1.0/Get-MgPrintTaskDefinition.md | 24 +- .../v1.0/Get-MgPrintTaskDefinitionTask.md | 24 +- .../v1.0/New-MgPrintPrinterTaskTrigger.md | 23 +- .../examples/v1.0/New-MgPrintShare.md | 24 +- .../v1.0/New-MgPrintShareAllowedGroupByRef.md | 22 +- .../v1.0/New-MgPrintShareAllowedUserByRef.md | 22 +- .../v1.0/New-MgPrintTaskDefinition.md | 25 +- .../examples/v1.0/Remove-MgPrintConnector.md | 19 +- .../examples/v1.0/Remove-MgPrintPrinter.md | 19 +- .../v1.0/Remove-MgPrintPrinterTaskTrigger.md | 19 +- .../examples/v1.0/Remove-MgPrintShare.md | 19 +- .../Remove-MgPrintShareAllowedGroupByRef.md | 19 +- .../Remove-MgPrintShareAllowedUserByRef.md | 19 +- .../v1.0/Remove-MgPrintTaskDefinition.md | 19 +- .../Restore-MgPrintPrinterFactoryDefault.md | 19 +- .../examples/v1.0/Update-MgPrintConnector.md | 30 +- .../examples/v1.0/Update-MgPrintPrinter.md | 27 +- .../examples/v1.0/Update-MgPrintShare.md | 24 +- .../v1.0/Update-MgPrintTaskDefinition.md | 25 +- .../v1.0/Update-MgPrintTaskDefinitionTask.md | 25 +- ...Get-MgServiceAnnouncementHealthOverview.md | 38 +-- .../v1.0/Get-MgServiceAnnouncementIssue.md | 24 +- .../v1.0/Get-MgServiceAnnouncementMessage.md | 24 +- ...-MgServiceAnnouncementMessageAttachment.md | 24 +- ...iceAnnouncementMessageAttachmentArchive.md | 24 +- ...iceAnnouncementMessageAttachmentContent.md | 24 +- ...oke-MgArchiveServiceAnnouncementMessage.md | 25 +- ...ke-MgFavoriteServiceAnnouncementMessage.md | 25 +- ...ke-MgMarkServiceAnnouncementMessageRead.md | 25 +- ...-MgMarkServiceAnnouncementMessageUnread.md | 25 +- ...gReportServiceAnnouncementIssueIncident.md | 19 +- ...e-MgUnarchiveServiceAnnouncementMessage.md | 25 +- ...-MgUnfavoriteServiceAnnouncementMessage.md | 25 +- .../Confirm-MgDirectoryObjectMemberGroup.md | 28 +- .../examples/v1.0/Get-MgDirectoryObject.md | 19 +- ...rectoryObjectAvailableExtensionProperty.md | 19 +- .../v1.0/Get-MgDirectoryObjectById.md | 32 +- .../v1.0/Get-MgDirectoryObjectMemberGroup.md | 22 +- .../v1.0/Get-MgDirectoryObjectMemberObject.md | 22 +- .../examples/v1.0/Remove-MgDirectoryObject.md | 19 +- .../v1.0/Test-MgDirectoryObjectProperty.md | 25 +- .../examples/v1.0/Get-MgEducationClass.md | 24 +- .../v1.0/Get-MgEducationClassAssignment.md | 29 +- .../Get-MgEducationClassAssignmentCategory.md | 24 +- ...MgEducationClassAssignmentCategoryDelta.md | 38 +-- .../Get-MgEducationClassAssignmentDefault.md | 19 +- .../Get-MgEducationClassAssignmentDelta.md | 29 +- .../Get-MgEducationClassAssignmentResource.md | 53 ++-- .../Get-MgEducationClassAssignmentRubric.md | 19 +- .../Get-MgEducationClassAssignmentSetting.md | 19 +- ...et-MgEducationClassAssignmentSubmission.md | 38 +-- ...ucationClassAssignmentSubmissionOutcome.md | 19 +- ...cationClassAssignmentSubmissionResource.md | 53 ++-- ...ssAssignmentSubmissionSubmittedResource.md | 19 +- .../v1.0/Get-MgEducationClassDelta.md | 19 +- .../v1.0/Get-MgEducationClassMember.md | 19 +- .../v1.0/Get-MgEducationClassSchool.md | 19 +- .../v1.0/Get-MgEducationClassTeacher.md | 19 +- .../v1.0/Get-MgEducationMeAssignment.md | 19 +- .../examples/v1.0/Get-MgEducationMeClass.md | 19 +- .../examples/v1.0/Get-MgEducationMeRubric.md | 24 +- .../examples/v1.0/Get-MgEducationMeSchool.md | 19 +- .../examples/v1.0/Get-MgEducationSchool.md | 24 +- .../v1.0/Get-MgEducationSchoolClass.md | 19 +- .../v1.0/Get-MgEducationSchoolDelta.md | 19 +- .../v1.0/Get-MgEducationSchoolUser.md | 19 +- .../examples/v1.0/Get-MgEducationUser.md | 24 +- .../v1.0/Get-MgEducationUserAssignment.md | 24 +- .../examples/v1.0/Get-MgEducationUserDelta.md | 19 +- .../v1.0/Get-MgEducationUserTaughtClass.md | 24 +- ...ssignEducationClassAssignmentSubmission.md | 24 +- ...eturnEducationClassAssignmentSubmission.md | 19 +- ...ubmitEducationClassAssignmentSubmission.md | 19 +- .../examples/v1.0/New-MgEducationClass.md | 37 ++- .../v1.0/New-MgEducationClassAssignment.md | 36 ++- .../New-MgEducationClassAssignmentCategory.md | 22 +- ...MgEducationClassAssignmentCategoryByRef.md | 30 +- .../New-MgEducationClassAssignmentResource.md | 96 ++++-- ...cationClassAssignmentSubmissionResource.md | 90 ++++-- .../v1.0/New-MgEducationClassMemberByRef.md | 22 +- .../v1.0/New-MgEducationClassTeacherByRef.md | 22 +- .../examples/v1.0/New-MgEducationMeRubric.md | 167 ++++++++++- .../examples/v1.0/New-MgEducationSchool.md | 41 ++- .../v1.0/New-MgEducationSchoolClassByRef.md | 22 +- .../v1.0/New-MgEducationSchoolUserByRef.md | 22 +- .../examples/v1.0/New-MgEducationUser.md | 81 ++++- .../Publish-MgEducationClassAssignment.md | 19 +- .../examples/v1.0/Remove-MgEducationClass.md | 19 +- .../v1.0/Remove-MgEducationClassAssignment.md | 19 +- ...move-MgEducationClassAssignmentCategory.md | 19 +- ...MgEducationClassAssignmentCategoryByRef.md | 19 +- ...move-MgEducationClassAssignmentResource.md | 19 +- ...e-MgEducationClassAssignmentRubricByRef.md | 19 +- ...cationClassAssignmentSubmissionResource.md | 19 +- .../v1.0/Remove-MgEducationMeRubric.md | 19 +- .../examples/v1.0/Remove-MgEducationSchool.md | 19 +- .../examples/v1.0/Remove-MgEducationUser.md | 19 +- ...t-MgEducationClassAssignmentRubricByRef.md | 22 +- ...it-MgEducationClassAssignmentSubmission.md | 19 +- .../examples/v1.0/Update-MgEducationClass.md | 23 +- .../v1.0/Update-MgEducationClassAssignment.md | 28 +- ...pdate-MgEducationClassAssignmentDefault.md | 23 +- ...pdate-MgEducationClassAssignmentSetting.md | 22 +- ...ucationClassAssignmentSubmissionOutcome.md | 46 ++- .../v1.0/Update-MgEducationMeRubric.md | 22 +- .../examples/v1.0/Update-MgEducationSchool.md | 23 +- .../examples/v1.0/Update-MgEducationUser.md | 25 +- src/Files/Files/examples/v1.0/Get-MgDrive.md | 19 +- .../examples/v1.0/Get-MgDriveItemChild.md | 19 +- .../examples/v1.0/Get-MgGroupDefaultDrive.md | 19 +- .../Files/examples/v1.0/Get-MgGroupDrive.md | 19 +- .../examples/v1.0/Get-MgShareDriveItem.md | 24 +- ...t-MgShareSharedDriveItemSharedDriveItem.md | 19 +- .../examples/v1.0/Get-MgUserDefaultDrive.md | 25 +- .../Files/examples/v1.0/Get-MgUserDrive.md | 25 +- .../examples/v1.0/Grant-MgSharePermission.md | 32 +- .../v1.0/Invoke-MgCheckinDriveItem.md | 22 +- .../v1.0/Invoke-MgCheckoutDriveItem.md | 19 +- .../v1.0/Restore-MgDriveItemVersion.md | 19 +- .../examples/v1.0/Add-MgGroupFavorite.md | 19 +- .../v1.0/Get-MgGroupAcceptedSender.md | 19 +- .../examples/v1.0/Get-MgGroupConversation.md | 29 +- .../v1.0/Get-MgGroupConversationThread.md | 19 +- .../Groups/examples/v1.0/Get-MgGroupDelta.md | 19 +- .../v1.0/Get-MgGroupLifecyclePolicy.md | 24 +- .../v1.0/Get-MgGroupLifecyclePolicyByGroup.md | 19 +- .../examples/v1.0/Get-MgGroupMemberOf.md | 19 +- .../v1.0/Get-MgGroupPermissionGrant.md | 19 +- .../Groups/examples/v1.0/Get-MgGroupPhoto.md | 19 +- .../v1.0/Get-MgGroupRejectedSender.md | 19 +- .../Groups/examples/v1.0/Get-MgGroupThread.md | 29 +- .../examples/v1.0/Get-MgGroupThreadPost.md | 19 +- .../v1.0/Get-MgGroupThreadPostAttachment.md | 19 +- .../v1.0/Get-MgGroupThreadPostExtension.md | 19 +- .../v1.0/Get-MgGroupTransitiveMember.md | 19 +- .../v1.0/Get-MgGroupTransitiveMemberOf.md | 19 +- .../v1.0/Invoke-MgForwardGroupThreadPost.md | 30 +- .../examples/v1.0/Invoke-MgGraphGroup.md | 19 +- .../examples/v1.0/Invoke-MgRenewGroup.md | 19 +- .../v1.0/Invoke-MgReplyGroupThread.md | 97 ++++-- .../v1.0/Invoke-MgReplyGroupThreadPost.md | 71 ++++- .../v1.0/Invoke-MgSubscribeGroupByMail.md | 19 +- .../v1.0/New-MgGroupAcceptedSenderByRef.md | 22 +- .../examples/v1.0/New-MgGroupConversation.md | 42 ++- .../v1.0/New-MgGroupConversationThread.md | 30 +- .../v1.0/New-MgGroupLifecyclePolicy.md | 24 +- .../examples/v1.0/New-MgGroupMemberByRef.md | 22 +- .../v1.0/New-MgGroupRejectedSenderByRef.md | 22 +- .../Groups/examples/v1.0/New-MgGroupThread.md | 38 ++- .../v1.0/Remove-MgGroupConversation.md | 24 +- .../examples/v1.0/Remove-MgGroupFavorite.md | 19 +- .../v1.0/Remove-MgGroupLifecyclePolicy.md | 19 +- .../v1.0/Remove-MgGroupMemberByRef.md | 19 +- .../examples/v1.0/Remove-MgGroupOwnerByRef.md | 19 +- .../examples/v1.0/Remove-MgGroupThread.md | 24 +- .../examples/v1.0/Reset-MgGroupUnseenCount.md | 19 +- .../examples/v1.0/Set-MgGroupLicense.md | 51 +++- .../examples/v1.0/Test-MgGroupProperty.md | 24 +- .../v1.0/Update-MgGroupLifecyclePolicy.md | 24 +- .../examples/v1.0/Update-MgGroupThread.md | 26 +- .../v1.0/Update-MgGroupThreadPostExtension.md | 31 +- .../examples/v1.0/Confirm-MgDomain.md | 19 +- .../examples/v1.0/Get-MgContactDelta.md | 19 +- .../v1.0/Get-MgContactDirectReport.md | 19 +- .../examples/v1.0/Get-MgContactManager.md | 19 +- .../examples/v1.0/Get-MgContactMemberOf.md | 19 +- .../v1.0/Get-MgContactTransitiveMemberOf.md | 19 +- .../examples/v1.0/Get-MgContract.md | 24 +- .../examples/v1.0/Get-MgDevice.md | 53 ++-- .../examples/v1.0/Get-MgDeviceMemberOf.md | 19 +- .../v1.0/Get-MgDeviceRegisteredOwner.md | 19 +- .../v1.0/Get-MgDeviceRegisteredUser.md | 19 +- .../v1.0/Get-MgDeviceTransitiveMemberOf.md | 19 +- .../v1.0/Get-MgDirectoryAdministrativeUnit.md | 24 +- ...Get-MgDirectoryAdministrativeUnitMember.md | 19 +- ...gDirectoryAdministrativeUnitMemberByRef.md | 19 +- ...ctoryAdministrativeUnitScopedRoleMember.md | 24 +- .../Get-MgDirectoryFederationConfiguration.md | 24 +- .../examples/v1.0/Get-MgDirectoryRoleDelta.md | 19 +- .../v1.0/Get-MgDirectoryRoleScopedMember.md | 19 +- .../v1.0/Get-MgDirectoryRoleTemplate.md | 24 +- .../v1.0/Get-MgDomainNameReference.md | 19 +- .../Get-MgDomainServiceConfigurationRecord.md | 19 +- .../v1.0/Get-MgDomainVerificationDnsRecord.md | 19 +- .../examples/v1.0/Get-MgOrganization.md | 24 +- .../v1.0/Get-MgOrganizationBranding.md | 29 +- .../Get-MgOrganizationBrandingLocalization.md | 24 +- ...anizationBrandingLocalizationBannerLogo.md | 29 +- .../v1.0/Invoke-MgForceDomainDelete.md | 22 +- .../examples/v1.0/New-MgDevice.md | 32 +- .../v1.0/New-MgDeviceRegisteredOwnerByRef.md | 22 +- .../v1.0/New-MgDeviceRegisteredUserByRef.md | 8 + .../v1.0/New-MgDirectoryAdministrativeUnit.md | 24 +- ...gDirectoryAdministrativeUnitMemberByRef.md | 22 +- ...ctoryAdministrativeUnitScopedRoleMember.md | 25 +- .../New-MgDirectoryFederationConfiguration.md | 34 ++- .../examples/v1.0/New-MgDirectoryRole.md | 22 +- .../examples/v1.0/New-MgDomain.md | 22 +- .../New-MgOrganizationBrandingLocalization.md | 24 +- .../examples/v1.0/Remove-MgDevice.md | 19 +- .../Remove-MgDeviceRegisteredOwnerByRef.md | 19 +- .../Remove-MgDirectoryAdministrativeUnit.md | 19 +- ...gDirectoryAdministrativeUnitMemberByRef.md | 19 +- ...ctoryAdministrativeUnitScopedRoleMember.md | 19 +- .../v1.0/Remove-MgDirectoryDeletedItem.md | 19 +- ...move-MgDirectoryFederationConfiguration.md | 19 +- .../v1.0/Remove-MgDirectoryRoleMemberByRef.md | 19 +- .../examples/v1.0/Remove-MgDomain.md | 19 +- ...move-MgOrganizationBrandingLocalization.md | 19 +- .../v1.0/Restore-MgDirectoryDeletedItem.md | 19 +- .../examples/v1.0/Update-MgDevice.md | 29 +- .../Update-MgDirectoryAdministrativeUnit.md | 22 +- .../examples/v1.0/Update-MgDomain.md | 26 +- .../examples/v1.0/Update-MgOrganization.md | 37 ++- .../v1.0/Update-MgOrganizationBranding.md | 23 +- ...date-MgOrganizationBrandingLocalization.md | 32 +- ...eAccessReviewDefinitionInstanceDecision.md | 19 +- ...et-MgEntitlementManagementAccessPackage.md | 29 +- ...ccessPackageApplicablePolicyRequirement.md | 19 +- ...entAccessPackageAssignmentApprovalStage.md | 24 +- .../Get-MgEntitlementManagementAssignment.md | 29 +- ...MgEntitlementManagementAssignmentPolicy.md | 24 +- ...gEntitlementManagementAssignmentRequest.md | 29 +- .../Get-MgEntitlementManagementCatalog.md | 24 +- ...itlementManagementConnectedOrganization.md | 24 +- .../Get-MgEntitlementManagementSetting.md | 19 +- ...dentityGovernanceAccessReviewDefinition.md | 38 +-- ...overnanceAccessReviewDefinitionInstance.md | 29 +- ...viewDefinitionInstanceContactedReviewer.md | 19 +- ...eAccessReviewDefinitionInstanceDecision.md | 29 +- ...anceAccessReviewDefinitionInstanceStage.md | 29 +- ...ssReviewDefinitionInstanceStageDecision.md | 29 +- ...GovernanceAccessReviewHistoryDefinition.md | 24 +- ...ceAccessReviewHistoryDefinitionInstance.md | 19 +- ...t-MgIdentityGovernanceAppConsentRequest.md | 38 +-- ...anceAppConsentRequestUserConsentRequest.md | 29 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 38 +-- ...dentityGovernanceTermOfUseAgreementFile.md | 19 +- .../v1.0/Get-MgUserAgreementAcceptance.md | 20 +- ...sReviewDefinitionInstanceRecommendation.md | 19 +- ...sReviewDefinitionInstanceRecordDecision.md | 24 +- ...ew-MgEntitlementManagementAccessPackage.md | 27 +- ...MgEntitlementManagementAssignmentPolicy.md | 169 ++++++++++- ...gEntitlementManagementAssignmentRequest.md | 77 +++-- .../New-MgEntitlementManagementCatalog.md | 25 +- ...itlementManagementConnectedOrganization.md | 31 +- ...nnectedOrganizationExternalSponsorByRef.md | 22 +- ...nnectedOrganizationInternalSponsorByRef.md | 22 +- ...dentityGovernanceAccessReviewDefinition.md | 247 ++++++++++++++-- ...GovernanceAccessReviewHistoryDefinition.md | 57 +++- ...iewHistoryDefinitionInstanceDownloadUri.md | 19 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 33 ++- ...ve-MgEntitlementManagementAccessPackage.md | 19 +- ...MgEntitlementManagementAssignmentPolicy.md | 19 +- ...gEntitlementManagementAssignmentRequest.md | 19 +- .../Remove-MgEntitlementManagementCatalog.md | 19 +- ...itlementManagementConnectedOrganization.md | 19 +- ...nnectedOrganizationExternalSponsorByRef.md | 19 +- ...nnectedOrganizationInternalSponsorByRef.md | 19 +- ...dentityGovernanceAccessReviewDefinition.md | 19 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 19 +- ...eAccessReviewDefinitionInstanceDecision.md | 19 +- ...eAccessReviewDefinitionInstanceReminder.md | 19 +- ...gEntitlementManagementAssignmentRequest.md | 19 +- ...overnanceAccessReviewDefinitionInstance.md | 19 +- ...anceAccessReviewDefinitionInstanceStage.md | 19 +- ...te-MgEntitlementManagementAccessPackage.md | 22 +- .../Update-MgEntitlementManagementCatalog.md | 22 +- ...itlementManagementConnectedOrganization.md | 24 +- .../Update-MgEntitlementManagementSetting.md | 22 +- ...overnanceAccessReviewDefinitionInstance.md | 59 +++- ...anceAccessReviewDefinitionInstanceStage.md | 38 ++- ...ssReviewDefinitionInstanceStageDecision.md | 41 ++- ...-MgIdentityGovernanceTermOfUseAgreement.md | 23 +- .../v1.0/Confirm-MgRiskyUserCompromised.md | 25 +- .../v1.0/Get-MgDataPolicyOperation.md | 19 +- .../v1.0/Get-MgIdentityApiConnector.md | 24 +- .../v1.0/Get-MgIdentityB2XUserFlow.md | 29 +- ...t-MgIdentityB2XUserFlowIdentityProvider.md | 19 +- .../v1.0/Get-MgIdentityB2XUserFlowLanguage.md | 24 +- ...tyB2XUserFlowLanguageDefaultPageContent.md | 19 +- ...IdentityB2XUserFlowLanguageOverridePage.md | 19 +- ...ntityB2XUserFlowUserAttributeAssignment.md | 38 +-- ...B2XUserFlowUserAttributeAssignmentOrder.md | 19 +- .../examples/v1.0/Get-MgIdentityProvider.md | 58 ++-- .../v1.0/Get-MgIdentityUserFlowAttribute.md | 24 +- ...formationProtectionBitlockerRecoveryKey.md | 38 +-- ...mationProtectionThreatAssessmentRequest.md | 48 +-- .../v1.0/Get-MgOauth2PermissionGrant.md | 24 +- .../v1.0/Get-MgOauth2PermissionGrantDelta.md | 19 +- ...zationCertificateBasedAuthConfiguration.md | 24 +- .../Get-MgPolicyActivityBasedTimeoutPolicy.md | 24 +- .../Get-MgPolicyAdminConsentRequestPolicy.md | 19 +- .../Get-MgPolicyAuthenticationFlowPolicy.md | 19 +- .../Get-MgPolicyAuthenticationMethodPolicy.md | 19 +- ...PolicyAuthenticationMethodConfiguration.md | 38 +-- .../v1.0/Get-MgPolicyClaimMappingPolicy.md | 24 +- .../Get-MgPolicyCrossTenantAccessPolicy.md | 19 +- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 19 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 24 +- .../v1.0/Get-MgPolicyFeatureRolloutPolicy.md | 29 +- .../Get-MgPolicyHomeRealmDiscoveryPolicy.md | 24 +- ...dentitySecurityDefaultEnforcementPolicy.md | 19 +- .../v1.0/Get-MgPolicyPermissionGrantPolicy.md | 24 +- ...et-MgPolicyPermissionGrantPolicyExclude.md | 19 +- ...et-MgPolicyPermissionGrantPolicyInclude.md | 19 +- .../v1.0/Get-MgPolicyRoleManagementPolicy.md | 38 +-- ...-MgPolicyRoleManagementPolicyAssignment.md | 38 +-- .../Get-MgPolicyRoleManagementPolicyRule.md | 24 +- .../v1.0/Get-MgPolicyTokenIssuancePolicy.md | 24 +- .../v1.0/Get-MgPolicyTokenLifetimePolicy.md | 24 +- .../examples/v1.0/Get-MgRiskDetection.md | 24 +- .../examples/v1.0/Get-MgRiskyUser.md | 24 +- .../examples/v1.0/Get-MgRiskyUserHistory.md | 24 +- .../Get-MgUserAuthenticationEmailMethod.md | 26 +- .../Get-MgUserAuthenticationFido2Method.md | 20 +- ...henticationMicrosoftAuthenticatorMethod.md | 19 +- .../v1.0/Get-MgUserAuthenticationOperation.md | 19 +- .../Get-MgUserAuthenticationPasswordMethod.md | 26 +- .../Get-MgUserAuthenticationPhoneMethod.md | 26 +- ...-MgUserAuthenticationSoftwareOathMethod.md | 26 +- ...AuthenticationTemporaryAccessPassMethod.md | 24 +- ...henticationWindowHelloForBusinessMethod.md | 24 +- .../Invoke-MgAvailableIdentityProviderType.md | 29 +- .../v1.0/Invoke-MgDismissRiskyUser.md | 25 +- ...adIdentityApiConnectorClientCertificate.md | 23 +- .../v1.0/New-MgIdentityApiConnector.md | 56 +++- .../v1.0/New-MgIdentityB2XUserFlow.md | 59 +++- ...ntityB2XUserFlowUserAttributeAssignment.md | 30 +- .../examples/v1.0/New-MgIdentityProvider.md | 39 ++- .../v1.0/New-MgIdentityUserFlowAttribute.md | 24 +- ...mationProtectionThreatAssessmentRequest.md | 65 ++-- .../v1.0/New-MgOauth2PermissionGrant.md | 25 +- .../New-MgPolicyActivityBasedTimeoutPolicy.md | 26 +- .../v1.0/New-MgPolicyClaimMappingPolicy.md | 25 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 44 ++- .../v1.0/New-MgPolicyFeatureRolloutPolicy.md | 26 +- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 22 +- .../New-MgPolicyHomeRealmDiscoveryPolicy.md | 26 +- .../v1.0/New-MgPolicyPermissionGrantPolicy.md | 24 +- ...ew-MgPolicyPermissionGrantPolicyExclude.md | 23 +- ...ew-MgPolicyPermissionGrantPolicyInclude.md | 23 +- .../v1.0/New-MgPolicyTokenIssuancePolicy.md | 26 +- .../v1.0/New-MgPolicyTokenLifetimePolicy.md | 26 +- .../New-MgUserAuthenticationEmailMethod.md | 22 +- .../New-MgUserAuthenticationPhoneMethod.md | 24 +- ...AuthenticationTemporaryAccessPassMethod.md | 24 +- .../v1.0/Remove-MgIdentityApiConnector.md | 19 +- .../v1.0/Remove-MgIdentityB2XUserFlow.md | 19 +- ...ntityB2XUserFlowUserAttributeAssignment.md | 19 +- .../v1.0/Remove-MgIdentityProvider.md | 24 +- .../Remove-MgIdentityUserFlowAttribute.md | 19 +- .../v1.0/Remove-MgOauth2PermissionGrant.md | 19 +- ...move-MgPolicyActivityBasedTimeoutPolicy.md | 19 +- ...PolicyAuthenticationMethodConfiguration.md | 38 +-- .../v1.0/Remove-MgPolicyClaimMappingPolicy.md | 19 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 19 +- .../Remove-MgPolicyFeatureRolloutPolicy.md | 19 +- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 19 +- ...Remove-MgPolicyHomeRealmDiscoveryPolicy.md | 19 +- .../Remove-MgPolicyPermissionGrantPolicy.md | 19 +- ...ve-MgPolicyPermissionGrantPolicyExclude.md | 19 +- ...ve-MgPolicyPermissionGrantPolicyInclude.md | 19 +- .../Remove-MgPolicyTokenIssuancePolicy.md | 19 +- .../Remove-MgPolicyTokenLifetimePolicy.md | 19 +- .../Remove-MgUserAuthenticationEmailMethod.md | 19 +- .../Remove-MgUserAuthenticationFido2Method.md | 19 +- ...henticationMicrosoftAuthenticatorMethod.md | 19 +- .../Remove-MgUserAuthenticationPhoneMethod.md | 20 +- ...-MgUserAuthenticationSoftwareOathMethod.md | 19 +- ...AuthenticationTemporaryAccessPassMethod.md | 19 +- ...henticationWindowHelloForBusinessMethod.md | 19 +- ...enantAccessPolicyDefaultToSystemDefault.md | 19 +- ...yB2XUserFlowLanguageOverridePageContent.md | 23 +- ...B2XUserFlowUserAttributeAssignmentOrder.md | 27 +- .../v1.0/Update-MgIdentityApiConnector.md | 52 +++- ...ntityB2XUserFlowUserAttributeAssignment.md | 22 +- .../v1.0/Update-MgIdentityProvider.md | 40 ++- .../Update-MgIdentityUserFlowAttribute.md | 22 +- .../v1.0/Update-MgOauth2PermissionGrant.md | 22 +- ...date-MgPolicyActivityBasedTimeoutPolicy.md | 26 +- ...Update-MgPolicyAuthenticationFlowPolicy.md | 24 +- ...date-MgPolicyAuthenticationMethodPolicy.md | 46 ++- ...PolicyAuthenticationMethodConfiguration.md | 55 ++-- .../v1.0/Update-MgPolicyClaimMappingPolicy.md | 22 +- .../Update-MgPolicyCrossTenantAccessPolicy.md | 22 +- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 41 ++- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 26 +- .../Update-MgPolicyFeatureRolloutPolicy.md | 25 +- ...Update-MgPolicyHomeRealmDiscoveryPolicy.md | 26 +- ...dentitySecurityDefaultEnforcementPolicy.md | 22 +- .../Update-MgPolicyPermissionGrantPolicy.md | 22 +- ...Update-MgPolicyRoleManagementPolicyRule.md | 37 ++- .../Update-MgPolicyTokenIssuancePolicy.md | 26 +- .../Update-MgPolicyTokenLifetimePolicy.md | 26 +- .../Update-MgUserAuthenticationEmailMethod.md | 22 +- .../Update-MgUserAuthenticationPhoneMethod.md | 24 +- ...t-MgUserInferenceClassificationOverride.md | 20 +- .../examples/v1.0/Get-MgUserMailFolder.md | 32 +- .../v1.0/Get-MgUserMailFolderChildFolder.md | 20 +- .../v1.0/Get-MgUserMailFolderMessage.md | 20 +- .../v1.0/Get-MgUserMailFolderMessageRule.md | 26 +- .../Mail/examples/v1.0/Get-MgUserMessage.md | 48 +-- .../v1.0/Get-MgUserMessageAttachment.md | 60 ++-- .../v1.0/Get-MgUserMessageExtension.md | 20 +- ...w-MgUserInferenceClassificationOverride.md | 27 +- .../examples/v1.0/New-MgUserMailFolder.md | 24 +- .../v1.0/New-MgUserMailFolderChildFolder.md | 39 ++- .../v1.0/New-MgUserMailFolderMessage.md | 31 +- .../v1.0/New-MgUserMailFolderMessageRule.md | 41 ++- .../Mail/examples/v1.0/New-MgUserMessage.md | 65 +++- .../v1.0/New-MgUserMessageAttachment.md | 39 ++- ...e-MgUserInferenceClassificationOverride.md | 20 +- .../examples/v1.0/Remove-MgUserMailFolder.md | 20 +- .../Remove-MgUserMailFolderMessageRule.md | 20 +- .../examples/v1.0/Remove-MgUserMessage.md | 26 +- .../v1.0/Remove-MgUserMessageExtension.md | 20 +- ...e-MgUserInferenceClassificationOverride.md | 23 +- .../examples/v1.0/Update-MgUserMailFolder.md | 33 ++- .../Update-MgUserMailFolderMessageRule.md | 26 +- .../examples/v1.0/Update-MgUserMessage.md | 37 ++- .../v1.0/Get-MgUserOnenoteNotebook.md | 32 +- .../v1.0/Get-MgUserOnenoteNotebookSection.md | 20 +- .../Get-MgUserOnenoteNotebookSectionGroup.md | 20 +- .../v1.0/Get-MgUserOnenoteOperation.md | 20 +- .../examples/v1.0/Get-MgUserOnenoteSection.md | 26 +- .../v1.0/Get-MgUserOnenoteSectionGroup.md | 20 +- .../Get-MgUserOnenoteSectionGroupSection.md | 20 +- .../v1.0/New-MgUserOnenoteNotebook.md | 23 +- .../v1.0/New-MgUserOnenoteNotebookSection.md | 23 +- .../New-MgUserOnenoteNotebookSectionGroup.md | 23 +- .../New-MgUserOnenoteSectionGroupSection.md | 23 +- .../examples/v1.0/Remove-MgUserOnenotePage.md | 20 +- .../People/examples/v1.0/Get-MgUserPerson.md | 20 +- .../examples/v1.0/Get-MgUserUsedInsight.md | 26 +- .../examples/v1.0/Get-MgUserContact.md | 26 +- .../examples/v1.0/Get-MgUserContactFolder.md | 26 +- .../Get-MgUserContactFolderChildFolder.md | 20 +- .../v1.0/Get-MgUserContactFolderContact.md | 20 +- .../examples/v1.0/New-MgUserContact.md | 33 ++- .../examples/v1.0/New-MgUserContactFolder.md | 24 +- .../New-MgUserContactFolderChildFolder.md | 23 +- .../v1.0/New-MgUserContactFolderContact.md | 28 +- .../examples/v1.0/Remove-MgUserContact.md | 20 +- .../v1.0/Remove-MgUserContactFolder.md | 20 +- .../examples/v1.0/Update-MgUserContact.md | 29 +- .../v1.0/Update-MgUserContactFolder.md | 24 +- .../examples/v1.0/Get-MgGroupPlannerPlan.md | 19 +- .../Planner/examples/v1.0/Get-MgPlanner.md | 19 +- .../examples/v1.0/Get-MgPlannerBucket.md | 24 +- .../examples/v1.0/Get-MgPlannerBucketTask.md | 19 +- .../examples/v1.0/Get-MgPlannerPlan.md | 24 +- .../examples/v1.0/Get-MgPlannerPlanBucket.md | 19 +- .../examples/v1.0/Get-MgPlannerPlanDetail.md | 19 +- .../examples/v1.0/Get-MgPlannerPlanTask.md | 19 +- .../examples/v1.0/Get-MgPlannerTask.md | 24 +- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 19 +- .../Get-MgPlannerTaskBucketTaskBoardFormat.md | 19 +- .../examples/v1.0/Get-MgPlannerTaskDetail.md | 19 +- ...et-MgPlannerTaskProgressTaskBoardFormat.md | 19 +- .../examples/v1.0/Get-MgUserPlannerPlan.md | 20 +- .../examples/v1.0/Get-MgUserPlannerTask.md | 20 +- .../examples/v1.0/New-MgPlannerBucket.md | 24 +- .../examples/v1.0/New-MgPlannerPlan.md | 23 +- .../examples/v1.0/New-MgPlannerTask.md | 30 +- .../examples/v1.0/Remove-MgPlannerBucket.md | 19 +- .../examples/v1.0/Remove-MgPlannerPlan.md | 19 +- .../examples/v1.0/Remove-MgPlannerTask.md | 19 +- .../examples/v1.0/Update-MgPlannerBucket.md | 22 +- .../examples/v1.0/Update-MgPlannerPlan.md | 22 +- .../v1.0/Update-MgPlannerPlanDetail.md | 29 +- .../examples/v1.0/Update-MgPlannerTask.md | 31 +- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 24 +- ...date-MgPlannerTaskBucketTaskBoardFormat.md | 22 +- .../v1.0/Update-MgPlannerTaskDetail.md | 47 ++- ...te-MgPlannerTaskProgressTaskBoardFormat.md | 22 +- .../v1.0/Get-MgAuditLogDirectoryAudit.md | 24 +- .../v1.0/Get-MgAuditLogProvisioning.md | 24 +- .../examples/v1.0/Get-MgAuditLogSignIn.md | 29 +- .../Get-MgReportDailyPrintUsageByPrinter.md | 24 +- .../v1.0/Get-MgReportDailyPrintUsageByUser.md | 24 +- .../Get-MgReportMonthlyPrintUsageByPrinter.md | 19 +- .../Get-MgReportMonthlyPrintUsageByUser.md | 19 +- .../examples/v1.0/Get-MgSchemaExtension.md | 24 +- .../examples/v1.0/New-MgSchemaExtension.md | 93 +++++- .../examples/v1.0/Remove-MgSchemaExtension.md | 19 +- .../examples/v1.0/Update-MgSchemaExtension.md | 66 ++++- .../examples/v1.0/Get-MgExternalConnection.md | 24 +- .../v1.0/Get-MgExternalConnectionGroup.md | 19 +- .../v1.0/Get-MgExternalConnectionItem.md | 19 +- .../v1.0/Get-MgExternalConnectionOperation.md | 19 +- .../v1.0/Get-MgExternalConnectionSchema.md | 19 +- .../examples/v1.0/New-MgExternalConnection.md | 24 +- .../v1.0/New-MgExternalConnectionGroup.md | 24 +- .../New-MgExternalConnectionGroupMember.md | 41 ++- .../v1.0/Remove-MgExternalConnection.md | 19 +- .../v1.0/Remove-MgExternalConnectionGroup.md | 19 +- .../Remove-MgExternalConnectionGroupMember.md | 19 +- .../v1.0/Remove-MgExternalConnectionItem.md | 19 +- .../v1.0/Update-MgExternalConnection.md | 23 +- .../v1.0/Update-MgExternalConnectionGroup.md | 23 +- .../v1.0/Update-MgExternalConnectionItem.md | 28 +- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 24 +- ...discoveryCaseNoncustodialDataSourceHold.md | 24 +- ...rityCaseEdiscoveryCaseReviewSetQueryTag.md | 26 +- ...yCaseEdiscoveryCaseReviewSetToReviewSet.md | 25 +- .../Close-MgSecurityCaseEdiscoveryCase.md | 19 +- .../examples/v1.0/Get-MgSecurityAlert.md | 24 +- .../v1.0/Get-MgSecurityCaseEdiscoveryCase.md | 24 +- ...t-MgSecurityCaseEdiscoveryCaseCustodian.md | 24 +- ...iscoveryCaseCustodianLastIndexOperation.md | 19 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 19 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 19 +- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 19 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 29 +- ...t-MgSecurityCaseEdiscoveryCaseOperation.md | 24 +- ...t-MgSecurityCaseEdiscoveryCaseReviewSet.md | 24 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 24 +- .../Get-MgSecurityCaseEdiscoveryCaseSearch.md | 24 +- ...aseEdiscoveryCaseSearchAdditionalSource.md | 24 +- ...CaseEdiscoveryCaseSearchCustodianSource.md | 19 +- ...seSearchLastEstimateStatisticsOperation.md | 19 +- ...eEdiscoveryCaseSearchNoncustodialSource.md | 19 +- ...Get-MgSecurityCaseEdiscoveryCaseSetting.md | 19 +- .../Get-MgSecurityCaseEdiscoveryCaseTag.md | 24 +- .../v1.0/Get-MgSecuritySecureScore.md | 24 +- ...Get-MgSecuritySecureScoreControlProfile.md | 24 +- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 19 +- ...sSecurityCaseEdiscoveryCaseTagHierarchy.md | 19 +- ...urityCaseEdiscoveryCaseSearchStatistics.md | 19 +- ...voke-MgReopenSecurityCaseEdiscoveryCase.md | 19 +- .../v1.0/New-MgSecurityCaseEdiscoveryCase.md | 24 +- ...w-MgSecurityCaseEdiscoveryCaseCustodian.md | 22 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 24 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 43 ++- ...aseEdiscoveryCaseNoncustodialDataSource.md | 24 +- ...w-MgSecurityCaseEdiscoveryCaseReviewSet.md | 22 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 23 +- .../New-MgSecurityCaseEdiscoveryCaseSearch.md | 32 +- ...h-MgSecurityCaseEdiscoveryCaseCustodian.md | 19 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 19 +- .../Remove-MgSecurityCaseEdiscoveryCase.md | 19 +- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 19 +- ...discoveryCaseNoncustodialDataSourceHold.md | 24 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 19 +- ...move-MgSecurityCaseEdiscoveryCaseSearch.md | 19 +- .../Remove-MgSecurityCaseEdiscoveryCaseTag.md | 19 +- ...urityCaseEdiscoveryCaseSettingToDefault.md | 19 +- .../examples/v1.0/Update-MgSecurityAlert.md | 56 +++- .../Update-MgSecurityCaseEdiscoveryCase.md | 23 +- ...ecurityCaseEdiscoveryCaseCustodianIndex.md | 19 +- ...iscoveryCaseNoncustodialDataSourceIndex.md | 19 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 23 +- ...date-MgSecurityCaseEdiscoveryCaseSearch.md | 22 +- ...ate-MgSecurityCaseEdiscoveryCaseSetting.md | 31 +- ...ate-MgSecuritySecureScoreControlProfile.md | 46 ++- .../v1.0/Add-MgSiteListContentTypeCopy.md | 22 +- ...teListContentTypeCopyFromContentTypeHub.md | 38 ++- ...SiteContentTypeToDefaultContentLocation.md | 28 +- src/Sites/Sites/examples/v1.0/Get-MgSite.md | 29 +- .../Sites/examples/v1.0/Get-MgSiteColumn.md | 19 +- .../examples/v1.0/Get-MgSiteContentType.md | 29 +- .../v1.0/Get-MgSiteContentTypeColumn.md | 24 +- .../examples/v1.0/Get-MgSiteDefaultDrive.md | 19 +- .../Sites/examples/v1.0/Get-MgSiteDrive.md | 19 +- .../Sites/examples/v1.0/Get-MgSiteList.md | 48 +-- .../examples/v1.0/Get-MgSiteListColumn.md | 19 +- .../v1.0/Get-MgSiteListContentType.md | 19 +- ...ListContentTypeCompatibleHubContentType.md | 19 +- .../Sites/examples/v1.0/Get-MgSiteListItem.md | 19 +- .../Get-MgSiteListItemDocumentSetVersion.md | 24 +- .../v1.0/Get-MgSiteListItemVersion.md | 24 +- .../examples/v1.0/Get-MgSitePermission.md | 24 +- .../examples/v1.0/Get-MgSiteTermStore.md | 19 +- .../examples/v1.0/Get-MgSiteTermStoreGroup.md | 29 +- .../v1.0/Get-MgSiteTermStoreGroupSet.md | 19 +- .../v1.0/Get-MgSiteTermStoreGroupSetTerm.md | 19 +- .../examples/v1.0/Get-MgSiteTermStoreSet.md | 19 +- .../v1.0/Get-MgSiteTermStoreSetChild.md | 19 +- .../v1.0/Get-MgSiteTermStoreSetRelation.md | 19 +- .../Sites/examples/v1.0/Get-MgSubSite.md | 19 +- .../examples/v1.0/Get-MgUserFollowedSite.md | 20 +- .../v1.0/Join-MgSiteContentTypeWithHubSite.md | 25 +- .../Sites/examples/v1.0/New-MgSiteColumn.md | 32 +- .../examples/v1.0/New-MgSiteContentType.md | 28 +- .../v1.0/New-MgSiteContentTypeColumn.md | 22 +- .../Sites/examples/v1.0/New-MgSiteList.md | 37 ++- .../examples/v1.0/New-MgSiteListColumn.md | 32 +- .../Sites/examples/v1.0/New-MgSiteListItem.md | 26 +- .../New-MgSiteListItemDocumentSetVersion.md | 23 +- .../examples/v1.0/New-MgSitePermission.md | 32 +- .../examples/v1.0/New-MgSiteTermStoreGroup.md | 22 +- .../v1.0/New-MgSiteTermStoreSetChild.md | 28 +- .../v1.0/Publish-MgSiteContentType.md | 19 +- .../examples/v1.0/Remove-MgSiteContentType.md | 19 +- .../v1.0/Remove-MgSiteContentTypeColumn.md | 19 +- .../examples/v1.0/Remove-MgSiteListItem.md | 19 +- ...Remove-MgSiteListItemDocumentSetVersion.md | 19 +- .../examples/v1.0/Remove-MgSitePermission.md | 19 +- .../v1.0/Remove-MgSiteTermStoreGroup.md | 19 +- .../v1.0/Remove-MgSiteTermStoreSet.md | 19 +- .../v1.0/Remove-MgSiteTermStoreSetTerm.md | 19 +- ...estore-MgSiteListItemDocumentSetVersion.md | 19 +- .../v1.0/Restore-MgSiteListItemVersion.md | 19 +- .../v1.0/Test-MgSiteContentTypePublished.md | 19 +- .../v1.0/Unpublish-MgSiteContentType.md | 19 +- .../examples/v1.0/Update-MgSiteContentType.md | 61 +++- .../v1.0/Update-MgSiteListItemField.md | 23 +- .../examples/v1.0/Update-MgSitePermission.md | 24 +- .../examples/v1.0/Update-MgSiteTermStore.md | 22 +- .../v1.0/Update-MgSiteTermStoreSet.md | 22 +- .../v1.0/Update-MgSiteTermStoreSetTerm.md | 28 +- .../Teams/examples/v1.0/Add-MgTeamMember.md | 80 ++++- .../v1.0/Complete-MgTeamChannelMigration.md | 19 +- .../examples/v1.0/Complete-MgTeamMigration.md | 19 +- src/Teams/Teams/examples/v1.0/Copy-MgTeam.md | 26 +- .../examples/v1.0/Get-MgAppCatalogTeamApp.md | 43 +-- .../Get-MgAppCatalogTeamAppDefinitionBot.md | 19 +- src/Teams/Teams/examples/v1.0/Get-MgChat.md | 38 +-- .../examples/v1.0/Get-MgChatInstalledApp.md | 38 +-- .../Teams/examples/v1.0/Get-MgChatMember.md | 24 +- .../Teams/examples/v1.0/Get-MgChatMessage.md | 24 +- .../v1.0/Get-MgChatMessageHostedContent.md | 24 +- .../Teams/examples/v1.0/Get-MgChatTab.md | 29 +- src/Teams/Teams/examples/v1.0/Get-MgTeam.md | 19 +- .../Teams/examples/v1.0/Get-MgTeamChannel.md | 43 +-- .../v1.0/Get-MgTeamChannelFileFolder.md | 19 +- .../examples/v1.0/Get-MgTeamChannelMember.md | 24 +- .../examples/v1.0/Get-MgTeamChannelMessage.md | 29 +- .../Get-MgTeamChannelMessageHostedContent.md | 19 +- .../v1.0/Get-MgTeamChannelMessageReply.md | 19 +- ...-MgTeamChannelMessageReplyHostedContent.md | 19 +- .../v1.0/Get-MgTeamChannelSharedWithTeam.md | 24 +- ...gTeamChannelSharedWithTeamAllowedMember.md | 19 +- .../examples/v1.0/Get-MgTeamChannelTab.md | 24 +- .../v1.0/Get-MgTeamIncomingChannel.md | 19 +- .../examples/v1.0/Get-MgTeamInstalledApp.md | 43 +-- .../Teams/examples/v1.0/Get-MgTeamMember.md | 38 +-- .../examples/v1.0/Get-MgTeamPrimaryChannel.md | 19 +- .../Teams/examples/v1.0/Get-MgTeamSchedule.md | 19 +- .../Get-MgTeamScheduleOfferShiftRequest.md | 24 +- .../v1.0/Get-MgTeamScheduleOpenShift.md | 24 +- ...et-MgTeamScheduleOpenShiftChangeRequest.md | 24 +- .../v1.0/Get-MgTeamScheduleSchedulingGroup.md | 24 +- .../examples/v1.0/Get-MgTeamScheduleShift.md | 24 +- ...et-MgTeamScheduleSwapShiftChangeRequest.md | 24 +- .../v1.0/Get-MgTeamScheduleTimeOff.md | 24 +- .../v1.0/Get-MgTeamScheduleTimeOffReason.md | 24 +- .../v1.0/Get-MgTeamScheduleTimeOffRequest.md | 24 +- .../Get-MgTeamworkWorkforceIntegration.md | 24 +- .../Teams/examples/v1.0/Get-MgUserChat.md | 29 +- .../examples/v1.0/Get-MgUserChatMember.md | 20 +- .../examples/v1.0/Get-MgUserJoinedTeam.md | 20 +- .../v1.0/Get-MgUserTeamworkAssociatedTeam.md | 20 +- .../v1.0/Get-MgUserTeamworkInstalledApp.md | 38 +-- .../Get-MgUserTeamworkInstalledAppChat.md | 19 +- .../examples/v1.0/Invoke-MgArchiveTeam.md | 19 +- .../v1.0/Invoke-MgShareTeamSchedule.md | 24 +- .../examples/v1.0/Invoke-MgUnarchiveTeam.md | 19 +- .../examples/v1.0/New-MgAppCatalogTeamApp.md | 19 +- src/Teams/Teams/examples/v1.0/New-MgChat.md | 187 ++++++++++-- .../examples/v1.0/New-MgChatInstalledApp.md | 22 +- .../Teams/examples/v1.0/New-MgChatMember.md | 69 +++-- .../Teams/examples/v1.0/New-MgChatMessage.md | 46 ++- .../Teams/examples/v1.0/New-MgChatTab.md | 29 +- src/Teams/Teams/examples/v1.0/New-MgTeam.md | 235 +++++++++++++-- .../Teams/examples/v1.0/New-MgTeamChannel.md | 98 ++++-- .../examples/v1.0/New-MgTeamChannelEmail.md | 19 +- .../examples/v1.0/New-MgTeamChannelMember.md | 92 ++++-- .../examples/v1.0/New-MgTeamChannelMessage.md | 279 ++++++++++++++++-- .../v1.0/New-MgTeamChannelMessageReply.md | 36 ++- .../examples/v1.0/New-MgTeamInstalledApp.md | 22 +- .../Teams/examples/v1.0/New-MgTeamMember.md | 38 ++- .../New-MgTeamScheduleOfferShiftRequest.md | 24 +- .../v1.0/New-MgTeamScheduleOpenShift.md | 52 +++- ...ew-MgTeamScheduleOpenShiftChangeRequest.md | 23 +- .../v1.0/New-MgTeamScheduleSchedulingGroup.md | 27 +- .../examples/v1.0/New-MgTeamScheduleShift.md | 56 +++- ...ew-MgTeamScheduleSwapShiftChangeRequest.md | 25 +- .../v1.0/New-MgTeamScheduleTimeOff.md | 34 ++- .../v1.0/New-MgTeamScheduleTimeOffReason.md | 24 +- .../New-MgTeamworkWorkforceIntegration.md | 30 +- .../v1.0/New-MgUserTeamworkInstalledApp.md | 22 +- .../v1.0/Remove-MgAppCatalogTeamApp.md | 19 +- .../v1.0/Remove-MgChatInstalledApp.md | 19 +- .../examples/v1.0/Remove-MgChatMember.md | 19 +- .../Teams/examples/v1.0/Remove-MgChatTab.md | 19 +- .../examples/v1.0/Remove-MgTeamChannel.md | 19 +- .../v1.0/Remove-MgTeamChannelEmail.md | 19 +- .../v1.0/Remove-MgTeamChannelMember.md | 19 +- .../Remove-MgTeamChannelSharedWithTeam.md | 19 +- .../v1.0/Remove-MgTeamInstalledApp.md | 19 +- .../examples/v1.0/Remove-MgTeamMember.md | 19 +- .../v1.0/Remove-MgTeamScheduleOpenShift.md | 19 +- .../Remove-MgTeamScheduleSchedulingGroup.md | 19 +- .../v1.0/Remove-MgTeamScheduleShift.md | 19 +- .../v1.0/Remove-MgTeamScheduleTimeOff.md | 19 +- .../Remove-MgTeamScheduleTimeOffReason.md | 19 +- .../Remove-MgTeamScheduleTimeOffRequest.md | 19 +- .../Remove-MgTeamworkWorkforceIntegration.md | 19 +- .../v1.0/Remove-MgUserTeamworkInstalledApp.md | 19 +- .../v1.0/Send-MgChatActivityNotification.md | 145 +++++++-- .../v1.0/Send-MgTeamActivityNotification.md | 127 ++++++-- .../Teams/examples/v1.0/Update-MgChat.md | 22 +- .../v1.0/Update-MgChatInstalledApp.md | 19 +- .../Teams/examples/v1.0/Update-MgChatTab.md | 22 +- .../Teams/examples/v1.0/Update-MgTeam.md | 32 +- .../examples/v1.0/Update-MgTeamChannel.md | 19 +- .../v1.0/Update-MgTeamChannelMember.md | 25 +- .../v1.0/Update-MgTeamChannelMessage.md | 32 +- .../v1.0/Update-MgTeamInstalledApp.md | 19 +- .../examples/v1.0/Update-MgTeamMember.md | 25 +- .../v1.0/Update-MgTeamScheduleOpenShift.md | 40 ++- .../v1.0/Update-MgTeamScheduleShift.md | 67 ++++- .../Update-MgTeamworkWorkforceIntegration.md | 30 +- .../examples/v1.0/Clear-MgUserPresence.md | 22 +- .../v1.0/Confirm-MgUserMemberGroup.md | 26 +- .../v1.0/Confirm-MgUserMemberObject.md | 28 +- .../examples/v1.0/Copy-MgUserMailFolder.md | 23 +- .../examples/v1.0/Copy-MgUserMessage.md | 23 +- .../v1.0/Copy-MgUserOnenoteNotebook.md | 24 +- .../v1.0/Copy-MgUserOnenotePageToSection.md | 24 +- .../Copy-MgUserOnenoteSectionToNotebook.md | 25 +- ...Copy-MgUserOnenoteSectionToSectionGroup.md | 25 +- ...e-MgUserAuthenticationPhoneMethodSmSign.md | 20 +- ...e-MgUserAuthenticationPhoneMethodSmSign.md | 20 +- .../v1.0/Export-MgUserPersonalData.md | 22 +- .../examples/v1.0/Find-MgUserMeetingTime.md | 60 +++- .../v1.0/Get-MgUserDefaultCalendarSchedule.md | 35 ++- .../examples/v1.0/Get-MgUserMailTip.md | 27 +- .../examples/v1.0/Get-MgUserMemberGroup.md | 23 +- .../Get-MgUserOnenoteNotebookFromWebUrl.md | 23 +- .../examples/v1.0/Invoke-MgAcceptUserEvent.md | 24 +- .../Invoke-MgAcceptUserEventTentatively.md | 34 ++- .../Invoke-MgCreateOrGetUserOnlineMeeting.md | 38 ++- .../v1.0/Invoke-MgDeclineUserEvent.md | 34 ++- .../v1.0/Invoke-MgDismissUserEventReminder.md | 20 +- .../v1.0/Invoke-MgForwardUserEvent.md | 31 +- .../v1.0/Invoke-MgForwardUserMessage.md | 31 +- .../examples/v1.0/Invoke-MgLicenseUser.md | 19 +- .../v1.0/Invoke-MgReplyAllUserMessage.md | 23 +- .../v1.0/Invoke-MgReplyUserMessage.md | 39 ++- .../v1.0/Invoke-MgSnoozeUserEventReminder.md | 26 +- .../v1.0/Invoke-MgTranslateUserExchangeId.md | 28 +- .../examples/v1.0/Move-MgUserMailFolder.md | 23 +- .../examples/v1.0/Move-MgUserMessage.md | 23 +- ...ew-MgUserMessageAttachmentUploadSession.md | 42 ++- .../examples/v1.0/New-MgUserMessageForward.md | 20 +- .../examples/v1.0/New-MgUserMessageReply.md | 20 +- .../v1.0/New-MgUserMessageReplyAll.md | 20 +- .../examples/v1.0/Revoke-MgUserSign.md | 6 + .../examples/v1.0/Send-MgUserMail.md | 106 ++++++- .../examples/v1.0/Send-MgUserMessage.md | 20 +- ...Send-MgUserTeamworkActivityNotification.md | 79 ++++- .../examples/v1.0/Set-MgUserPresence.md | 25 +- .../examples/v1.0/Stop-MgUserEvent.md | 23 +- .../examples/v1.0/Update-MgUserPassword.md | 24 +- .../v1.0/Get-MgUserContactFolderDelta.md | 20 +- .../examples/v1.0/Get-MgUserDelta.md | 19 +- .../v1.0/Get-MgUserMailFolderMessageDelta.md | 20 +- .../v1.0/Invoke-MgRecentUserActivity.md | 20 +- .../Invoke-MgSupportedUserOutlookLanguage.md | 20 +- .../examples/v1.0/Invoke-MgTimeUserOutlook.md | 20 +- .../Users/examples/v1.0/Get-MgUserMemberOf.md | 19 +- .../v1.0/Get-MgUserOutlookMasterCategory.md | 26 +- .../examples/v1.0/Get-MgUserOwnedDevice.md | 20 +- .../examples/v1.0/Get-MgUserOwnedObject.md | 20 +- .../v1.0/Get-MgUserRegisteredDevice.md | 20 +- .../v1.0/Get-MgUserSettingShiftPreference.md | 19 +- .../Users/examples/v1.0/Get-MgUserTodoList.md | 26 +- .../examples/v1.0/Get-MgUserTodoListTask.md | 26 +- .../Get-MgUserTodoListTaskChecklistItem.md | 26 +- .../Get-MgUserTodoListTaskLinkedResource.md | 26 +- .../v1.0/Get-MgUserTransitiveMemberOf.md | 19 +- .../v1.0/New-MgUserOutlookMasterCategory.md | 24 +- .../Users/examples/v1.0/New-MgUserTodoList.md | 23 +- .../examples/v1.0/New-MgUserTodoListTask.md | 33 ++- .../New-MgUserTodoListTaskChecklistItem.md | 23 +- .../New-MgUserTodoListTaskLinkedResource.md | 26 +- .../Remove-MgUserOutlookMasterCategory.md | 20 +- .../examples/v1.0/Remove-MgUserTodoList.md | 20 +- .../v1.0/Remove-MgUserTodoListTask.md | 20 +- .../Remove-MgUserTodoListTaskChecklistItem.md | 20 +- ...Remove-MgUserTodoListTaskLinkedResource.md | 20 +- .../Update-MgUserOutlookMasterCategory.md | 23 +- .../Update-MgUserSettingShiftPreference.md | 43 ++- .../examples/v1.0/Update-MgUserTodoList.md | 23 +- .../v1.0/Update-MgUserTodoListTask.md | 26 +- .../Update-MgUserTodoListTaskChecklistItem.md | 23 +- ...Update-MgUserTodoListTaskLinkedResource.md | 26 +- 966 files changed, 11426 insertions(+), 15546 deletions(-) create mode 100644 src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md create mode 100644 src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md diff --git a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md index 093355d11d5..aa9b63afd85 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyCredential = @{ + Type = "AsymmetricX509Cert" + Usage = "Verify" + Key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...") + } + PasswordCredential = $null + Proof = "eyJ0eXAiOiJ..." +} +Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyCredential = @{ + Type = "X509CertAndPassword" + Usage = "Sign" + Key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...") + } + PasswordCredential = @{ + SecretText = "MKTr0w1..." + } + Proof = "eyJ0eXAiOiJ..." +} +Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md index 093355d11d5..385ddde73b0 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyCredential = @{ + Type = "AsymmetricX509Cert" + Usage = "Verify" + Key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...") + } + PasswordCredential = $null + Proof = "eyJ0eXAiOiJ..." +} +Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyCredential = @{ + Type = "X509CertAndPassword" + Usage = "Sign" + Key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...") + } + PasswordCredential = @{ + SecretText = "MKTr0w1..." + } + Proof = "eyJ0eXAiOiJ..." +} +Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md index 093355d11d5..4e5662bded9 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + PasswordCredential = @{ + DisplayName = "Password friendly name" + } +} +Add-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md index 093355d11d5..97d77581a49 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + DisplayName = "CN=customDisplayName" + EndDateTime = [System.DateTime]::Parse("2024-01-25T00:00:00Z") +} +Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md index 093355d11d5..d4dcf74b9dd 100644 --- a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md index 093355d11d5..c98f4fbd7fc 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationDelta ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md index 093355d11d5..1d837460cb0 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationExtensionProperty -ApplicationId $applicationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Applications +Get-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md index 093355d11d5..af1d6208803 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Applications +Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md index 093355d11d5..aebcc0861e0 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationOwner -ApplicationId $applicationId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md index 093355d11d5..ea4b9d37e4f 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTemplate ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md index 093355d11d5..1284b5c6881 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md index 093355d11d5..9f6ff33f152 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md index 093355d11d5..b7fe9c2614d 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md index 093355d11d5..7aa66d8bffe 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md index 093355d11d5..19c15c44fd2 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md index 093355d11d5..99e4c0d51f1 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md index 093355d11d5..fb5d827e75c 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalDelta ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md index 093355d11d5..0942e0b67d1 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md index 093355d11d5..d6147a94132 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md index 093355d11d5..7210836fc17 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md index 093355d11d5..99398cdae10 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md index 093355d11d5..b35ea68140a 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md index 093355d11d5..aeca57de21b 100644 --- a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + DisplayName = "Azure AD SAML Toolkit" +} +Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId $applicationTemplateId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md index 093355d11d5..98b6812a873 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "jobGroup" + DataType = "String" + TargetObjects = @( + "User" + ) +} +New-MgApplicationExtensionProperty -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md index 093355d11d5..2cffb8db9e1 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "testing02" + Issuer = "https://login.microsoftonline.com/3d1e2be9-a10a-4a0c-8380-7ce190f98ed9/v2.0" + Subject = "a7d388c3-5e3f-4959-ac7d-786b3383006a" + Audiences = @( + "api://AzureADTokenExchange" + ) +} +New-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md index 093355d11d5..343f95e3c0e 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/policies/tokenIssuancePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" +} +New-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md index 093355d11d5..a5e07453611 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/policies/tokenLifetimePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" +} +New-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md index 093355d11d5..25094cf3061 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + PrincipalId = "33ad69f9-da99-4bed-acd0-3f24235cb296" + ResourceId = "9028d19c-26a9-4809-8e3f-20ff73e2d75e" + AppRoleId = "ef7437e6-4f94-4a0a-a110-a439eb2aa8f7" +} +New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md index 39f9ee467b4..b97073521bc 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md @@ -1,37 +1,10 @@ -### Example 1: {{ Add title here }} - -```powershell -$appRoleAssignment = @{ - "principalId"= "0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61" - "resourceId"= "557aedfc-007c-4904-918a-7e6fed2e7403" - "appRoleId"= "00000000-0000-0000-0000-000000000000" - } - -New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId 0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61 -BodyParameter $appRoleAssignment | Format-List - -AppRoleId : 00000000-0000-0000-0000-000000000000 -CreatedDateTime : 8/31/2021 2:01:28 PM -DeletedDateTime : -Id : PRLbC6e4yUyMwr0XutBvYfZHkKGzlbxDr2I-QJWN9rs -PrincipalDisplayName : Example App -PrincipalId : 0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61 -PrincipalType : ServicePrincipal -ResourceDisplayName : Office 365 Management APIs -ResourceId : 557aedfc-007c-4904-918a-7e6fed2e7403 -AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#servicePrincipals('0bdb123d-b8a7-4cc9-8cc2-bd17 - bad06f61')/appRoleAssignments/$entity], [@odata.id, https://graph.microsoft.com/v2/fb625e04-52aa-42da-b10d-1 - 4f1195d665f/directoryObjects/$/Microsoft.DirectoryServices.ServicePrincipal('0bdb123d-b8a7-4cc9-8cc2-bd17bad - 06f61')/appRoleAssignments/PRLbC6e4yUyMwr0XutBvYfZHkKGzlbxDr2I-QJWN9rs]} +###Example 1 +``` +Import-Module Microsoft.Graph.Applications +$params = @{ + PrincipalId = "9028d19c-26a9-4809-8e3f-20ff73e2d75e" + ResourceId = "8fce32da-1246-437b-99cd-76d1d4677bd5" + AppRoleId = "498476ce-e0fe-48b0-b801-37ba7e2685c6" +} +New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -In this example, the first command defines the `$appRoleAssignment` variable that defines the following: - --`principalId`: The id of the client service principal to which you are assigning the app role. - --`resourceId`: The id of the resource `servicePrincipal` (the API) which has defined the app role (the application permission). - --`appRoleId`: The id of the appRole (defined on the resource service principal) to assign to the client service principal. - -Learn more about the [AppRoleAssignment resource](/graph/api/resources/approleassignment?view=graph-rest-1.0). - -The second command adds the role to the specified service principal. diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md index 093355d11d5..b0dd60a77a1 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/policies/claimsMappingPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" +} +New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md index 093355d11d5..b5ed4a0d559 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + PermissionId = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" + PermissionName = "User.Read" + Classification = "low" +} +New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 093355d11d5..173c2e0607e 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/policies/homeRealmDiscoveryPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" +} +New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md index 093355d11d5..7b7f2e7971a 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md index 093355d11d5..567c94b5553 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md index 093355d11d5..da942754d81 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" + Proof = "eyJ0eXAiOiJ..." +} +Remove-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md index 093355d11d5..f83d58670b0 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md index 093355d11d5..8ed96f04a35 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" +} +Remove-MgApplicationPassword -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md index 093355d11d5..09f893ef1f5 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md index 093355d11d5..95f9b5c8f5c 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md index 093355d11d5..7b520e7845c 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md index 093355d11d5..8327de5bf3a 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md index 093355d11d5..1b4291b0013 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md index 093355d11d5..8b2dff47d4c 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md index 093355d11d5..c8ce1de1ca9 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 093355d11d5..f37e52b0f2b 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md index 093355d11d5..7f5e50410f2 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" + Proof = "eyJ0eXAiOiJ..." +} +Remove-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md index 093355d11d5..d40a0ffaee1 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" +} +Remove-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md index 093355d11d5..b4a5c0db08b 100644 --- a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + VerifiedPublisherId = "1234567" +} +Set-MgApplicationVerifiedPublisher -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md index 093355d11d5..e831e4e7f08 100644 --- a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "testing02" + Issuer = "https://login.microsoftonline.com/3d1e2be9-a10a-4a0c-8380-7ce190f98ed9/v2.0" + Subject = "a7d388c3-5e3f-4959-ac7d-786b3383006a" + Description = "Updated description" + Audiences = @( + "api://AzureADTokenExchange" + ) +} +Update-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md index 093355d11d5..e7584e7ebc6 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusiness -BookingBusinessId $bookingBusinessId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusiness +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusiness -Query "Adventure" ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md index 093355d11d5..0fb7c5f2392 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md index 093355d11d5..6d98e88ec3d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md index 093355d11d5..c85b6eceecd 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md index 093355d11d5..21250af5dd1 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md index 093355d11d5..5f0932028dd 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md index 093355d11d5..8c9b4c32a2f 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md index 093355d11d5..2dce17bf565 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingCurrency -BookingCurrencyId $bookingCurrencyId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Bookings +Get-MgBookingCurrency ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md index 093355d11d5..a5e4ec77591 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + DisplayName = "Fourth Coffee" + Address = @{ + PostOfficeBox = "P.O. Box 123" + Street = "4567 Main Street" + City = "Buffalo" + State = "NY" + CountryOrRegion = "USA" + PostalCode = "98052" + } + Phone = "206-555-0100" + Email = "manager@fourthcoffee.com" + WebSiteUrl = "https://www.fourthcoffee.com" + DefaultCurrencyIso = "USD" +} +New-MgBookingBusiness -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md index 093355d11d5..dc90690ecad 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md @@ -1,18 +1,110 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingAppointment" + CustomerTimeZone = "America/Chicago" + SmsNotificationsEnabled = $true + EndDateTime = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-01T12:30:00.0000000+00:00" + TimeZone = "UTC" + } + IsLocationOnline = $true + OptOutOfCustomerEmail = $false + PostBuffer = "PT10M" + PreBuffer = "PT5M" + Price = 10 + "PriceType@odata.type" = "#microsoft.graph.bookingPriceType" + PriceType = "fixedPrice" + "Reminders@odata.type" = "#Collection(microsoft.graph.bookingReminder)" + Reminders = @( + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "This service is tomorrow" + Offset = "P1D" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "allAttendees" + } + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "Please be available to enjoy your lunch service." + Offset = "PT1H" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "customer" + } + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "Please check traffic for next cater." + Offset = "PT2H" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "staff" + } + ) + ServiceId = "57da6774-a087-4d69-b0e6-6fb82c339976" + ServiceLocation = @{ + "@odata.type" = "#microsoft.graph.location" + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + City = "Buffalo" + CountryOrRegion = "USA" + PostalCode = "98052" + PostOfficeBox = $null + State = "NY" + Street = "123 First Avenue" + "Type@odata.type" = "#microsoft.graph.physicalAddressType" + Type = $null + } + Coordinates = $null + DisplayName = "Customer location" + LocationEmailAddress = $null + "LocationType@odata.type" = "#microsoft.graph.locationType" + LocationType = $null + LocationUri = $null + UniqueId = $null + "UniqueIdType@odata.type" = "#microsoft.graph.locationUniqueIdType" + UniqueIdType = $null + } + ServiceName = "Catered bento" + ServiceNotes = "Customer requires punctual service." + StartDateTime = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-01T12:00:00.0000000+00:00" + TimeZone = "UTC" + } + MaximumAttendeesCount = 5 + FilledAttendeesCount = 1 + "Customers@odata.type" = "#Collection(microsoft.graph.bookingCustomerInformation)" + Customers = @( + @{ + "@odata.type" = "#microsoft.graph.bookingCustomerInformation" + CustomerId = "7ed53fa5-9ef2-4f2f-975b-27447440bc09" + Name = "Jordan Miller" + EmailAddress = "jordanm@contoso.com" + Phone = "213-555-0199" + Notes = $null + Location = @{ + "@odata.type" = "#microsoft.graph.location" + DisplayName = "Customer" + LocationEmailAddress = $null + LocationUri = "" + LocationType = $null + UniqueId = $null + UniqueIdType = $null + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + Street = "" + City = "" + State = "" + CountryOrRegion = "" + PostalCode = "" + } + } + TimeZone = "America/Chicago" + CustomQuestionAnswers = @( + ) + } + ) +} +New-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md index 093355d11d5..80a2c8d2640 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingCustomQuestion" + DisplayName = "What is your age?" + AnswerInputType = "text" + AnswerOptions = @( + ) +} +New-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md index 093355d11d5..24159a57282 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingCustomer" + DisplayName = "Joni Sherman" + EmailAddress = "jonis@relecloud.com" + Addresses = @( + ) + Phones = @( + ) +} +New-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md index 093355d11d5..c65bc0742aa 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md @@ -1,18 +1,66 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingService" + DefaultDuration = "PT1H30M" + DefaultLocation = @{ + "@odata.type" = "#microsoft.graph.location" + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + City = "Buffalo" + CountryOrRegion = "USA" + PostalCode = "98052" + PostOfficeBox = $null + State = "NY" + Street = "4567 First Street" + "Type@odata.type" = "#microsoft.graph.physicalAddressType" + Type = $null + } + Coordinates = $null + DisplayName = "Contoso Lunch Delivery" + LocationEmailAddress = $null + "LocationType@odata.type" = "#microsoft.graph.locationType" + LocationType = $null + LocationUri = $null + UniqueId = $null + "UniqueIdType@odata.type" = "#microsoft.graph.locationUniqueIdType" + UniqueIdType = $null + } + DefaultPrice = 10 + "DefaultPriceType@odata.type" = "#microsoft.graph.bookingPriceType" + DefaultPriceType = "fixedPrice" + "DefaultReminders@odata.type" = "#Collection(microsoft.graph.bookingReminder)" + DefaultReminders = @( + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "Please be reminded that this service is tomorrow." + Offset = "P1D" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "allAttendees" + } + ) + Description = "Individual bento box lunch delivery" + DisplayName = "Bento" + IsLocationOnline = $true + SmsNotificationsEnabled = $true + IsHiddenFromCustomers = $false + Notes = "Home-cooked special" + PostBuffer = "PT10M" + PreBuffer = "PT5M" + SchedulingPolicy = @{ + "@odata.type" = "#microsoft.graph.bookingSchedulingPolicy" + AllowStaffSelection = $true + MaximumAdvance = "P10D" + MinimumLeadTime = "PT10H" + SendConfirmationsToOwner = $true + TimeSlotInterval = "PT1H" + } + "StaffMemberIds@odata.type" = "#Collection(String)" + StaffMemberIds = @( + "d90d1e8c-5cfe-48cf-a2d5-966267375b6a" + "2f5f8794-0b29-45b5-b56a-2eb5ff7aa880" + ) +} +New-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md index 093355d11d5..0729f7013a1 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md @@ -1,18 +1,82 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingStaffMember" + DisplayName = "Dana Swope" + EmailAddress = "danas@contoso.com" + "Role@odata.type" = "#microsoft.graph.bookingStaffRole" + Role = "externalGuest" + TimeZone = "America/Chicago" + UseBusinessHours = $true + "WorkingHours@odata.type" = "#Collection(microsoft.graph.bookingWorkHours)" + WorkingHours = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "monday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "tuesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "wednesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "thursday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "friday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + ) +} +New-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md index 093355d11d5..c59bed845d3 100644 --- a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md index 093355d11d5..3e98655f184 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md index 093355d11d5..f9ff6e8c553 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md index 093355d11d5..21ba072e871 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md index 093355d11d5..fecaa75061e 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md index 093355d11d5..503f733f570 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md index 093355d11d5..66fc98a9f36 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md index 093355d11d5..0727a4ecba6 100644 --- a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + CancellationMessage = "Your appointment has been successfully cancelled. Please call us again." +} +Stop-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md index 093355d11d5..e73a7ed48aa 100644 --- a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md index 093355d11d5..d0614fafbfb 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + Email = "admin@fabrikam.com" + SchedulingPolicy = @{ + TimeSlotInterval = "PT60M" + MinimumLeadTime = "P1D" + MaximumAdvance = "P30D" + SendConfirmationsToOwner = $true + AllowStaffSelection = $true + } +} +Update-MgBookingBusiness -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md index 093355d11d5..0b9f731f327 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingAppointment" + EndDateTime = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-06T12:30:00.0000000+00:00" + TimeZone = "UTC" + } + StartDateTime = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-06T12:00:00.0000000+00:00" + TimeZone = "UTC" + } +} +Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md index 093355d11d5..c318f00955c 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingCustomQuestion" + DisplayName = "What is your age?" + AnswerInputType = "text" + AnswerOptions = @( + ) +} +Update-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md index 093355d11d5..2d44497b40f 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingCustomer" + DisplayName = "Adele" + EmailAddress = "adele@relecloud.com" +} +Update-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md index 093355d11d5..5aed34d824c 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingService" + DefaultDuration = "PT30M" +} +Update-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md index 093355d11d5..7394628c474 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md @@ -1,18 +1,70 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingStaffMember" + WorkingHours = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "monday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "tuesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "wednesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "thursday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "friday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + EndTime = "17:00:00.0000000" + StartTime = "08:00:00.0000000" + } + ) + } + ) +} +Update-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md index 093355d11d5..810d53a43ef 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgGroupEvent -GroupId $groupId -EventId $eventId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +Get-MgGroupEvent -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md index 093355d11d5..cef924c9308 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md index 093355d11d5..4d73f2c71e9 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md index 093355d11d5..3edf125f12c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendar -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md index 093355d11d5..293d8165da5 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarGroup -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md index 093355d11d5..1417884a275 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md index 093355d11d5..e46324aeb8c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md index 093355d11d5..fc16a89246c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md index 093355d11d5..bb578ee2c27 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserDefaultCalendar -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md index 093355d11d5..04b87ed5672 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location" ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md index 093355d11d5..86f0d576a02 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEventAttachment -UserId $userId -EventId $eventId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md index 093355d11d5..92326b645ac 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md index 093355d11d5..bbe032dc4e8 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does late morning work for you?" + } + Start = @{ + DateTime = "2019-06-16T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-06-16T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "adelev@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) +} +New-MgGroupEvent -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md index 093355d11d5..6062dd5ccd9 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "Volunteer" +} +# A UPN can also be used as -UserId. +New-MgUserCalendar -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md index 093355d11d5..28dc76880ab 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md @@ -1,18 +1,69 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does mid month work for you?" + } + Start = @{ + DateTime = "2019-03-15T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-03-15T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "adelev@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) + TransactionId = "7E163156-7762-4BEB-A1C6-729EA81755A7" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does next month work for you?" + } + Start = @{ + DateTime = "2019-03-10T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-03-10T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "adelev@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) + IsOnlineMeeting = $true + OnlineMeetingProvider = "teamsForBusiness" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md index 093355d11d5..4a3f6243670 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "Personal events" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md index 093355d11d5..9f5259dc99d 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "Marketing calendar" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md index 093355d11d5..da1ebab2b88 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md @@ -1,18 +1,183 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Plan summer company picnic" + Body = @{ + ContentType = "HTML" + Content = "Let's kick-start this event planning!" + } + Start = @{ + DateTime = "2017-08-30T11:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-08-30T12:00:00" + TimeZone = "Pacific Standard Time" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "DanaS@contoso.onmicrosoft.com" + Name = "Dana Swope" + } + Type = "Required" + } + @{ + EmailAddress = @{ + Address = "AlexW@contoso.onmicrosoft.com" + Name = "Alex Wilber" + } + Type = "Required" + } + ) + Location = @{ + DisplayName = "Conf Room 3; Fourth Coffee; Home Office" + LocationType = "Default" + } + Locations = @( + @{ + DisplayName = "Conf Room 3" + } + @{ + DisplayName = "Fourth Coffee" + Address = @{ + Street = "4567 Main St" + City = "Redmond" + State = "WA" + CountryOrRegion = "US" + PostalCode = "32008" + } + Coordinates = @{ + Latitude = 47.672 + Longitude = -102.103 + } + } + @{ + DisplayName = "Home Office" + } + ) + AllowNewTimeProposals = $true +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon work for you?" + } + Start = @{ + DateTime = "2017-04-15T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-04-15T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + Type = "required" + } + ) + AllowNewTimeProposals = $true + TransactionId = "7E163156-7762-4BEB-A1C6-729EA81755A7" +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon work for you?" + } + Start = @{ + DateTime = "2017-04-15T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-04-15T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + Type = "required" + } + ) + AllowNewTimeProposals = $true + IsOnlineMeeting = $true + OnlineMeetingProvider = "teamsForBusiness" +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon time work for you?" + } + Start = @{ + DateTime = "2017-09-04T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-09-04T14:00:00" + TimeZone = "Pacific Standard Time" + } + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + DaysOfWeek = @( + "Monday" + ) + } + Range = @{ + Type = "endDate" + StartDate = "2017-09-04" + EndDate = "2017-12-31" + } + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "AdeleV@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) + AllowNewTimeProposals = $true +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md index 093355d11d5..b2fd15b3494 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md @@ -1,18 +1,38 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "menu.txt" + ContentBytes = "base64bWFjIGFuZCBjaGVlc2UgdG9kYXk=" +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#microsoft.graph.itemAttachment" + Name = "Holiday event" + Item = @{ + "@odata.type" = "microsoft.graph.event" + Subject = "Discuss gifts for children" + } +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#Microsoft.OutlookServices.ItemAttachment" + Name = "name-value" + Item = @{ + "@odata.type" = "microsoft.graph.message" + } +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md index 093355d11d5..e9eadac38be 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Remove-MgGroupEvent -GroupId $groupId -EventId $eventId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md index 093355d11d5..71bc0df2835 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md index 093355d11d5..fd98633c40d 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md index 093355d11d5..2aa40e404dd 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Remove-MgUserEvent -UserId $userId -EventId $eventId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md index 093355d11d5..6c957b3e624 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md index 093355d11d5..014bcf3436c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md @@ -1,18 +1,37 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.room" + Nickname = "Conf Room" + Building = "1" + Label = "100" + Capacity = + IsWheelChairAccessible = $false +} +Update-MgPlace -PlaceId $placeId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.roomList" + DisplayName = "Building 1" + Phone = "555-555-0100" + Address = @{ + Street = "4567 Main Street" + City = "Buffalo" + State = "NY" + PostalCode = "98052" + CountryOrRegion = "USA" + } + GeoCoordinates = @{ + Altitude = $null + Latitude = 47 + Longitude = -122 + Accuracy = $null + AltitudeAccuracy = $null + } +} +Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md index 093355d11d5..995555a9ad8 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "name-value" +} +# A UPN can also be used as -UserId. +Update-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md index 093355d11d5..3d6c62af099 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Role = "write" +} +Update-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md index 093355d11d5..34de3ba7d61 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + OriginalStartTimeZone = "originalStartTimeZone-value" + OriginalEndTimeZone = "originalEndTimeZone-value" + ResponseStatus = @{ + Response = "" + Time = [System.DateTime]::Parse("datetime-value") + } + Recurrence = $null + ReminderMinutesBeforeStart = 99 + IsOnlineMeeting = $true + OnlineMeetingProvider = "teamsForBusiness" + IsReminderOn = $true + HideAttendees = $false + Categories = @( + "Red category" + ) +} +# A UPN can also be used as -UserId. +Update-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md index 093355d11d5..893bb4a1e38 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +Get-MgSubscription -SubscriptionId $subscriptionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.ChangeNotifications +Get-MgSubscription ``` - -{{ Add description here }} - diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md index 093355d11d5..3dc873c5a39 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +$params = @{ + ChangeType = "created" + NotificationUrl = "https://webhook.azurewebsites.net/api/send/myNotifyClient" + Resource = "me/mailFolders('Inbox')/messages" + ExpirationDateTime = [System.DateTime]::Parse("2016-11-20T18:23:45.9356913Z") + ClientState = "secretClientValue" + LatestSupportedTlsVersion = "v1_2" +} +New-MgSubscription -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md index 093355d11d5..a425a3f2605 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +Remove-MgSubscription -SubscriptionId $subscriptionId ``` - -{{ Add description here }} - diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md index 093355d11d5..9670e6fa613 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +$params = @{ + ExpirationDateTime = [System.DateTime]::Parse("2016-11-22T18:23:45.9356913Z") +} +Update-MgSubscription -SubscriptionId $subscriptionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md index 093355d11d5..b8a20f78fab 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCall -CallId $callId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCall -CallId $callId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md index 093355d11d5..9fc6cab2839 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallParticipant -CallId $callId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md index 093355d11d5..865174c3d34 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId +``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md index 093355d11d5..182609f947a 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md index 093355d11d5..2b4a96d56fe 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md index 093355d11d5..754568af942 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationPresence -PresenceId $presenceId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md index 093355d11d5..568f007e945 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Ids = @( + "fa8bf3dc-eca7-46b7-bad1-db199b62afc3" + "66825e03-7ef5-42da-9069-724602c31f6b" + ) +} +Get-MgCommunicationPresenceByUserId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md index 093355d11d5..c59456fd4b9 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md index 093355d11d5..d7902e0e0ae 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId -ExpandProperty "attendanceRecords" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 093355d11d5..9f5f1968d21 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md index 093355d11d5..d2ce725be1c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserPresence -UserId $userId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserPresence -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md index 093355d11d5..52e9b724639 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md @@ -1,18 +1,47 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CallbackUri = "https://bot.contoso.com/api/calls" + AcceptedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } +} +Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CallbackUri = "callbackUri-value" + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } + AcceptedModalities = @( + "audio" + ) + ParticipantCapacity = 200 +} +Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CallbackUri = "https://bot.contoso.com/api/calls" + AcceptedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + PreFetchMedia = @( + ) + } +} +Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md index 093355d11d5..6495a216a4c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md @@ -1,18 +1,165 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "278405a3-f568-4b3e-b684-009193463064" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "7e1b4346-85a6-4bdd-abe3-d11c5d420efe" + DisplayName = "string" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + ParticipantId = "7d501bf1-5ee4-4605-ba92-0ae4513c611c" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "682b6c37-0729-4fab-ace6-d730d5d9137e" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "7e1b4346-85a6-4bdd-abe3-d11c5d420efe" + DisplayName = "string" + } + } + } + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "1e126418-44a0-4a94-a6f8-0efe1ad71acb" + DisplayName = "string" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "278405a3-f568-4b3e-b684-009193463064" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +###Example 7 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "278405a3-f568-4b3e-b684-009193463064" + DisplayName = "string" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md index 093355d11d5..8c12a320dc2 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Invoke-MgKeepCommunicationCallAlive -CallId $callId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 093355d11d5..f04a736cf2b 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -1,18 +1,89 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Quality = @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceQuality" + CallChainId = "0622673d-9f69-49b3-9d4f-5ec64f42ecce" + ParticipantId = "ea078406-b5d4-4d3c-b85e-90103dcec7f6" + MediaLegId = "bd9ee398-4b9d-42c7-8b8d-4e8efad9435f" + DeviceName = "TestAgent" + DeviceDescription = "TestDescription" + MediaQualityList = @( + @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceAudioQuality" + ChannelIndex = 1 + MediaDuration = "PT20M" + NetworkLinkSpeedInBytes = 13000 + LocalIPAddress = "127.0.0.1" + LocalPort = 6300 + RemoteIPAddress = "102.1.1.101" + RemotePort = 6301 + InboundPackets = 5500 + OutboundPackets = 5400 + AverageInboundPacketLossRateInPercentage = 0.01 + AverageOutboundPacketLossRateInPercentage = 0.02 + MaximumInboundPacketLossRateInPercentage = 0.05 + MaximumOutboundPacketLossRateInPercentage = 0.06 + AverageInboundRoundTripDelay = "PT0.03S" + AverageOutboundRoundTripDelay = "PT0.04S" + MaximumInboundRoundTripDelay = "PT0.13S" + MaximumOutboundRoundTripDelay = "PT0.14S" + AverageInboundJitter = "PT0.01S" + AverageOutboundJitter = "PT0.015S" + MaximumInboundJitter = "PT0.023S" + MaximumOutboundJitter = "PT0.024S" + } + @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceVideoQuality" + ChannelIndex = 1 + MediaDuration = "PT20M" + NetworkLinkSpeedInBytes = 13000 + LocalIPAddress = "127.0.0.1" + LocalPort = 6300 + RemoteIPAddress = "102.1.1.101" + RemotePort = 6301 + InboundPackets = 5500 + OutboundPackets = 5400 + AverageInboundPacketLossRateInPercentage = 0.01 + AverageOutboundPacketLossRateInPercentage = 0.02 + MaximumInboundPacketLossRateInPercentage = 0.05 + MaximumOutboundPacketLossRateInPercentage = 0.06 + AverageInboundRoundTripDelay = "PT0.03S" + AverageOutboundRoundTripDelay = "PT0.04S" + MaximumInboundRoundTripDelay = "PT0.13S" + MaximumOutboundRoundTripDelay = "PT0.14S" + AverageInboundJitter = "PT0.01S" + AverageOutboundJitter = "PT0.015S" + MaximumInboundJitter = "PT0.023S" + MaximumOutboundJitter = "PT0.024S" + } + @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceScreenSharingQuality" + ChannelIndex = 1 + MediaDuration = "PT20M" + NetworkLinkSpeedInBytes = 13000 + LocalIPAddress = "127.0.0.1" + LocalPort = 6300 + RemoteIPAddress = "102.1.1.101" + RemotePort = 6301 + InboundPackets = 5500 + OutboundPackets = 5400 + AverageInboundPacketLossRateInPercentage = 0.01 + AverageOutboundPacketLossRateInPercentage = 0.02 + MaximumInboundPacketLossRateInPercentage = 0.05 + MaximumOutboundPacketLossRateInPercentage = 0.06 + AverageInboundRoundTripDelay = "PT0.03S" + AverageOutboundRoundTripDelay = "PT0.04S" + MaximumInboundRoundTripDelay = "PT0.13S" + MaximumOutboundRoundTripDelay = "PT0.14S" + AverageInboundJitter = "PT0.01S" + AverageOutboundJitter = "PT0.015S" + MaximumInboundJitter = "PT0.023S" + MaximumOutboundJitter = "PT0.024S" + } + ) + } +} +Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md index 093355d11d5..7a3a3afc751 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" +} +Invoke-MgMuteCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md index 093355d11d5..753415d8584 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" +} +Invoke-MgMuteCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md index 093355d11d5..00f98aeab05 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" + Prompts = @( + @{ + "@odata.type" = "#microsoft.graph.mediaPrompt" + MediaInfo = @{ + "@odata.type" = "#microsoft.graph.mediaInfo" + Uri = "https://cdn.contoso.com/beep.wav" + ResourceId = "1D6DE2D4-CD51-4309-8DAA-70768651088E" + } + } + ) +} +Invoke-MgPlayCommunicationCallPrompt -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md index 093355d11d5..7a7979cde1e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + BargeInAllowed = $true + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" + Prompts = @( + @{ + "@odata.type" = "#microsoft.graph.mediaPrompt" + } + ) + MaxRecordDurationInSeconds = 10 + InitialSilenceTimeoutInSeconds = 5 + MaxSilenceTimeoutInSeconds = 2 + PlayBeep = $true + StopTones = @( + "#" + "1" + "*" + ) +} +Invoke-MgRecordCommunicationCallResponse -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md index 093355d11d5..4943653aaa6 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md @@ -1,18 +1,41 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Application = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "test bot 2" + Id = "22bfd41f-550e-477d-8789-f6f7bd2a5e8b" + } + } + } + ) + CallbackUri = "https://bot.contoso.com/api/calls/24701998-1a73-4d42-8085-bf46ed0ae039" +} +Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + CallbackUri = "https://bot.contoso.com/api/calls/24701998-1a73-4d42-8085-bf46ed0ae039" +} +Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md index 093355d11d5..47031bdab45 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Reason = "none" +} +Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Reason = "busy" +} +Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md index 093355d11d5..aadb8c55c1f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "fd1c7836-4d84-4e24-b6aa-23188688cc54" +} +Invoke-MgSubscribeCommunicationCallToTone -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md index 093355d11d5..5a91ceaee61 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" +} +Invoke-MgUnmuteCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md index 093355d11d5..c8bd36ba340 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md @@ -1,18 +1,102 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + EndpointType = "default" + Identity = @{ + User = @{ + Id = "550fae72-d251-43ec-868c-373732c2704f" + DisplayName = "Heidi Steen" + } + } + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + EndpointType = "default" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "550fae72-d251-43ec-868c-373732c2704f" + DisplayName = "Heidi Steen" + } + } + ReplacesCallId = "e5d39592-99bd-4db8-bca8-30fb894ec51d" + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + EndpointType = "default" + Identity = @{ + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + LanguageId = "languageId-value" + Region = "region-value" + } + ClientContext = "9e90d1c1-f61e-43e7-9f75-d420159aae08" +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + EndpointType = "default" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + LanguageId = "en-us" + Region = "amer" + ReplacesCallId = "e5d39592-99bd-4db8-bca8-30fb894ec51d" + } + ClientContext = "9e90d1c1-f61e-43e7-9f75-d420159aae08" +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + EndpointType = "default" + Identity = @{ + User = @{ + Id = "550fae72-d251-43ec-868c-373732c2704f" + DisplayName = "Heidi Steen" + } + } + } + Transferee = @{ + Identity = @{ + User = @{ + Id = "751f6800-3180-414d-bd94-333364659951" + TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47" + } + } + ParticipantId = "909c6581-5130-43e9-88f3-fcb3582cde37" + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md index 093355d11d5..d74410803b0 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md @@ -1,18 +1,157 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Application = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Calling Bot" + Id = "2891555a-92ff-42e6-80fa-6e1300c6b5c6" + } + } + Region = $null + LanguageId = $null + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "John" + Id = "112f7296-5fa4-42ca-bae8-6a692b15d4b8" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } +} +New-MgCommunicationCall -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "John" + Id = "112f7296-5fa4-42ca-bae8-6a692b15d4b8" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + } +} +New-MgCommunicationCall -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + ApplicationInstance = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Calling Bot" + Id = "3d913abb-aec0-4964-8fa6-3c6850c4f278" + } + } + CountryCode = $null + EndpointType = $null + Region = $null + LanguageId = $null + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + ApplicationInstance = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Calling Bot" + Id = "3d913abb-aec0-4964-8fa6-3c6850c4f278" + } + } + CountryCode = $null + EndpointType = $null + Region = $null + LanguageId = $null + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md index 093355d11d5..84ae2f49d64 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + StartDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00") + EndDateTime = [System.DateTime]::Parse("2019-07-12T15:00:34.2464912-07:00") + Subject = "User Token Meeting" +} +# A UPN can also be used as -UserId. +New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md index 093355d11d5..a62e4a1a1c5 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCall -CallId $callId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md index 093355d11d5..4a0a1682d34 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md index 093355d11d5..eb3ac7a8811 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md index 093355d11d5..a89db177267 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Role = "viewer" +} +Rename-MgCommunicationCallScreenSharingRole -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md index 093355d11d5..6283875213c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CustomPrompt = @{ + "@odata.type" = "#microsoft.graph.mediaPrompt" + MediaInfo = @{ + "@odata.type" = "#microsoft.graph.mediaInfo" + Uri = "https://bot.contoso.com/onHold.wav" + } + } + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" +} +Start-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md index 093355d11d5..df4eb99af43 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" +} +Stop-MgCommunicationCallMediaProcessing -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md index 093355d11d5..b8ad615d7b9 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" +} +Stop-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md index 093355d11d5..94cf10981f6 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" + Status = "notRecording | recording | failed" +} +Update-MgCommunicationCallRecordingStatus -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md index 093355d11d5..15c0817218f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + LobbyBypassSettings = @{ + IsDialInBypassEnabled = $true + } +} +# A UPN can also be used as -UserId. +Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + StartDateTime = [System.DateTime]::Parse("2020-09-09T14:33:30.8546353-07:00") + EndDateTime = [System.DateTime]::Parse("2020-09-09T15:03:30.8566356-07:00") + Subject = "Patch Meeting Subject" +} +# A UPN can also be used as -UserId. +Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md index 093355d11d5..0696129bcd8 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CrossDeviceExperiences +# A UPN can also be used as -UserId. +Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md index 093355d11d5..15186e9f617 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -Filter "roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "principal" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -Filter " principalId eq '5bde3e51-d13b-4db1-9948-fe4b109d11a7'" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" +``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md index 093355d11d5..cb96aff118a 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentSchedule +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md index 093355d11d5..9ae202b0e9c 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 093355d11d5..0d0b43f6a1b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest +``` +###Example 5 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId +``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..69db8f23ee3 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -ExpandProperty "inheritsPermissionsFrom" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition +``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md index 093355d11d5..8ad6dec0d73 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilitySchedule +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md index 093355d11d5..d54f1e5c231 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 093355d11d5..796902f542a 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md index 093355d11d5..45e5d956f3f 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementEntitlementManagementRoleAssignment -Filter "appScopeId eq '/AccessPackageCatalog/4cee616b-fdf9-4890-9d10-955e0ccb12bc'" -ExpandProperty "principal" ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md index 093355d11d5..a536c89a47d 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementEntitlementManagementRoleDefinition ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md index 093355d11d5..8b149aac0ad 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" + RoleDefinitionId = "c2cf284d-6c41-4e6b-afac-4b80928c9034" + PrincipalId = "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + DirectoryScopeId = "/" +} +New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" + RoleDefinitionId = "fe930be7-5e62-47db-91af-98c3a49a38b1" + PrincipalId = "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + DirectoryScopeId = "/administrativeUnits/5d107bba-d8e2-4e13-b6ae-884be90e5d1a" +} +New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" + PrincipalId = "6b937a9d-c731-465b-a844-2d5b5368c161" + RoleDefinitionId = "9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" + DirectoryScopeId = "/661e1310-bd76-4795-89a7-8f3c8f855bfc" +} +New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 093355d11d5..ef85ddd0d4f 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,18 +1,41 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Action = "adminAssign" + Justification = "Assign Groups Admin to IT Helpdesk group" + RoleDefinitionId = "fdd7a751-b60b-444a-984c-02652fe8fa1c" + DirectoryScopeId = "/" + PrincipalId = "071cc716-8147-4397-a5ba-b2105951cc0b" + ScheduleInfo = @{ + StartDateTime = [System.DateTime]::Parse("2022-04-10T00:00:00Z") + Expiration = @{ + Type = "NoExpiration" + } + } +} +New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Action = "selfActivate" + PrincipalId = "071cc716-8147-4397-a5ba-b2105951cc0b" + RoleDefinitionId = "8424c6f0-a189-499e-bbd0-26c1753c96d4" + DirectoryScopeId = "/" + Justification = "I need access to the Attribute Administrator role to manage attributes to be assigned to restricted AUs" + ScheduleInfo = @{ + StartDateTime = [System.DateTime]::Parse("2022-04-14T00:00:00.000Z") + Expiration = @{ + Type = "AfterDuration" + Duration = "PT5H" + } + } + TicketInfo = @{ + TicketNumber = "CONTOSO:Normal-67890" + TicketSystem = "MS Project" + } +} +New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..55c4c00a7d1 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Description = "Update basic properties of application registrations" + DisplayName = "Application Registration Support Administrator" + RolePermissions = @( + @{ + AllowedResourceActions = @( + "microsoft.directory/applications/basic/read" + ) + } + ) + IsEnabled = $true +} +New-MgRoleManagementDirectoryRoleDefinition -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 093355d11d5..a42a9f26c48 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Action = "adminAssign" + Justification = "Assign Attribute Assignment Admin eligibility to restricted user" + RoleDefinitionId = "8424c6f0-a189-499e-bbd0-26c1753c96d4" + DirectoryScopeId = "/" + PrincipalId = "071cc716-8147-4397-a5ba-b2105951cc0b" + ScheduleInfo = @{ + StartDateTime = [System.DateTime]::Parse("2022-04-10T00:00:00Z") + Expiration = @{ + Type = "afterDateTime" + EndDateTime = [System.DateTime]::Parse("2024-04-10T00:00:00Z") + } + } +} +New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Action = "adminRemove" + RoleDefinitionId = "8424c6f0-a189-499e-bbd0-26c1753c96d4" + DirectoryScopeId = "/" + PrincipalId = "071cc716-8147-4397-a5ba-b2105951cc0b" +} +New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md index 093355d11d5..d043b78d47e 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + PrincipalId = "679a9213-c497-48a4-830a-8d3d25d94ddc" + RoleDefinitionId = "ae79f266-94d4-4dab-b730-feca7e132178" + AppScopeId = "/AccessPackageCatalog/beedadfe-01d5-4025-910b-84abb9369997" +} +New-MgRoleManagementEntitlementManagementRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md index 093355d11d5..1e3705656ed 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..8bb55d6585e 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 093355d11d5..89812bcc343 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 093355d11d5..781e41d879a 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` - -{{ Add description here }} - diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..0273b3e9892 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Description = "Update basic properties of application registrations" + DisplayName = "Application Registration Support Administrator" + RolePermissions = @( + @{ + AllowedResourceActions = @( + "microsoft.directory/applications/basic/read" + ) + } + ) +} +Update-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md index 093355d11d5..2a058ec69b4 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintConnector -PrintConnectorId $printConnectorId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintConnector ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md index 093355d11d5..371a148adfa 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintOperation -PrintOperationId $printOperationId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md index 093355d11d5..712614277fb 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinter -PrinterId $printerId -Property "id,displayName,capabilities" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinter -PrinterId $printerId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinter ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md index 093355d11d5..52d8b3e0ee7 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterConnector -PrinterId $printerId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md index 093355d11d5..a15f04a566a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterTaskTrigger -PrinterId $printerId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md index 093355d11d5..d188935a0ca 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintService -PrintServiceId $printServiceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintService ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md index 093355d11d5..b46fc800f1a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId -PrintServiceEndpointId $printServiceEndpointId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md index 093355d11d5..5cd4449b0ab 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShare -PrinterShareId $printerShareId -Property "id,displayName,capabilities" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShare -PrinterShareId $printerShareId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShare ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md index 093355d11d5..37ebe8644b8 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShareAllowedGroup -PrinterShareId $printerShareId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md index 093355d11d5..e275b9d0f4a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShareAllowedUser -PrinterShareId $printerShareId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md index 093355d11d5..26fe53cd54d 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinition ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md index 093355d11d5..6ddd4b30931 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md index 093355d11d5..628d442debc 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + Event = "jobStarted" + "Definition@odata.bind" = "https://graph.microsoft.com/v1.0/print/taskDefinitions/{taskDefinitionId}" +} +New-MgPrintPrinterTaskTrigger -PrinterId $printerId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md index 093355d11d5..66064c00098 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "ShareName" + AllowAllUsers = $false + "Printer@odata.bind" = "https://graph.microsoft.com/v1.0/print/printers/{printerId}" +} +New-MgPrintShare -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md index 093355d11d5..664ad32cb93 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/groups/{groupId}" +} +New-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md index 093355d11d5..70a21160639 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/users/{userId}" +} +New-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md index 093355d11d5..3450da2b9a9 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "Test TaskDefinitionName" + CreatedBy = @{ + DisplayName = "Requesting App Display Name" + } +} +New-MgPrintTaskDefinition -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md index 093355d11d5..2dfed546364 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintConnector -PrintConnectorId $printConnectorId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md index 093355d11d5..bed983190ec 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintPrinter -PrinterId $printerId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md index 093355d11d5..0b61069b06b 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md index 093355d11d5..14fce5c491d 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintShare -PrinterShareId $printerShareId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md index 093355d11d5..cf51695faf4 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md index 093355d11d5..b350f092d1b 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md index 093355d11d5..ca6d20afa8f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md index 093355d11d5..d5dcac3d49b 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Restore-MgPrintPrinterFactoryDefault -PrinterId $printerId ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md index 093355d11d5..7547d00bb37 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "ConnectorName" + FullyQualifiedDomainName = "CONNECTOR-MACHINE" + OperatingSystem = "Microsoft Windows 10 Enterprise Insider Preview | 10.0.19555" + AppVersion = "0.19.7338.23496" + Location = @{ + Latitude = 1.1 + Longitude = 2.2 + AltitudeInMeters = 3 + } +} +Update-MgPrintConnector -PrintConnectorId $printConnectorId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md index 093355d11d5..f348cc3933f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + Name = "PrinterName" + Location = @{ + Latitude = 1.1 + Longitude = 2.2 + AltitudeInMeters = 3 + } +} +Update-MgPrintPrinter -PrinterId $printerId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md index 093355d11d5..7095519c64d 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "PrinterShare Name" + "Printer@odata.bind" = "https://graph.microsoft.com/v1.0/print/printers/{printerId}" + AllowAllUsers = $false +} +Update-MgPrintShare -PrinterShareId $printerShareId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md index 093355d11d5..39fa0bdd4c2 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "Test TaskDefinitionName" + CreatedBy = @{ + DisplayName = "Requesting App Display Name" + } +} +Update-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md index 093355d11d5..378ebf36936 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + Status = @{ + State = "completed" + Description = "completed" + } +} +Update-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md index 093355d11d5..404e429fb80 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId -ExpandProperty "issues" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview -ExpandProperty "issues" +``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md index 093355d11d5..d2808aa48e7 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementIssue -ServiceHealthIssueId $serviceHealthIssueId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementIssue ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md index 093355d11d5..b02cb45fb4a 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessage -ServiceUpdateMessageId $serviceUpdateMessageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessage ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md index 093355d11d5..a81a00e76fe 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md index 093355d11d5..69c9f0ac378 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md index 093355d11d5..77522687309 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md index 093355d11d5..ee86cb610bc 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgArchiveServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md index 093355d11d5..b72e7a92c42 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgFavoriteServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md index 093355d11d5..1c790ad31d0 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgMarkServiceAnnouncementMessageRead -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md index 093355d11d5..25e955fc419 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgMarkServiceAnnouncementMessageUnread -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md index 093355d11d5..241766e8312 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Invoke-MgReportServiceAnnouncementIssueIncident -ServiceHealthIssueId $serviceHealthIssueId ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md index 093355d11d5..53ae92eff05 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgUnarchiveServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md index 093355d11d5..605aad82292 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgUnfavoriteServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md index 093355d11d5..1e5490ae722 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + GroupIds = @( + "f448435d-3ca7-4073-8152-a1fd73c0fd09" + "bd7c6263-4dd5-4ae8-8c96-556e1c0bece6" + "93670da6-d731-4366-94b5-abed40b6016b" + "f5484ab1-4d4d-41ec-a9b8-754b3957bfc7" + "c9103f26-f3cf-4004-a611-2a14e81b8f79" + ) +} +Confirm-MgDirectoryObjectMemberGroup -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md index 093355d11d5..dcf9a0745c4 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +Get-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md index 093355d11d5..c204dc513a9 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +Get-MgDirectoryObjectAvailableExtensionProperty ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md index 093355d11d5..94c31283d87 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + Ids = @( + "84b80893-8749-40a3-97b7-68513b600544" + "5d6059b6-368d-45f8-91e1-8e07d485f1d0" + "0b944de3-e0fc-4774-a49a-b135213725ef" + "b75a5ab2-fe55-4463-bd31-d21ad555c6e0" + ) + Types = @( + "user" + "group" + "device" + ) +} +Get-MgDirectoryObjectById -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md index 093355d11d5..86841818f79 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + SecurityEnabledOnly = $false +} +Get-MgDirectoryObjectMemberGroup -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md index 093355d11d5..8efe89c7b65 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + SecurityEnabledOnly = $true +} +Get-MgDirectoryObjectMemberObject -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md index 093355d11d5..4e4325414e4 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +Remove-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md index 093355d11d5..49f3bbd38d8 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + EntityType = "Group" + DisplayName = "Myprefix_test_mysuffix" + MailNickname = "Myprefix_test_mysuffix" + OnBehalfOfUserId = "onBehalfOfUserId-value" +} +Test-MgDirectoryObjectProperty -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md index 093355d11d5..7af04209a44 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClass -EducationClassId $educationClassId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClass ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md index 093355d11d5..64211a4957f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId -ExpandProperty "resources" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md index 093355d11d5..b81531504ab 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md index 093355d11d5..f93bd51ce10 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IVSFtBcXz0jxjIEihcR91dS3R7i8Z2IMtxIn9rKbK9Jvurj6jCH-lDbSNatdesrK0PJ5zpZ_-i8HyqkdtLhWD9tewXVArIqQWJA7gJz8z4paG2q0MU9rixrQOTe7WIXikPiBTUPilHuUW-o1k7cvqke3K7llJbU3G7z_O7WGoVGE.l8-2OcBi9ZWAhwhPnXvJ-kyyk8GNb6-H4o6qofP5YBY" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -OutFile $outFileId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Top 3 +``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md index 093355d11d5..cc63e5955f7 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDefault -EducationClassId $educationClassId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md index 093355d11d5..6f1a395b8bd 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxROmLjac48n-iXm5j6n5aQwlsnC-2OvL3lI0Z8M4klERNmJQjnBn7MHqwXZ6L8GlI3VPnya3E-p1bisiZX97jLvQUAopseIYhvnD6v7fiYrk.fVsHempT6X2CiBh6aN9Ex5nVJ71adKdcf-mdke8OHKs" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IdHoweKQs1czM4Ry1LVsNqwIFXftTcRHvgSCbcszvbJHEWDCO3QO7K7zwCM8DdXNepZOa1gqldecjIUM0NFRbGQoQ5yR6RmGnMgtko8TDMOyMH_yg1my82PTXA_t4Nj-DhMDZWvuNTd_lbLeTngc7mIJPMCR2gHN9CSKsW_kw850.UM9tUqwOu5Ln1pnxaP6KdMmfJHszGqY3EKPlQkOiyGs" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2 ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md index 093355d11d5..bc48f59f18a 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId +``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md index 093355d11d5..e7dd0bb7701 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentRubric -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md index 093355d11d5..1b53f6bd99b 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSetting -EducationClassId $educationClassId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md index 093355d11d5..1c0841e65f6 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -ExpandProperty "*" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -ExpandProperty "outcomes" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId +``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md index 093355d11d5..267afe7d0a5 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md index 093355d11d5..bfa1f24d584 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId +``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md index 093355d11d5..3be7b3ad7dc 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionSubmittedResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md index 093355d11d5..f9dbdc6b26d 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassDelta ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md index 093355d11d5..ec8a6cb6784 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassMember -EducationClassId $educationClassId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md index 093355d11d5..db709d1536b 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassSchool -EducationClassId $educationClassId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md index 093355d11d5..8f914eef1b5 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassTeacher -EducationClassId $educationClassId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md index 093355d11d5..8b135b6c463 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeAssignment ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md index 093355d11d5..ec3fd694dd9 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeClass ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md index 093355d11d5..fe11d4f9b94 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeRubric -EducationRubricId $educationRubricId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationMeRubric ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md index 093355d11d5..b134c653003 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeSchool ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md index 093355d11d5..630a6bfe850 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchool -EducationSchoolId $educationSchoolId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationSchool ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md index 093355d11d5..b638053c92b 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolClass -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md index 093355d11d5..ae748a5b1ac 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolDelta ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md index 093355d11d5..d60a920e7c4 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolUser -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md index 093355d11d5..b4f1cb286c7 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUser -EducationUserId $educationUserId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationUser ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md index 093355d11d5..e60d9f97bb7 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUserAssignment -EducationUserId $educationUserId -ExpandProperty "submissions" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationUserAssignment -EducationUserId $educationUserId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md index 093355d11d5..7882c512fae 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUserDelta ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md index 093355d11d5..4445eb2f79e 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUserTaughtClass -EducationUserId $educationUserId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Get-MgEducationUserTaughtClass -EducationUserId $educationUserId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md index 093355d11d5..aed32b709bc 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md index 093355d11d5..51b992b6910 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgReturnEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md index 093355d11d5..568ea1c886d 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgUnsubmitEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClass.md b/src/Education/Education/examples/v1.0/New-MgEducationClass.md index 093355d11d5..d46ccb538dc 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClass.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationClass" + DisplayName = "String" + MailNickname = "String" + Description = "String" + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + ClassCode = "String" + ExternalName = "String" + ExternalId = "String" + ExternalSource = "String" + ExternalSourceDetail = "String" + Grade = "String" + Term = @{ + "@odata.type" = "microsoft.graph.educationTerm" + } +} +New-MgEducationClass -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md index 093355d11d5..6c51c8be273 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DueDateTime = [System.DateTime]::Parse("2021-09-07T00:00:00Z") + DisplayName = "Reading test 09.03 #4" + Instructions = @{ + ContentType = "text" + Content = "Read chapter 4" + } + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentGradeType" + MaxPoints = + } + AssignTo = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentGradeType" + } + Status = "draft" + AllowStudentsToAddResourcesToSubmission = $true +} +New-MgEducationClassAssignment -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md index 093355d11d5..dd67f439257 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Quizzes" +} +New-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md index 093355d11d5..f126dc32273 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" +} +New-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" +} +New-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md index 093355d11d5..752fd34ad6a 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md @@ -1,18 +1,78 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationExcelResource" + DisplayName = "Graph Doc pages.xlsx" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RIR7PSV4JJSFJHKNPUVUWGPW4O2" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + DisplayName = "article.pdf" + "@odata.type" = "#microsoft.graph.educationFileResource" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + DisplayName = "Where the Wonders of Learning Never Cease | Wonderopolis" + Link = "https://wonderopolis.org/" + ThumbnailPreviewUrl = $null + "@odata.type" = "#microsoft.graph.educationLinkResource" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationMediaResource" + DisplayName = "homework example.PNG" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RMUWOKAGSJZ6BHINJVKNMOOJABF" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationPowerPointResource" + DisplayName = "state diagram.pptx" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RN327OXRN6EVFE2Q5FRJZTN5EOJ" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationWordResource" + DisplayName = "Issues and PR in guthub.docx" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!DPA6q59Tw0mtgmyXRUmrQRqBZTesG-lMkl1cBmvvMeUEWrOk89nKRpUEr4ZhNYBc/items/016XPCQEELISJB7NVNVBAK7V4UIF6Q27U2" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md index 093355d11d5..233f6349b61 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md @@ -1,18 +1,72 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + "@odata.type" = "#microsoft.graph.educationExcelResource" + DisplayName = "userAgeGroup QueryParameter Test.xlsx" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RONPUDM2CZKNRF3TGHYUM7Z64WE" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + DisplayName = "_FTP_EDC-61424749-250820211136.pdf" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RL45XVPGDBRW5FLDR62Z5TCMGG3" + "@odata.type" = "#microsoft.graph.educationFileResource" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + DisplayName = "Wikipedia" + Link = "https://en.wikipedia.org/wiki/Main_Page" + "@odata.type" = "#microsoft.graph.educationLinkResource" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + DisplayName = "category.jpg" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RK2WLKUUBAA4ZBKXNBL6QFC2TKG" + "@odata.type" = "#microsoft.graph.educationMediaResource" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + "@odata.type" = "#microsoft.graph.educationPowerPointResource" + DisplayName = "state diagram.pptx" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RN3MHWWM7BNXJD2UD5OMRFEDKN2" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + "@odata.type" = "microsoft.graph.educationWordResource" + DisplayName = "Report.docx" + FileUrl = "https://graph.microsoft.com/v1.0/drives/b!DPA6q59Tw0mtgmyXRUmrQRqBZTesG-lMkl1cBmvvMeUEWrOk89nKRpUEr4ZhNYBc/items/016XPCQEELISJB7NVNVBAK7V4UIF6Q27U2" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md index 093355d11d5..16f084157ca 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/13015" +} +New-MgEducationClassMemberByRef -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md index 093355d11d5..96745bf2b1a 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/14011" +} +New-MgEducationClassTeacherByRef -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md index 093355d11d5..4f1da5b2e1e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md @@ -1,18 +1,153 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Example Credit Rubric" + Description = @{ + Content = "This is an example of a credit rubric (no points)" + ContentType = "text" + } + Levels = @( + @{ + DisplayName = "Good" + Description = @{ + Content = "" + ContentType = "text" + } + } + @{ + DisplayName = "Poor" + Description = @{ + Content = "" + ContentType = "text" + } + } + ) + Qualities = @( + @{ + Description = @{ + Content = "Argument" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay's argument is persuasive." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay's argument does not make sense." + ContentType = "text" + } + } + ) + } + @{ + Description = @{ + Content = "Spelling and Grammar" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay uses proper spelling and grammar with few or no errors." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay has numerous errors in spelling and/or grammar." + ContentType = "text" + } + } + ) + } + ) +} +New-MgEducationMeRubric -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Example Points Rubric" + Description = @{ + Content = "This is an example of a rubric with points" + ContentType = "text" + } + Levels = @( + @{ + DisplayName = "Good" + Description = @{ + Content = "" + ContentType = "text" + } + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGradeType" + MaxPoints = + } + } + @{ + DisplayName = "Poor" + Description = @{ + Content = "" + ContentType = "text" + } + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGradeType" + MaxPoints = + } + } + ) + Qualities = @( + @{ + Description = @{ + Content = "Argument" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay's argument is persuasive." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay's argument does not make sense." + ContentType = "text" + } + } + ) + Weight = 50.0 + } + @{ + Description = @{ + Content = "Spelling and Grammar" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay uses proper spelling and grammar with few or no errors." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay has numerous errors in spelling and/or grammar." + ContentType = "text" + } + } + ) + Weight = 50.0 + } + ) + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGradeType" + } +} +New-MgEducationMeRubric -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md index 093355d11d5..527a81056c4 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationSchool" + DisplayName = "String" + Description = "String" + ExternalSource = "String" + ExternalSourceDetail = "String" + PrincipalEmail = "String" + PrincipalName = "String" + ExternalPrincipalId = "String" + LowestGrade = "String" + HighestGrade = "String" + SchoolNumber = "String" + ExternalId = "String" + Phone = "String" + Fax = "String" + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + Address = @{ + "@odata.type" = "microsoft.graph.physicalAddress" + } +} +New-MgEducationSchool -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md index 093355d11d5..8e4cbd5815f 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/11006" +} +New-MgEducationSchoolClassByRef -EducationSchoolId $educationSchoolId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md index 093355d11d5..c1387106586 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/14008" +} +New-MgEducationSchoolUserByRef -EducationSchoolId $educationSchoolId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/New-MgEducationUser.md b/src/Education/Education/examples/v1.0/New-MgEducationUser.md index 093355d11d5..b9e5d701ec6 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationUser.md @@ -1,18 +1,67 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationUser" + PrimaryRole = "String" + MiddleName = "String" + ExternalSource = "String" + ExternalSourceDetail = "String" + ResidenceAddress = @{ + "@odata.type" = "microsoft.graph.physicalAddress" + } + MailingAddress = @{ + "@odata.type" = "microsoft.graph.physicalAddress" + } + Student = @{ + "@odata.type" = "microsoft.graph.educationStudent" + } + Teacher = @{ + "@odata.type" = "microsoft.graph.educationTeacher" + } + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + AccountEnabled = "Boolean" + AssignedLicenses = @( + @{ + "@odata.type" = "microsoft.graph.assignedLicense" + } + ) + AssignedPlans = @( + @{ + "@odata.type" = "microsoft.graph.assignedPlan" + } + ) + BusinessPhones = @( + "String" + ) + Department = "String" + DisplayName = "String" + GivenName = "String" + Mail = "String" + MailNickname = "String" + MobilePhone = "String" + PasswordPolicies = "String" + PasswordProfile = @{ + "@odata.type" = "microsoft.graph.passwordProfile" + } + OfficeLocation = "String" + PreferredLanguage = "String" + ProvisionedPlans = @( + @{ + "@odata.type" = "microsoft.graph.provisionedPlan" + } + ) + RefreshTokensValidFromDateTime = [System.DateTime]::Parse("String (timestamp)") + ShowInAddressList = "Boolean" + Surname = "String" + UsageLocation = "String" + UserPrincipalName = "String" + UserType = "String" + OnPremisesInfo = @{ + "@odata.type" = "microsoft.graph.educationOnPremisesInfo" + } +} +New-MgEducationUser -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md index 093355d11d5..5608c5b4727 100644 --- a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Publish-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md index 093355d11d5..a394df2d598 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClass -EducationClassId $educationClassId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md index 093355d11d5..541af643858 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md index 093355d11d5..e96614a85b7 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md index 093355d11d5..ca77157721f 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationCategoryId $educationCategoryId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md index 093355d11d5..a20d42d0520 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md index 093355d11d5..1c0a68851d9 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md index 093355d11d5..36d01782e56 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md index 093355d11d5..0c8be93183e 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationMeRubric -EducationRubricId $educationRubricId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md index 093355d11d5..3b1c41bff92 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationSchool -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md index 093355d11d5..1019b246d10 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationUser -EducationUserId $educationUserId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md index 093355d11d5..dae2116dabd 100644 --- a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/me/rubrics/ceb3863e-6912-4ea9-ac41-3c2bb7b6672d" +} +Set-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md index 093355d11d5..a4c5c1baa94 100644 --- a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Submit-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md index 093355d11d5..ef8e208021e 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + Description = "History - World History 1" + DisplayName = "World History Level 1" +} +Update-MgEducationClass -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md index 093355d11d5..0bccad3e4d8 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Reading and review test 09.03 #5" + Instructions = @{ + ContentType = "text" + Content = "Read chapter 5 and write your review" + } + DueDateTime = [System.DateTime]::Parse("2021-09-10T00:00:00Z") + AddedStudentAction = "none" +} +Update-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md index 093355d11d5..0e6e0bf4c0a 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + AddedStudentAction = "assignIfOpen" + NotificationChannelUrl = "https://graph.microsoft.com/beta/teams('acdefc6b-2dc6-4e71-b1e9-6d9810ab1793')/channels('3da03fc4-8eac-4459-84fb-1422dc01f65e')" +} +Update-MgEducationClassAssignmentDefault -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md index 093355d11d5..83521834a40 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + SubmissionAnimationDisabled = $true +} +Update-MgEducationClassAssignmentSetting -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md index 093355d11d5..8428822867f 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationFeedbackOutcome" +} +Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationRubricOutcome" + RubricQualityFeedback = @( + ) + RubricQualitySelectedLevels = @( + ) +} +Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationPointsOutcome" + Points = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGrade" + Points = + } +} +Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md index 093355d11d5..60b1a7342fd 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Example Credit Rubric after display name patch" +} +Update-MgEducationMeRubric -EducationRubricId $educationRubricId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md index 093355d11d5..880e9a84990 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Fabrikam Arts High School" + Description = "Magnate school for the arts. Los Angeles School District" +} +Update-MgEducationSchool -EducationSchoolId $educationSchoolId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md index 093355d11d5..232b65a7856 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Rogelio Cazares" + GivenName = "Rogelio" + MiddleName = "Fernando" + Surname = "Cazares" +} +Update-MgEducationUser -EducationUserId $educationUserId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgDrive.md b/src/Files/Files/examples/v1.0/Get-MgDrive.md index 093355d11d5..fab4aef6cab 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgDrive.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgDrive -DriveId $driveId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md index 093355d11d5..be270ac3c54 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md +++ b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgDriveItemChild -DriveId $driveId -DriveItemId $driveItemId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md index 093355d11d5..3e9c9f8f1df 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgGroupDefaultDrive -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md index 093355d11d5..b7d1650fca3 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgGroupDrive -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md index 093355d11d5..9dece84510a 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId -ExpandProperty "children" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Files +Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md index 093355d11d5..e9fbb0965a5 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgShareSharedDriveItemSharedDriveItem -SharedDriveItemId $sharedDriveItemId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md index 093355d11d5..498ad5fb2fe 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgUserDefaultDrive -UserId $userId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Files +# A UPN can also be used as -UserId. +Get-MgUserDefaultDrive -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md index 093355d11d5..bb564bfecb9 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +# A UPN can also be used as -UserId. +Get-MgUserDrive -UserId $userId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Files +Get-MgUserDrive -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md index 093355d11d5..658087df1d4 100644 --- a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md +++ b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +$params = @{ + Recipients = @( + @{ + Email = "john@contoso.com" + } + @{ + Email = "ryan@external.com" + } + ) + Roles = @( + "read" + ) +} +Grant-MgSharePermission -SharedDriveItemId $sharedDriveItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md index 093355d11d5..85606061111 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +$params = @{ + Comment = "Updating the latest guidelines" +} +Invoke-MgCheckinDriveItem -DriveId $driveId -DriveItemId $driveItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md index 093355d11d5..0dc67e4adae 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Invoke-MgCheckoutDriveItem -DriveId $driveId -DriveItemId $driveItemId ``` - -{{ Add description here }} - diff --git a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md index 093355d11d5..d029216194e 100644 --- a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md +++ b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Restore-MgDriveItemVersion -DriveId $driveId -DriveItemId $driveItemId -DriveItemVersionId $driveItemVersionId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md index 093355d11d5..34527356592 100644 --- a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Add-MgGroupFavorite -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md index 093355d11d5..7644fd65823 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupAcceptedSender -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md index 093355d11d5..6e67784d7c9 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversation -GroupId $groupId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md index 093355d11d5..9aee00cc81c 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md index 093355d11d5..d812b8ecced 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupDelta ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md index 093355d11d5..e7c7119b5a8 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +Get-MgGroupLifecyclePolicy ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md index 093355d11d5..d82b10d4a09 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupLifecyclePolicyByGroup -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md index 093355d11d5..93dd64f3737 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupMemberOf -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md index 093355d11d5..2583ff8356f 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupPermissionGrant -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md index 093355d11d5..213ebf358ff 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupPhoto -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md index 093355d11d5..24c1c1e0f40 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupRejectedSender -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md index 093355d11d5..e94dc275224 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Groups +Get-MgGroupThread -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md index 093355d11d5..cd071dbc071 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md index 093355d11d5..452a7b9cc6c 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThreadPostAttachment -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md index 093355d11d5..985a15bdb9c 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md index 093355d11d5..3999affc1ce 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupTransitiveMember -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md index 093355d11d5..4654953a4b5 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupTransitiveMemberOf -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md index 093355d11d5..c457653018c 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Comment = "comment-value" + ToRecipients = @( + @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ) +} +Invoke-MgForwardGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md index 093355d11d5..18ddd979530 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Invoke-MgGraphGroup -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md index 093355d11d5..dcd124925b9 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Invoke-MgRenewGroup -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md index 093355d11d5..0513ce5b321 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md @@ -1,18 +1,79 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "" + Content = "content-value" + } + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "text" + Content = "Which quarter does that file cover? See my attachment." + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "Another file as attachment" + ContentBytes = "VGhpcyBpcyBhIGZpbGUgdG8gYmUgYXR0YWNoZWQu" + } + ) + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "text" + Content = "I attached an event." + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.itemAttachment" + Name = "Holiday event" + Item = @{ + "@odata.type" = "microsoft.graph.event" + Subject = "Discuss gifts for children" + } + } + ) + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "text" + Content = "I attached a reference to a file on OneDrive." + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.referenceAttachment" + Name = "Personal pictures" + SourceUrl = "https://contoso.com/personal/mario_contoso_net/Documents/Pics" + ProviderType = "oneDriveConsumer" + Permission = "Edit" + IsFolder = "True" + } + ) + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params +``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md index 093355d11d5..d96389b7728 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md @@ -1,18 +1,57 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "" + Content = "content-value" + } + ReceivedDateTime = [System.DateTime]::Parse("datetime-value") + HasAttachments = $true + From = @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + Sender = @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ConversationThreadId = "conversationThreadId-value" + NewParticipants = @( + @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ) + ConversationId = "conversationId-value" + CreatedDateTime = [System.DateTime]::Parse("datetime-value") + LastModifiedDateTime = [System.DateTime]::Parse("datetime-value") + ChangeKey = "changeKey-value" + Categories = @( + "categories-value" + ) + Id = "id-value" + InReplyTo = @{ + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + LastModifiedDateTime = [System.DateTime]::Parse("datetime-value") + Name = "name-value" + ContentType = "contentType-value" + Size = 99 + IsInline = $true + Id = "id-value" + } + ) + } +} +Invoke-MgReplyGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md index 093355d11d5..2e460c73281 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Invoke-MgSubscribeGroupByMail -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md index 093355d11d5..1896d7c37b4 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/users/alexd@contoso.com" +} +New-MgGroupAcceptedSenderByRef -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md index 093355d11d5..8057629ac64 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "Take your wellness days and rest" + Threads = @( + @{ + Posts = @( + @{ + Body = @{ + ContentType = "html" + Content = "Contoso cares about you: Rest and Recharge" + } + NewParticipants = @( + @{ + EmailAddress = @{ + Name = "Adele Vance" + Address = "AdeleV@contoso.onmicrosoft.com" + } + } + ) + } + ) + } + ) +} +New-MgGroupConversation -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md index 093355d11d5..af7bd80bed2 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "Take your wellness days and rest" + Posts = @( + @{ + Body = @{ + ContentType = "html" + Content = "Waiting for the summer holidays." + } + } + ) +} +New-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md index 093355d11d5..1c5a0fe630a 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + GroupLifetimeInDays = 100 + ManagedGroupTypes = "Selected" + AlternateNotificationEmails = "admin@contoso.com" +} +New-MgGroupLifecyclePolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md index 093355d11d5..efc0141f3ff 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" +} +New-MgGroupMemberByRef -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md index 093355d11d5..c5af7343d75 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/users/alexd@contoso.com" +} +New-MgGroupRejectedSenderByRef -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md index 093355d11d5..b1355915b01 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "New Conversation Thread Topic" + Posts = @( + @{ + Body = @{ + ContentType = "html" + Content = "this is body content" + } + NewParticipants = @( + @{ + EmailAddress = @{ + Name = "Alex Darrow" + Address = "alexd@contoso.com" + } + } + ) + } + ) +} +New-MgGroupThread -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md index 093355d11d5..abc66c2632c 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md index 093355d11d5..07f74040a53 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupFavorite -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md index 093355d11d5..b450c415ef8 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md index 093355d11d5..97fe79427ff 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupMemberByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md index 093355d11d5..0913c4c21a6 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupOwnerByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md index 093355d11d5..8aef64283b4 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md index 093355d11d5..0ad2d1f4817 100644 --- a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md +++ b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Reset-MgGroupUnseenCount -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md index 093355d11d5..617f34fb048 100644 --- a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md +++ b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md @@ -1,18 +1,37 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + AddLicenses = @( + @{ + DisabledPlans = @( + "113feb6c-3fe4-4440-bddc-54d774bf0318" + "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f" + ) + SkuId = "b05e124f-c7cc-45a0-a6aa-8cf78c946968" + } + @{ + DisabledPlans = @( + "a413a9ff-720c-4822-98ef-2f37c2a21f4c" + ) + SkuId = "c7df2760-2c81-4ef7-b578-5b5392b571df" + } + ) + RemoveLicenses = @( + ) +} +Set-MgGroupLicense -GroupId $groupId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Groups +$params = @{ + AddLicenses = @( + ) + RemoveLicenses = @( + "c7df2760-2c81-4ef7-b578-5b5392b571df" + "b05e124f-c7cc-45a0-a6aa-8cf78c946968" + ) +} +Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md index 093355d11d5..85f23366fa5 100644 --- a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md +++ b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + DisplayName = "Myprefix_test_mysuffix" + MailNickname = "Myprefix_test_mysuffix" + OnBehalfOfUserId = "onBehalfOfUserId-value" +} +Test-MgGroupProperty -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md index 093355d11d5..569d2b8d2ad 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + GroupLifetimeInDays = 180 + ManagedGroupTypes = "Selected" + AlternateNotificationEmails = "admin@contoso.com" +} +Update-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md index 093355d11d5..f10d30c1ceb 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + OriginalStartTimeZone = "originalStartTimeZone-value" + OriginalEndTimeZone = "originalEndTimeZone-value" + ICalUId = "iCalUId-value" + ReminderMinutesBeforeStart = + IsReminderOn = $true +} +Update-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md index 093355d11d5..82de3695b66 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.type" = "Microsoft.OutlookServices.OpenTypeExtension" + ExtensionName = "Com.Contoso.Estimate" + CompanyName = "Contoso" + ExpirationDate = "2016-07-30T11:00:00.000Z" + DealValue = + TopPicks = @( + "Employees only" + "Add spouse or guest" + "Add family" + ) +} +Update-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md index 093355d11d5..1ee7d030d42 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Confirm-MgDomain -DomainId $domainId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md index 093355d11d5..1c8540f1a83 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactDelta ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md index 093355d11d5..db6e6eb6974 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactDirectReport -OrgContactId $orgContactId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md index 093355d11d5..09e50fd660d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactManager -OrgContactId $orgContactId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md index 093355d11d5..9eab4f752b1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactMemberOf -OrgContactId $orgContactId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md index 093355d11d5..f44af50f390 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactTransitiveMemberOf -OrgContactId $orgContactId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md index 093355d11d5..4b0afd387b3 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContract -ContractId $contractId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContract ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md index 093355d11d5..4dad12cbcf6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Search "displayName:Android" -CountVariable CountVar -ConsistencyLevel eventual +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -DeviceId $deviceId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -DeviceId $deviceId -Property "id,extensionAttributes" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Filter "extensionAttributes/extensionAttribute1 eq 'BYOD-Device'" -CountVariable CountVar -ConsistencyLevel eventual +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Property "id,extensionAttributes" +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Filter "startswith(displayName, 'a')" -CountVariable CountVar -Top 1 -Sort "displayName" -ConsistencyLevel eventual +``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md index 093355d11d5..c78a81e4583 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceMemberOf -DeviceId $deviceId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md index 093355d11d5..c53147386bf 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceRegisteredOwner -DeviceId $deviceId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md index 093355d11d5..5d35fa550c0 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceRegisteredUser -DeviceId $deviceId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md index 093355d11d5..f766521fc61 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceTransitiveMemberOf -DeviceId $deviceId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md index 093355d11d5..6f346c1326d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAdministrativeUnit ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md index 093355d11d5..5dba57583dd 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAdministrativeUnitMember -AdministrativeUnitId $administrativeUnitId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md index 093355d11d5..fdbeab6351d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md index 093355d11d5..55c08516566 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md index 093355d11d5..e80ffb5a66e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId -Filter "domains/any(x: x/id eq 'contoso.com')" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md index 093355d11d5..ce43e0f9ae4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleDelta ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md index 093355d11d5..056b76dcd36 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleScopedMember -DirectoryRoleId $directoryRoleId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md index 093355d11d5..afc76cfb24a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleTemplate -DirectoryRoleTemplateId $directoryRoleTemplateId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleTemplate ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md index 093355d11d5..d1be1ec8ed5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDomainNameReference -DomainId $domainId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md index 093355d11d5..252a57b52cd 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDomainServiceConfigurationRecord -DomainId $domainId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md index 093355d11d5..db17d92164a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDomainVerificationDnsRecord -DomainId $domainId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md index 093355d11d5..888da5ceaa6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganization -OrganizationId $organizationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganization ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md index 093355d11d5..f7f4bb2c131 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBranding -OrganizationId $organizationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBranding -OrganizationId $organizationId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBranding -OrganizationId $organizationId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md index 093355d11d5..ee2bc998015 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md index 093355d11d5..78dedf8b4ed 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md index 093355d11d5..af2ca623e9c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisableUserAccounts = $true +} +Invoke-MgForceDomainDelete -DomainId $domainId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md index 093355d11d5..0227faad172 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AccountEnabled = $false + AlternativeSecurityIds = @( + @{ + Type = 2 + Key = [System.Text.Encoding]::ASCII.GetBytes("base64Y3YxN2E1MWFlYw==") + } + ) + DeviceId = "4c299165-6e8f-4b45-a5ba-c5d250a707ff" + DisplayName = "Test device" + OperatingSystem = "linux" + OperatingSystemVersion = "1" +} +New-MgDevice -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md index 093355d11d5..add6d5db9fb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" +} +New-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md new file mode 100644 index 00000000000..c4118303d6e --- /dev/null +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md @@ -0,0 +1,8 @@ +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" +} +New-MgDeviceRegisteredUserByRef -DeviceId $deviceId -BodyParameter $params +``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md index 093355d11d5..d6ecde862be 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisplayName = "Seattle District Technical Schools" + Description = "Seattle district technical schools administration" + Visibility = "HiddenMembership" +} +New-MgDirectoryAdministrativeUnit -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md index 093355d11d5..105f638fef8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/groups/{id}" +} +New-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md index 093355d11d5..fe8f7007fe1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + RoleId = "roleId-value" + RoleMemberInfo = @{ + Id = "id-value" + } +} +New-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md index 093355d11d5..862b282661f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.type" = "microsoft.graph.samlOrWsFedExternalDomainFederation" + IssuerUri = "https://contoso.com/issuerUri" + DisplayName = "contoso display name" + MetadataExchangeUri = "https://contoso.com/metadataExchangeUri" + PassiveSignInUri = "https://contoso.com/signin" + PreferredAuthenticationProtocol = "wsFed" + Domains = @( + @{ + "@odata.type" = "microsoft.graph.externalDomainName" + Id = "contoso.com" + } + ) + SigningCertificate = "MIIDADCCAeigAwIBAgIQEX41y8r6" +} +New-MgDirectoryFederationConfiguration -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md index 093355d11d5..ee0a63f81ba 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + RoleTemplateId = "fe930be7-5e62-47db-91af-98c3a49a38b1" +} +New-MgDirectoryRole -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md index 093355d11d5..db69cded91d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Id = "contoso.com" +} +New-MgDomain -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md index 093355d11d5..bb39518dfc2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + BackgroundColor = "#00000F" + Id = "fr-FR" + SignInPageText = " " +} +New-MgOrganizationBrandingLocalization -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md index 093355d11d5..15a20f3db1c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDevice -DeviceId $deviceId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md index 093355d11d5..c49a0e6a01b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md index 093355d11d5..f089771ce80 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md index 093355d11d5..aa0751b6ec7 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md index 093355d11d5..52537432b3f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md index 093355d11d5..4f7f08f2468 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md index 093355d11d5..08095e43324 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md index 093355d11d5..2c31e462dad 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryRoleMemberByRef -DirectoryRoleId $directoryRoleId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md index 093355d11d5..a969eae3d08 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDomain -DomainId $domainId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md index 093355d11d5..1c66b7edbf9 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md index 093355d11d5..c01fa812ef4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Restore-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md index 093355d11d5..9271187289f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ +} +Update-MgDevice -DeviceId $deviceId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AccountEnabled = $false +} +Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md index 093355d11d5..6074593d50a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisplayName = "Greater Seattle District Technical Schools" +} +Update-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md index 093355d11d5..bca90a06da5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + IsDefault = $true + SupportedServices = @( + "Email" + "OfficeCommunicationsOnline" + ) +} +Update-MgDomain -DomainId $domainId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md index 093355d11d5..a0be74a473a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + MarketingNotificationEmails = @( + "marketing@contoso.com" + ) + PrivacyProfile = @{ + ContactEmail = "alice@contoso.com" + StatementUrl = "https://contoso.com/privacyStatement" + } + SecurityComplianceNotificationMails = @( + "security@contoso.com" + ) + SecurityComplianceNotificationPhones = @( + "(123) 456-7890" + ) + TechnicalNotificationMails = @( + "tech@contoso.com" + ) +} +Update-MgOrganization -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md index 093355d11d5..31cdb393207 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + SignInPageText = "Default" + UsernameHintText = "DefaultHint" +} +Update-MgOrganizationBranding -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md index 093355d11d5..9140f41b6a9 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + BackgroundColor = "#00000F" + SignInPageText = "Welcome to Contoso France" +} +Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + SignInPageText = "Welcome to Contoso France." + UsernameHintText = " " +} +Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 093355d11d5..56d8a0e835e 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md index 093355d11d5..67e840de2ba 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackage ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md index 093355d11d5..d275618e370 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement -AccessPackageId $accessPackageId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md index 093355d11d5..3688d2a7122 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId -ApprovalStageId $approvalStageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md index 093355d11d5..51f3dda42dc 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignment ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md index 093355d11d5..14df80010c5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignmentPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md index 093355d11d5..775739e3bf8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAssignmentRequest ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md index 093355d11d5..41582dfbca3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementCatalog ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..b5cbe463678 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementConnectedOrganization ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md index 093355d11d5..193763c4990 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementSetting ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md index 093355d11d5..bb042016330 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -Filter "contains(scope/microsoft.graph.accessReviewQueryScope/query, './members')" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -Top 100 -Skip 0 +``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 093355d11d5..8b4685157f4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md index 093355d11d5..0e20a0b583c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 093355d11d5..51ef4f61e97 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 093355d11d5..3ad77ece2c7 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 093355d11d5..621b63f4bd2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 093355d11d5..02bca7f9354 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewHistoryDefinition -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewHistoryDefinition ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md index 093355d11d5..7908cbdfe75 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md index 093355d11d5..694a8c138ab 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId -Filter "userConsentRequests/any(u:u/status eq 'InProgress')" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest -Filter "userConsentRequests/any (u:u/status eq 'InProgress')" +``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md index 093355d11d5..3cb8c6a371f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId -Filter " (status eq 'Completed')" ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..013806de090 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" +``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md index 093355d11d5..3e657fc38f2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreementFile -AgreementId $agreementId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md index 093355d11d5..a2935072333 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +# A UPN can also be used as -UserId. +Get-MgUserAgreementAcceptance -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md index 093355d11d5..a99e291cf92 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md index 093355d11d5..7906af2cc19 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "All principals with access need continued access to the resource (Marketing Group) as all the principals are on the marketing team" + ResourceId = "a5c51e59-3fcd-4a37-87a1-835c0c21488a" +} +Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md index 093355d11d5..1df13792843 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "sales reps" + Description = "outside sales representatives" + IsHidden = $false + Catalog = @{ + Id = "66584aae-98bb-48cc-9458-7bee5d2a6577" + } +} +New-MgEntitlementManagementAccessPackage -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md index 093355d11d5..90fd07ac578 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md @@ -1,18 +1,155 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "policy for external access requests" + Description = "policy for users from connected organizations to request access, with two stages of approval." + AllowedTargetScope = "allConfiguredConnectedOrganizationUsers" + SpecificAllowedTargets = @( + ) + Expiration = @{ + Type = "noExpiration" + } + RequestorSettings = @{ + EnableTargetsToSelfAddAccess = $true + EnableTargetsToSelfUpdateAccess = $true + EnableTargetsToSelfRemoveAccess = $true + AllowCustomAssignmentSchedule = $false + EnableOnBehalfRequestorsToAddAccess = $false + EnableOnBehalfRequestorsToUpdateAccess = $false + EnableOnBehalfRequestorsToRemoveAccess = $false + OnBehalfRequestors = @( + ) + } + RequestApprovalSettings = @{ + IsApprovalRequiredForAdd = $true + IsApprovalRequiredForUpdate = $false + Stages = @( + @{ + DurationBeforeAutomaticDenial = "P14D" + IsApproverJustificationRequired = $false + IsEscalationEnabled = $false + DurationBeforeEscalation = "PT0S" + PrimaryApprovers = @( + @{ + "@odata.type" = "#microsoft.graph.internalSponsors" + } + ) + FallbackPrimaryApprovers = @( + @{ + "@odata.type" = "#microsoft.graph.singleUser" + UserId = "7deff43e-1f17-44ef-9e5f-d516b0ba11d4" + } + @{ + "@odata.type" = "#microsoft.graph.groupMembers" + GroupId = "1623f912-5e86-41c2-af47-39dd67582b66" + } + ) + EscalationApprovers = @( + ) + FallbackEscalationApprovers = @( + ) + } + @{ + DurationBeforeAutomaticDenial = "P14D" + IsApproverJustificationRequired = $false + IsEscalationEnabled = $false + DurationBeforeEscalation = "PT0S" + PrimaryApprovers = @( + ) + FallbackPrimaryApprovers = @( + @{ + "@odata.type" = "#microsoft.graph.singleUser" + UserId = "46184453-e63b-4f20-86c2-c557ed5d5df9" + } + @{ + "@odata.type" = "#microsoft.graph.groupMembers" + GroupId = "1623f912-5e86-41c2-af47-39dd67582b66" + } + ) + EscalationApprovers = @( + ) + FallbackEscalationApprovers = @( + ) + } + ) + } + ReviewSettings = @{ + IsEnabled = $true + ExpirationBehavior = "keepAccess" + IsRecommendationEnabled = $true + IsReviewerJustificationRequired = $true + IsSelfReview = $false + Schedule = @{ + StartDateTime = [System.DateTime]::Parse("2022-07-02T06:59:59.998Z") + Expiration = @{ + Duration = "P14D" + Type = "afterDuration" + } + Recurrence = @{ + Pattern = @{ + Type = "absoluteMonthly" + Interval = 3 + Month = 0 + DayOfMonth = 0 + DaysOfWeek = @( + ) + } + Range = @{ + Type = "noEnd" + NumberOfOccurrences = 0 + } + } + } + PrimaryReviewers = @( + @{ + "@odata.type" = "#microsoft.graph.groupMembers" + GroupId = "1623f912-5e86-41c2-af47-39dd67582b66" + } + ) + FallbackReviewers = @( + ) + } + AccessPackage = @{ + Id = "a2e1ca1e-4e56-47d2-9daa-e2ba8d12a82b" + } +} +New-MgEntitlementManagementAssignmentPolicy -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "New Policy" + Description = "policy for assignment" + AllowedTargetScope = "notSpecified" + SpecificAllowedTargets = @( + ) + Expiration = @{ + EndDateTime = $null + Duration = $null + Type = "noExpiration" + } + RequestorSettings = @{ + EnableTargetsToSelfAddAccess = $false + EnableTargetsToSelfUpdateAccess = $false + EnableTargetsToSelfRemoveAccess = $false + AllowCustomAssignmentSchedule = $true + EnableOnBehalfRequestorsToAddAccess = $false + EnableOnBehalfRequestorsToUpdateAccess = $false + EnableOnBehalfRequestorsToRemoveAccess = $false + OnBehalfRequestors = @( + ) + } + RequestApprovalSettings = @{ + IsApprovalRequiredForAdd = $false + IsApprovalRequiredForUpdate = $false + Stages = @( + ) + } + AccessPackage = @{ + Id = "a2e1ca1e-4e56-47d2-9daa-e2ba8d12a82b" + } +} +New-MgEntitlementManagementAssignmentPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md index 093355d11d5..443aa1da264 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md @@ -1,18 +1,59 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RequestType = "AdminAdd" + Assignment = @{ + TargetId = "46184453-e63b-4f20-86c2-c557ed5d5df9" + AssignmentPolicyId = "2264bf65-76ba-417b-a27d-54d291f0cbc8" + AccessPackageId = "a914b616-e04e-476b-aa37-91038f0b165b" + } +} +New-MgEntitlementManagementAssignmentRequest -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RequestType = "AdminAdd" + Assignment = @{ + TargetId = "46184453-e63b-4f20-86c2-c557ed5d5df9" + AssignmentPolicyId = "2264bf65-76ba-417b-a27d-54d291f0cbc8" + AccessPackageId = "a914b616-e04e-476b-aa37-91038f0b165b" + } +} +New-MgEntitlementManagementAssignmentRequest -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RequestType = "AdminRemove" + Assignment = @{ + Id = "a6bb6942-3ae1-4259-9908-0133aaee9377" + } +} +New-MgEntitlementManagementAssignmentRequest -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RequestType = "userAdd" + Assignment = @{ + AccessPackageId = "d7be3253-b9c6-4fab-adef-30d30de8da2b" + } +} +New-MgEntitlementManagementAssignmentRequest -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RequestType = "userAdd" + Assignment = @{ + AccessPackageId = "d7be3253-b9c6-4fab-adef-30d30de8da2b" + } +} +New-MgEntitlementManagementAssignmentRequest -BodyParameter $params +``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md index 093355d11d5..e5950625563 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "sales" + Description = "for employees working with sales and outside sales partners" + State = "published" + IsExternallyVisible = $true +} +New-MgEntitlementManagementCatalog -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..7da3f63e48b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Connected organization name" + Description = "Connected organization description" + IdentitySources = @( + @{ + "@odata.type" = "#microsoft.graph.domainIdentitySource" + DomainName = "example.com" + DisplayName = "example.com" + } + ) + State = "proposed" +} +New-MgEntitlementManagementConnectedOrganization -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index 093355d11d5..dd0cd3f6b7f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/users/{id}" +} +New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 093355d11d5..689353c75d3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/users/{id}" +} +New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md index 093355d11d5..7d89db4d2b9 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,18 +1,229 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Review employee access to LinkedIn" + DescriptionForAdmins = "Review employee access to LinkedIn" + Scope = @{ + "@odata.type" = "#microsoft.graph.principalResourceMembershipsScope" + PrincipalScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/users" + QueryType = "MicrosoftGraph" + } + ) + ResourceScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/servicePrincipals/bae11f90-7d5d-46ba-9f55-8112b59d92ae" + QueryType = "MicrosoftGraph" + } + ) + } + Reviewers = @( + @{ + Query = "./manager" + QueryType = "MicrosoftGraph" + QueryRoot = "decisions" + } + ) + BackupReviewers = @( + ) + FallbackReviewers = @( + @{ + Query = "/groups/072ac5f4-3f13-4088-ab30-0a276f3e6322/transitiveMembers" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + DefaultDecisionEnabled = $true + DefaultDecision = "Recommendation" + InstanceDurationInDays = 180 + AutoApplyDecisionsEnabled = $true + RecommendationsEnabled = $true + Recurrence = @{ + Pattern = @{ + Type = "absoluteMonthly" + Interval = 6 + DayOfMonth = 0 + } + Range = @{ + Type = "numbered" + StartDate = "2021-05-05" + EndDate = "2022-05-05" + } + } + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Group Multi-stage Access Review" + DescriptionForAdmins = "New scheduled access review" + DescriptionForReviewers = "If you have any questions, contact jerry@contoso.com" + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups/02f3bafb-448c-487c-88c2-5fd65ce49a41/transitiveMembers" + QueryType = "MicrosoftGraph" + } + StageSettings = @( + @{ + StageId = "1" + DurationInDays = 2 + RecommendationsEnabled = $false + DecisionsThatWillMoveToNextStage = @( + "NotReviewed" + "Approve" + ) + Reviewers = @( + @{ + Query = "/users/398164b1-5196-49dd-ada2-364b49f99b27" + QueryType = "MicrosoftGraph" + } + ) + } + @{ + StageId = "2" + DependsOn = @( + "1" + ) + DurationInDays = 2 + RecommendationsEnabled = $true + Reviewers = @( + @{ + Query = "./manager" + QueryType = "MicrosoftGraph" + QueryRoot = "decisions" + } + ) + FallbackReviewers = @( + @{ + Query = "/groups/072ac5f4-3f13-4088-ab30-0a276f3e6322/transitiveMembers" + QueryType = "MicrosoftGraph" + } + ) + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + DefaultDecisionEnabled = $false + DefaultDecision = "None" + InstanceDurationInDays = 4 + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-09-08T12:02:30.667Z" + } + } + DecisionHistoriesForReviewersEnabled = $true + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Review inactive guests on teams" + DescriptionForAdmins = "Control guest user access to our teams." + DescriptionForReviewers = "Information security is everyone's responsibility. Review our access policy for more." + InstanceEnumerationScope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups?$filter=(groupTypes/any(c:c+eq+'Unified') and resourceProvisioningOptions/Any(x:x eq 'Team')')" + QueryType = "MicrosoftGraph" + } + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewInactiveUsersQueryScope" + Query = "./members/microsoft.graph.user/?$filter=(userType eq 'Guest')" + QueryType = "MicrosoftGraph" + InactiveDuration = "P30D" + } + Reviewers = @( + @{ + Query = "./owners" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/users/fc9a2c2b-1ddc-486d-a211-5fe8ca77fa1f" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + RecommendationsEnabled = $true + InstanceDurationInDays = 3 + Recurrence = @{ + Pattern = @{ + Type = "absoluteMonthly" + DayOfMonth = 5 + Interval = 3 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-05-04T00:00:00.000Z" + } + } + DefaultDecisionEnabled = $true + DefaultDecision = "Deny" + AutoApplyDecisionsEnabled = $true + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Test create" + DescriptionForAdmins = "New scheduled access review" + DescriptionForReviewers = "If you have any questions, contact jerry@contoso.com" + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups/02f3bafb-448c-487c-88c2-5fd65ce49a41/transitiveMembers" + QueryType = "MicrosoftGraph" + } + Reviewers = @( + @{ + Query = "/users/398164b1-5196-49dd-ada2-364b49f99b27" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + DefaultDecisionEnabled = $false + DefaultDecision = "None" + InstanceDurationInDays = 1 + RecommendationsEnabled = $true + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-09-08T12:02:30.667Z" + } + } + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 093355d11d5..d3027417f12 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,18 +1,43 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Last quarter's group reviews April 2021" + Decisions = @( + "approve" + "deny" + "dontKnow" + "notReviewed" + "notNotified" + ) + ScheduleSettings = @{ + ReportRange = "P1M" + Recurrence = @{ + Pattern = @{ + Type = "monthly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2018-08-03T21:02:30.667Z" + Count = + } + } + } + Scopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + QueryType = "MicrosoftGraph" + Query = "/identityGovernance/accessReviews/definitions?$filter=contains(scope/query, 'accessPackageAssignments')" + QueryRoot = $null + } + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + QueryType = "MicrosoftGraph" + Query = "/identityGovernance/accessReviews/definitions?$filter=contains(scope/query, '/groups')" + QueryRoot = $null + } + ) +} +New-MgIdentityGovernanceAccessReviewHistoryDefinition -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md index 093355d11d5..08c396414b2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId -AccessReviewHistoryInstanceId $accessReviewHistoryInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..31e7269ce2c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Contoso ToU for guest users" + IsViewingBeforeAcceptanceRequired = $true + Files = @( + @{ + FileName = "TOU.pdf" + Language = "en" + IsDefault = $true + FileData = @{ + Data = [System.Text.Encoding]::ASCII.GetBytes("SGVsbG8gd29ybGQ=//truncated-binary") + } + } + ) +} +New-MgIdentityGovernanceTermOfUseAgreement -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md index 093355d11d5..4579eb858c0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md index 093355d11d5..a55444c1b78 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md index 093355d11d5..61c4848393b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md index 093355d11d5..3007cf3ef8b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..a268127d5cd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index 093355d11d5..dc4a1a141a8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 093355d11d5..2b93eb32048 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md index 093355d11d5..f5ddfa4f75d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..56a875b0865 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 093355d11d5..0f8abdf5165 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md index 093355d11d5..9b9354d6513 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md index 093355d11d5..3b368aadddc 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 093355d11d5..c8e7346958a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 093355d11d5..1d04471e2ef 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md index 093355d11d5..3815c72f460 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Access Package New Name" +} +Update-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md index 093355d11d5..38173d3e788 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Catalog One" +} +Update-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..5df04d2fef2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Connected organization new name" + Description = "Connected organization new description" + State = "configured" +} +Update-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md index 093355d11d5..8c698048e8c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + ExternalUserLifecycleAction = "None" +} +Update-MgEntitlementManagementSetting -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 093355d11d5..9889e1fae72 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,18 +1,45 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Scope = @{ + "@odata.type" = "#microsoft.graph.principalResourceMembershipsScope" + PrincipalScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/v1.0/users" + QueryType = "MicrosoftGraph" + } + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/v1.0/groups" + QueryType = "MicrosoftGraph" + } + ) + ResourceScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/beta/roleManagement/directory/roleDefinitions/9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" + QueryType = "MicrosoftGraph" + } + ) + } + Reviewers = @( + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e" + QueryType = "MicrosoftGraph" + } + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 093355d11d5..9bcc25487a1 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.type" = "#microsoft.graph.accessReviewStage" + Reviewers = @( + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e" + QueryType = "MicrosoftGraph" + } + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 093355d11d5..df5b515f646 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "This person is still on my team" +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "This person is still on my team" +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "This person is still on my team" +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..813710f4e90 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "All Contoso volunteers - Terms of use" + IsViewingBeforeAcceptanceRequired = $true +} +Update-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md index 093355d11d5..69adbdf3fcf 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + UserIds = @( + "29f270bb-4d23-4f68-8a57-dc73dc0d4caf" + "20f91ec9-d140-4d90-9cd9-f618587a1471" + ) +} +Confirm-MgRiskyUserCompromised -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md index 093355d11d5..dc3a42ef787 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgDataPolicyOperation -DataPolicyOperationId $dataPolicyOperationId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md index 093355d11d5..fd3677dc63a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityApiConnector ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md index 093355d11d5..bfadf561561 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlow -ExpandProperty "identityProviders" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlow ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md index 093355d11d5..997c96fbef5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowIdentityProvider -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md index 093355d11d5..2c87b133661 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md index 093355d11d5..ab3e177a076 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowLanguageDefaultPageContent -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md index 093355d11d5..ed4aa1c2473 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowLanguageOverridePage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md index 093355d11d5..9c1f10ef96a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -ExpandProperty "userAttribute" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -ExpandProperty "userAttribute" +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 093355d11d5..4dbaec97d32 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md index 093355d11d5..7c88249b191 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md @@ -1,18 +1,40 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderId $identityProviderId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -OutFile $outFileId +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId +``` +###Example 8 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md index 093355d11d5..e566b69e27d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityUserFlowAttribute ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md index 093355d11d5..d87f95914c2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId -Property "key" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey -Filter "deviceId eq '1ab40ab2-32a8-4b00-b6b5-ba724e407de9'" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md index 093355d11d5..1e204b6e7d7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId -ExpandProperty "results" +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md index 093355d11d5..7033006a142 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOauth2PermissionGrant ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md index 093355d11d5..54d401bf618 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOauth2PermissionGrantDelta ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md index 093355d11d5..419f52e07e8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId -CertificateBasedAuthConfigurationId $certificateBasedAuthConfigurationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..192636c4e97 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyActivityBasedTimeoutPolicy +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md index 093355d11d5..79b6b5d09f9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAdminConsentRequestPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md index 093355d11d5..841ea4f8ae0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationFlowPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md index 093355d11d5..6289d72822a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 093355d11d5..367887abb0d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md index 093355d11d5..d81efff7b70 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyClaimMappingPolicy +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md index 093355d11d5..7d214000834 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md index 093355d11d5..eead1f543c6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicyDefault ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..7a6b1e8fba8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicyPartner ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..d4d9193c378 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyFeatureRolloutPolicy +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -ExpandProperty "appliesTo" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..a2c82698671 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyHomeRealmDiscoveryPolicy +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 093355d11d5..5905cbb9f48 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md index 093355d11d5..960071b1149 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..5e1b7b5276a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..52a4eddcc10 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md index 093355d11d5..71f96e08e44 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -ExpandProperty "effectiveRules,rules" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'Directory'" -ExpandProperty "rules" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole'" +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md index 093355d11d5..da12343aafd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId -ExpandProperty "policy(`$expand=rules)" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole' and roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "policy(`$expand=rules)" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'Directory'" +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md index 093355d11d5..7a3deb8b757 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md index 093355d11d5..33c3d84bd6d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenIssuancePolicy ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md index 093355d11d5..f4b034c3a8b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenLifetimePolicy +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md index 093355d11d5..55783ce891a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskDetection -RiskDetectionId $riskDetectionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskDetection ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md index 093355d11d5..c37372fd418 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyUser -RiskyUserId $riskyUserId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyUser ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md index 093355d11d5..a42477b9500 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyUserHistory -RiskyUserId $riskyUserId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md index 093355d11d5..c88128994f2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationEmailMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md index 093355d11d5..86f65aa2a23 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 093355d11d5..2c6716a38fd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md index 093355d11d5..2996a7ca8b8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationOperation -UserId $userId -LongRunningOperationId $longRunningOperationId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md index 093355d11d5..e898d45d411 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPasswordMethod -UserId $userId -PasswordAuthenticationMethodId $passwordAuthenticationMethodId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPasswordMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md index 093355d11d5..ae6758fb85b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPhoneMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md index 093355d11d5..bef21010fd6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md index 093355d11d5..fc1db8f3614 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md index 093355d11d5..48068da237f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md index 093355d11d5..681d9682ed5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Invoke-MgAvailableIdentityProviderType +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Invoke-MgAvailableIdentityProviderType +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Invoke-MgAvailableIdentityProviderType -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md index 093355d11d5..923b12d0559 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + UserIds = @( + "04487ee0-f4f6-4e7f-8999-facc5a30e232" + "13387ee0-f4f6-4e7f-8999-facc5120e345" + ) +} +Invoke-MgDismissRiskyUser -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md index 093355d11d5..aa8697369ab 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "" +} +Invoke-MgUploadIdentityApiConnectorClientCertificate -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md index 093355d11d5..e72f68bf822 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Test API" + TargetUrl = "https://someapi.com/api" + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.basicAuthentication" + Username = "MyUsername" + Password = "MyPassword" + } +} +New-MgIdentityApiConnector -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Test API" + TargetUrl = "https://someotherapi.com/api" + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "CertificatePassword" + } +} +New-MgIdentityApiConnector -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Test API" + TargetUrl = "https://someotherapi.com/api" + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "CertificatePassword" + } +} +New-MgIdentityApiConnector -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md index 093355d11d5..df03dc036ba 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md @@ -1,18 +1,45 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "UserFlowWithAPIConnector" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 + ApiConnectorConfiguration = @{ + PostFederationSignup = @{ + "@odata.id" = "https://graph.microsoft.com/v1/identity/apiConnectors/{id}" + } + PostAttributeCollection = @{ + "@odata.id" = "https://graph.microsoft.com/v1/identity/apiConnectors/{id}" + } + } +} +New-MgIdentityB2XUserFlow -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Partner" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 + IdentityProviders = @( + @{ + Id = "Facebook-OAuth" + Type = "Facebook" + Name = "Facebook" + } + ) +} +New-MgIdentityB2XUserFlow -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Partner" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 +} +New-MgIdentityB2XUserFlow -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md index 093355d11d5..401773c1a95 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsOptional = $false + RequiresVerification = $false + UserInputType = "TextBox" + DisplayName = "Shoe size" + UserAttributeValues = @( + ) + UserAttribute = @{ + Id = "extension_guid_shoeSize" + } +} +New-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md index 093355d11d5..31d847fec29 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.appleManagedIdentityProvider" + DisplayName = "Sign in with Apple" + DeveloperId = "UBF8T346G9" + ServiceId = "com.microsoft.rts.b2c.test.client" + KeyId = "99P6D879C4" + CertificateData = "******" +} +New-MgIdentityProvider -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.socialIdentityProvider" + DisplayName = "Login with Amazon" + IdentityProviderType = "Amazon" + ClientId = "56433757-cadd-4135-8431-2c9e3fd68ae8" + ClientSecret = "000000000000" +} +New-MgIdentityProvider -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md index 093355d11d5..3138064ddba 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Hobby" + Description = "Your hobby" + DataType = "string" +} +New-MgIdentityUserFlowAttribute -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md index 093355d11d5..1ab159bd887 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md @@ -1,18 +1,47 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.emailFileAssessmentRequest" + RecipientEmail = "tifc@a830edad9050849EQTPWBJZXODQ.onmicrosoft.com" + ExpectedAssessment = "block" + Category = "malware" + ContentData = "UmVjZWl2ZWQ6IGZyb20gTVcyUFIwME1CMDMxNC5uYW1wcmQwMC....." +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.fileAssessmentRequest" + ExpectedAssessment = "block" + Category = "malware" + FileName = "test.txt" + ContentData = "VGhpcyBpcyBhIHRlc3QgZmlsZQ==" +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.mailAssessmentRequest" + RecipientEmail = "tifc@a830edad9050849EQTPWBJZXODQ.onmicrosoft.com" + ExpectedAssessment = "block" + Category = "spam" + MessageUri = "https://graph.microsoft.com/v1.0/users/c52ce8db-3e4b-4181-93c4-7d6b6bffaf60/messages/AAMkADU3MWUxOTU0LWNlOTEt=" +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.urlAssessmentRequest" + Url = "http://test.com" + ExpectedAssessment = "block" + Category = "phishing" +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md index 093355d11d5..1f6418365a4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ClientId = "ef969797-201d-4f6b-960c-e9ed5f31dab5" + ConsentType = "AllPrincipals" + ResourceId = "943603e4-e787-4fe9-93d1-e30f749aae39" + Scope = "DelegatedPermissionGrant.ReadWrite.All" +} +New-MgOauth2PermissionGrant -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..32c4166085d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyActivityBasedTimeoutPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md index 093355d11d5..0efe4cfe03b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "{"ClaimsMappingPolicy":{"Version":1,"IncludeBasicClaimSet":"true","ClaimsSchema": [{"Source":"user","ID":"userprincipalname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"},{"Source":"user","ID":"givenname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname"},{"Source":"user","ID":"displayname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"},{"Source":"user","ID":"surname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname"},{"Source":"user","ID":"userprincipalname","SamlClaimType":"username"}],"ClaimsTransformation":[{"ID":"CreateTermsOfService","TransformationMethod":"CreateStringClaim","InputParameters": [{"ID":"value","DataType":"string", "Value":"sandbox"}],"OutputClaims":[{"ClaimTypeReferenceId":"TOS","TransformationClaimType":"createdClaim"}]}]}}" + ) + DisplayName = "Test1234" +} +New-MgPolicyClaimMappingPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..f93685d5b0d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + TenantId = "3d0f5dec-5d3d-455c-8016-e2af1ae4d31a" + B2bDirectConnectOutbound = @{ + UsersAndGroups = @{ + AccessType = "blocked" + Targets = @( + @{ + Target = "6f546279-4da5-4b53-a095-09ea0cef9971" + TargetType = "group" + } + ) + } + } + B2bDirectConnectInbound = @{ + Applications = @{ + AccessType = "allowed" + Targets = @( + @{ + Target = "Office365" + TargetType = "application" + } + ) + } + } +} +New-MgPolicyCrossTenantAccessPolicyPartner -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..eee6fc109d1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "PassthroughAuthentication rollout policy" + Description = "PassthroughAuthentication rollout policy" + Feature = "passthroughAuthentication" + IsEnabled = $true + IsAppliedToOrganization = $false +} +New-MgPolicyFeatureRolloutPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 093355d11d5..e7f1791495a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/2441b489-4f12-4882-b039-8f6006bd66da" +} +New-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..29e18975503 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyHomeRealmDiscoveryPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md index 093355d11d5..8d737b6f889 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "my-custom-consent-policy" + DisplayName = "Custom application consent policy" + Description = "A custom permission grant policy to customize conditions for granting consent." +} +New-MgPolicyPermissionGrantPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..54b70bd67fe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PermissionType = "delegated" + ResourceApplication = "00000003-0000-0000-c000-000000000000" +} +New-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..0b09ed0492b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PermissionType = "delegated" + ClientApplicationsFromVerifiedPublisherOnly = $true +} +New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md index 093355d11d5..3eca66780e6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyTokenIssuancePolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md index 093355d11d5..d71491ed12b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyTokenLifetimePolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md index 093355d11d5..225014a6398 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + EmailAddress = "kim@contoso.com" +} +New-MgUserAuthenticationEmailMethod -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md index 093355d11d5..65b6e11d51c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PhoneNumber = "+1 2065555555" + PhoneType = "mobile" +} +# A UPN can also be used as -UserId. +New-MgUserAuthenticationPhoneMethod -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md index 093355d11d5..1414cf82a48 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + StartDateTime = [System.DateTime]::Parse("2022-06-05T00:00:00.000Z") + LifetimeInMinutes = 60 + IsUsableOnce = $false +} +New-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md index 093355d11d5..f25cf328070 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md index 093355d11d5..dbef5d6cd12 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md index 093355d11d5..2b1e497c6ad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md index 093355d11d5..08d218d152c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md index 093355d11d5..51f38ee9ef5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md index 093355d11d5..33026a3c0da 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..4733541ea1e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 093355d11d5..7f829cf38fa 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md index 093355d11d5..65faff6e3e3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..48afedc4da9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..71dd3afdfd1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 093355d11d5..9e8ad3300f9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..cf3c5f05dc7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md index 093355d11d5..42b7dbd7cd5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..c4101606bc3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..2277107f16b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md index 093355d11d5..339c14580e8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md index 093355d11d5..6b8a01da40d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md index 093355d11d5..b957f5df910 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md index 093355d11d5..54e7a822a9e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 093355d11d5..f8d6d015904 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId -MicrosoftAuthenticatorAuthenticationMethodId $microsoftAuthenticatorAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md index 093355d11d5..045dd1edb0b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Remove-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md index 093355d11d5..e2049be4223 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md index 093355d11d5..acd0d42b5ae 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md index 093355d11d5..264c9e8ad21 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md index 093355d11d5..df50679d5c5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md index 093355d11d5..bd7410077b0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + LocalizedStrings = @( + ) +} +Set-MgIdentityB2XUserFlowLanguageOverridePageContent -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 093355d11d5..35a480c4a29 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + NewAssignmentOrder = @{ + Order = @( + "City" + "extension_GUID_ShoeSize" + ) + } +} +Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder -B2xIdentityUserFlowId $b2xIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md index 093355d11d5..5703b88fc37 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md @@ -1,18 +1,38 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "secret" + } +} +Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "New Test API" + TargetUrl = "https://otherapi.com/api/endpoint" + AuthenticationConfiguration = @{ + "@odata.type" = "microsoft.graph.basicAuthentication" + Username = "" + Password = "" + } +} +Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "secret" + } +} +Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md index 093355d11d5..0c156cc3a9d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + UserInputType = "textBox" +} +Update-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md index 093355d11d5..77614c2355c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.socialIdentityProvider" + DisplayName = "Apple" +} +Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ClientSecret = "1111111111111" +} +Update-MgIdentityProvider -IdentityProviderId $identityProviderId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.socialIdentityProvider" + ClientSecret = "1111111111111" +} +Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md index 093355d11d5..6c16efb4f23 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Description = "Your new hobby" +} +Update-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md index 093355d11d5..4803ec2cd10 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Scope = "User.ReadBasic.All Group.ReadWrite.All" +} +Update-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..ac1def269b9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md index 093355d11d5..926b0e6af33 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + SelfServiceSignUp = @{ + IsEnabled = $true + } +} +Update-MgPolicyAuthenticationFlowPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md index 093355d11d5..08d527fbae2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.context" = "https://graph.microsoft.com/v1.0/$metadata#authenticationMethodsPolicy" + RegistrationEnforcement = @{ + AuthenticationMethodsRegistrationCampaign = @{ + SnoozeDurationInDays = 1 + State = "enabled" + ExcludeTargets = @( + ) + IncludeTargets = @( + @{ + Id = "3ee3a9de-0a86-4e12-a287-9769accf1ba2" + TargetType = "group" + TargetedAuthenticationMethod = "microsoftAuthenticator" + } + ) + } + } + AuthenticationMethodConfigurations = @( + @{ + "@odata.type" = "#microsoft.graph.fido2AuthenticationMethodConfiguration" + Id = "Fido2" + State = "disabled" + IsSelfServiceRegistrationAllowed = $false + IsAttestationEnforced = $false + } + ) +} +Update-MgPolicyAuthenticationMethodPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 093355d11d5..0527fa974ee 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,18 +1,37 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.emailAuthenticationMethodConfiguration" + AllowExternalIdToUseEmailOtp = "enabled" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.fido2AuthenticationMethodConfiguration" + State = "enabled" + IsAttestationEnforced = "true" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" + State = "String" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration" + IsUsableOnce = $true +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md index 093355d11d5..4e352117d63 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "UpdateClaimsPolicy" +} +Update-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md index 093355d11d5..bea6cbbc529 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "CrossTenantAccessPolicy" +} +Update-MgPolicyCrossTenantAccessPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md index 093355d11d5..866dd1e706b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + B2bCollaborationOutbound = @{ + UsersAndGroups = @{ + AccessType = "blocked" + Targets = @( + @{ + Target = "0be493dc-cb56-4a53-936f-9cf64410b8b0" + TargetType = "group" + } + ) + } + Applications = @{ + AccessType = "blocked" + Targets = @( + @{ + Target = "AllApplications" + TargetType = "application" + } + ) + } + } +} +Update-MgPolicyCrossTenantAccessPolicyDefault -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..09603654d0c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + InboundTrust = @{ + IsMfaAccepted = $true + IsCompliantDeviceAccepted = $true + IsHybridAzureADJoinedDeviceAccepted = $true + } +} +Update-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..fe5c6fb6d27 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "PasswordHashSync Rollout Policy" + Description = "PasswordHashSync Rollout Policy" + IsEnabled = $true + IsAppliedToOrganization = $false +} +Update-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..9935d336517 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 093355d11d5..dbc6649302b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsEnabled = $false +} +Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md index 093355d11d5..ed589577b82 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Custom permission grant policy" +} +Update-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md index 093355d11d5..ea6e0396a53 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleManagementPolicyExpirationRule" + Id = "Expiration_EndUser_Assignment" + IsExpirationRequired = $true + MaximumDuration = "PT1H45M" + Target = @{ + "@odata.type" = "microsoft.graph.unifiedRoleManagementPolicyRuleTarget" + Caller = "EndUser" + Operations = @( + "All" + ) + Level = "Assignment" + InheritableSettings = @( + ) + EnforcedSettings = @( + ) + } +} +Update-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md index 093355d11d5..0fcce2323aa 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md index 093355d11d5..4e69054a4ca 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md index 093355d11d5..787adcf162c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + EmailAddress = "kim@contoso.com" +} +Update-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md index 093355d11d5..05c2865bd82 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PhoneNumber = "+1 2065555554" + PhoneType = "mobile" +} +# A UPN can also be used as -UserId. +Update-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md index 093355d11d5..dba7c7e8a2c 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserInferenceClassificationOverride -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md index 093355d11d5..9b8a0bad089 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolder -UserId $userId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md index 093355d11d5..e3c099fb352 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md index 093355d11d5..0a77b7c8cc3 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md index 093355d11d5..092387c76a4 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md index 093355d11d5..f87370a93d1 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "internetMessageHeaders" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "subject,body,bodyPreview,uniqueBody" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -Property "sender,subject" +``` diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md index 093355d11d5..d20fd122b5a 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId +``` diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md index 093355d11d5..59953d9adfb 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md index 093355d11d5..0ed4d5c20b6 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + ClassifyAs = "focused" + SenderEmailAddress = @{ + Name = "Samantha Booth" + Address = "samanthab@adatum.onmicrosoft.com" + } +} +# A UPN can also be used as -UserId. +New-MgUserInferenceClassificationOverride -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md index 093355d11d5..e7a9c5773ba 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "Clutter" + IsHidden = $true +} +# A UPN can also be used as -UserId. +New-MgUserMailFolder -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md index 093355d11d5..858ed9e7bef 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "displayName-value" + IsHidden = $true +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "microsoft.graph.mailSearchFolder" + DisplayName = "Weekly digests" + IncludeNestedFolders = $true + SourceFolderIds = @( + "AQMkADYAAAIBDAAAAA==" + ) + FilterQuery = "contains(subject, 'weekly digest')" +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md index 093355d11d5..e5bb1205a81 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + ReceivedDateTime = [System.DateTime]::Parse("datetime-value") + SentDateTime = [System.DateTime]::Parse("datetime-value") + HasAttachments = $true + Subject = "subject-value" + Body = @{ + ContentType = "" + Content = "content-value" + } + BodyPreview = "bodyPreview-value" +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md index 093355d11d5..a733053b018 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "From partner" + Sequence = 2 + IsEnabled = $true + Conditions = @{ + SenderContains = @( + "adele" + ) + } + Actions = @{ + ForwardTo = @( + @{ + EmailAddress = @{ + Name = "Alex Wilbur" + Address = "AlexW@contoso.onmicrosoft.com" + } + } + ) + StopProcessingRules = $true + } +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md index 093355d11d5..b53ba1c8c35 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md @@ -1,18 +1,51 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "Did you see last night's game?" + Importance = "Low" + Body = @{ + ContentType = "HTML" + Content = "They were awesome!" + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "AdeleV@contoso.onmicrosoft.com" + } + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserMessage -UserId $userId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "9/8/2018: concert" + Body = @{ + ContentType = "HTML" + Content = "The group represents Washington." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "AlexW@contoso.OnMicrosoft.com" + } + } + ) + InternetMessageHeaders = @( + @{ + Name = "x-custom-header-group-name" + Value = "Washington" + } + @{ + Name = "x-custom-header-group-id" + Value = "WA001" + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserMessage -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md index 093355d11d5..99dd5df562a 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "microsoft.graph.fileAttachment" + Name = "name-value" + ContentType = "contentType-value" + IsInline = $false + ContentLocation = "contentLocation-value" + ContentBytes = "base64-contentBytes-value" +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "smile" + ContentBytes = "R0lGODdhEAYEAA7" +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md index 093355d11d5..ed294bcdd39 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md index 093355d11d5..ec6e8d57233 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md index 093355d11d5..a9cd2ed738d 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md index 093355d11d5..604829873e3 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessage -UserId $userId -MessageId $messageId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md index 093355d11d5..f1b19817b69 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md index 093355d11d5..4f2ca514ca8 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + ClassifyAs = "focused" +} +# A UPN can also be used as -UserId. +Update-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md index 093355d11d5..d4bdbbad49d 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "displayName-value" +} +# A UPN can also be used as -UserId. +Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "microsoft.graph.mailSearchFolder" + FilterQuery = "contains(subject, 'Analytics')" +} +# A UPN can also be used as -UserId. +Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md index 093355d11d5..cb8e3310ece 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "Important from partner" + Actions = @{ + MarkImportance = "high" + } +} +# A UPN can also be used as -UserId. +Update-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md index 093355d11d5..e4611e6302c 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + IsRead = $true +} +# A UPN can also be used as -UserId. +Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "subject-value" + Body = @{ + ContentType = "" + Content = "content-value" + } + InferenceClassification = "other" +} +# A UPN can also be used as -UserId. +Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md index 093355d11d5..832398fd235 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebook -UserId $userId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md index 093355d11d5..24eedc7ea7d 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md index 093355d11d5..8512235d96c 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md index 093355d11d5..c1412c058ea 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteOperation -UserId $userId -OnenoteOperationId $onenoteOperationId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md index 093355d11d5..947f2ea7b6e 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSection -UserId $userId -OnenoteSectionId $onenoteSectionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSection -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md index 093355d11d5..2660c80da98 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSectionGroup -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md index 093355d11d5..06fadf6f875 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md index 093355d11d5..31b74b8a1ee 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "My Private notebook" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteNotebook -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md index 093355d11d5..b134aa6757a 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md index 093355d11d5..d414b08ba7b 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section group name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md index 093355d11d5..61b698a4c10 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md index 093355d11d5..122974f0ba3 100644 --- a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md +++ b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Remove-MgUserOnenotePage -UserId $userId -OnenotePageId $onenotePageId ``` - -{{ Add description here }} - diff --git a/src/People/People/examples/v1.0/Get-MgUserPerson.md b/src/People/People/examples/v1.0/Get-MgUserPerson.md index 093355d11d5..d357857e615 100644 --- a/src/People/People/examples/v1.0/Get-MgUserPerson.md +++ b/src/People/People/examples/v1.0/Get-MgUserPerson.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserPerson -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md index 093355d11d5..bd864a26326 100644 --- a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md +++ b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserUsedInsight -UserId $userId -Sort "LastUsed/LastAccessedDateTime desc" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserUsedInsight -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md index 093355d11d5..9c642f1504f 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContact -UserId $userId -ContactId $contactId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContact -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md index 093355d11d5..82123776fab 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolder -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md index 093355d11d5..4313c6e97eb 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md index 093355d11d5..f0e476adf46 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md index 093355d11d5..786a4f81cc1 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + GivenName = "Pavel" + Surname = "Bansky" + EmailAddresses = @( + @{ + Address = "pavelb@fabrikam.onmicrosoft.com" + Name = "Pavel Bansky" + } + ) + BusinessPhones = @( + "+1 732 555 0102" + ) +} +# A UPN can also be used as -UserId. +New-MgUserContact -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md index 093355d11d5..ad1957f5874 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + ParentFolderId = "AQMkADIxYjJiYgEzLTFmNjYALTRjYTMtODA1NC0wZDkxZGNmOTcxNTQALgAAA8RJzXYaLKZPlmn0ge0edZkBADa3qi2IMXRNg6RwQSHe_F8AAAIBDgAAAA==" + DisplayName = "Important contacts" +} +# A UPN can also be used as -UserId. +New-MgUserContactFolder -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md index 093355d11d5..a98f12f461d 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + DisplayName = "Family" +} +# A UPN can also be used as -UserId. +New-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md index 093355d11d5..eb6f8ebca6a 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + ParentFolderId = "parentFolderId-value" + Birthday = [System.DateTime]::Parse("datetime-value") + FileAs = "fileAs-value" + DisplayName = "displayName-value" + GivenName = "givenName-value" + Initials = "initials-value" +} +# A UPN can also be used as -UserId. +New-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md index 093355d11d5..4d272501798 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Remove-MgUserContact -UserId $userId -ContactId $contactId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md index 093355d11d5..deb857260fb 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Remove-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md index 093355d11d5..875b3be2bf2 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + HomeAddress = @{ + Street = "123 Some street" + City = "Seattle" + State = "WA" + PostalCode = "98121" + } + Birthday = [System.DateTime]::Parse("1974-07-22") +} +# A UPN can also be used as -UserId. +Update-MgUserContact -UserId $userId -ContactId $contactId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md index 093355d11d5..2273cb95a91 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + ParentFolderId = "parentFolderId-value" + DisplayName = "displayName-value" +} +# A UPN can also be used as -UserId. +Update-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md index 093355d11d5..0f4cff71c16 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgGroupPlannerPlan -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md index 093355d11d5..f0b5e60a9bc 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlanner ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md index 093355d11d5..37154f4f0fd 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerBucket +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Planner +Get-MgPlannerBucket -PlannerBucketId $plannerBucketId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md index 093355d11d5..8e500ea7667 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerBucketTask -PlannerBucketId $plannerBucketId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md index 093355d11d5..fea21d72ec0 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlan -PlannerPlanId $plannerPlanId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlan ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md index 093355d11d5..999294be657 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlanBucket -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md index 093355d11d5..543a75e3e48 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md index 093355d11d5..cecde547587 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlanTask -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md index 093355d11d5..58dbed30ce4 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTask -PlannerTaskId $plannerTaskId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTask ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md index 093355d11d5..9e17fd2c51a 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md index 093355d11d5..8ebb6bcebfe 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md index 093355d11d5..877689d4227 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md index 093355d11d5..00661a0daa1 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md index 093355d11d5..ec0504b5222 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlannerPlan -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md index 093355d11d5..8dec8f81ae5 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlannerTask -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md index 093355d11d5..9519551e7c7 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Name = "Advertising" + PlanId = "xqQg5FS2LkCp935s-FIFm2QAFkHM" + OrderHint = " !" +} +New-MgPlannerBucket -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md index 093355d11d5..48c00e689ff 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Owner = "ebf3b108-5234-4e22-b93d-656d7dae5874" + Title = "title-value" +} +New-MgPlannerPlan -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md index 093355d11d5..2e30c4285fe 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + PlanId = "xqQg5FS2LkCp935s-FIFm2QAFkHM" + BucketId = "hsOf2dhOJkqyYYZEtdzDe2QAIUCR" + Title = "Update client list" + Assignments = @{ + "Fbab97d0-4932-4511-b675-204639209557" = @{ + "@odata.type" = "#microsoft.graph.plannerAssignment" + OrderHint = " !" + } + } +} +New-MgPlannerTask -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md index 093355d11d5..2968ae85863 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerBucket -PlannerBucketId $plannerBucketId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md index 093355d11d5..3e6d17db0d5 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerPlan -PlannerPlanId $plannerPlanId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md index 093355d11d5..d0e8b34b633 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerTask -PlannerTaskId $plannerTaskId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md index 093355d11d5..bbac40a4378 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Name = "Development" +} +Update-MgPlannerBucket -PlannerBucketId $plannerBucketId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md index 093355d11d5..cd691e60a80 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Title = "title-value" +} +Update-MgPlannerPlan -PlannerPlanId $plannerPlanId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md index 093355d11d5..10d6caab661 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + SharedWith = @{ + "6463a5ce-2119-4198-9f2a-628761df4a62" = $true + "D95e6152-f683-4d78-9ff5-67ad180fea4a" = $false + } + CategoryDescriptions = @{ + Category1 = "Indoors" + Category3 = $null + } +} +Update-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md index 093355d11d5..67ce75aac3c 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Assignments = @{ + "Fbab97d0-4932-4511-b675-204639209557" = @{ + "@odata.type" = "#microsoft.graph.plannerAssignment" + OrderHint = "N9917 U2883!" + } + } + AppliedCategories = @{ + Category3 = $true + Category4 = $false + } +} +Update-MgPlannerTask -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md index 093355d11d5..bd8abcdc7ba 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + OrderHintsByAssignee = @{ + "Aaa27244-1db4-476a-a5cb-004607466324" = "8566473P 957764Jk!" + } +} +Update-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md index 093355d11d5..13eb27399de 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + OrderHint = "A6673H Ejkl!" +} +Update-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md index 093355d11d5..7775a8926d9 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + PreviewType = "noPreview" + References = @{ + "Http%3A//developer%2Emicrosoft%2Ecom" = @{ + "@odata.type" = "microsoft.graph.plannerExternalReference" + Alias = "Documentation" + PreviewPriority = " !" + Type = "Other" + } + "Https%3A//developer%2Emicrosoft%2Ecom/en-us/graph/graph-explorer" = @{ + "@odata.type" = "microsoft.graph.plannerExternalReference" + PreviewPriority = " !!" + } + "Http%3A//www%2Ebing%2Ecom" = $null + } + Checklist = @{ + "95e27074-6c4a-447a-aa24-9d718a0b86fa" = @{ + "@odata.type" = "microsoft.graph.plannerChecklistItem" + Title = "Update task details" + IsChecked = $true + } + "D280ed1a-9f6b-4f9c-a962-fb4d00dc50ff" = @{ + "@odata.type" = "microsoft.graph.plannerChecklistItem" + IsChecked = $true + } + "A93c93c5-10a6-4167-9551-8bafa09967a7" = $null + } +} +Update-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md index 093355d11d5..9867433abe3 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + OrderHint = "A6673H Ejkl!" +} +Update-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md index 093355d11d5..50d2c483b08 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogDirectoryAudit -DirectoryAuditId $directoryAuditId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogDirectoryAudit ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md index 093355d11d5..74d3d08a18d 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogProvisioning +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogProvisioning ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md index 093355d11d5..ec8816353dd 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn -SignInId $signInId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn -Filter "startsWith(appDisplayName,'Graph')" -Top 10 +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md index 093355d11d5..0a9198ce115 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportDailyPrintUsageByPrinter -PrintUsageByPrinterId $printUsageByPrinterId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Reports +Get-MgReportDailyPrintUsageByPrinter ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md index 093355d11d5..e23309320d6 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportDailyPrintUsageByUser -PrintUsageByUserId $printUsageByUserId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Reports +Get-MgReportDailyPrintUsageByUser ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md index 093355d11d5..f8eb4bad521 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportMonthlyPrintUsageByPrinter ``` - -{{ Add description here }} - diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md index 093355d11d5..0006ea6859f 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportMonthlyPrintUsageByUser ``` - -{{ Add description here }} - diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md index 093355d11d5..25d93e5f3ba 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +Get-MgSchemaExtension -SchemaExtensionId $schemaExtensionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.SchemaExtensions +Get-MgSchemaExtension -Filter "id eq 'graphlearn_test'" ``` - -{{ Add description here }} - diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md index 093355d11d5..3ca0130c65a 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md @@ -1,18 +1,79 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Id = "graphlearn_courses" + Description = "Graph Learn training courses extensions" + TargetTypes = @( + "Group" + ) + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + ) +} +New-MgSchemaExtension -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Id = "courses" + Description = "Graph Learn training courses extensions" + TargetTypes = @( + "Group" + ) + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + ) +} +New-MgSchemaExtension -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Id = "courses" + Description = "Graph Learn training courses extensions" + TargetTypes = @( + "Group" + ) + Owner = "50897f70-a455-4adf-87bc-4cf17091d5ac" + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + ) +} +New-MgSchemaExtension -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md index 093355d11d5..71471d78f3c 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +Remove-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` - -{{ Add description here }} - diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md index 093355d11d5..8b12ffcb251 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md @@ -1,18 +1,52 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + @{ + Name = "courseSupervisors" + Type = "String" + } + ) +} +Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + @{ + Name = "courseSupervisors" + Type = "String" + } + ) +} +Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md index 093355d11d5..a7684d25fce 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnection -ExternalConnectionId $externalConnectionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Search +Get-MgExternalConnection ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md index 093355d11d5..2b73c3c0666 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md index 093355d11d5..167370591be 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md index 093355d11d5..0606de1d924 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionOperation -ExternalConnectionId $externalConnectionId -ConnectionOperationId $connectionOperationId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md index 093355d11d5..9f9c28e076a 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionSchema -ExternalConnectionId $externalConnectionId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md index 093355d11d5..5f605e321cb 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "contosohr" + Name = "Contoso HR" + Description = "Connection to index Contoso HR system" +} +New-MgExternalConnection -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md index 093355d11d5..214167830f4 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "31bea3d537902000" + DisplayName = "Contoso Marketing" + Description = "The product marketing team" +} +New-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md index 093355d11d5..f9622def219 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "e5477431-1038-484e-bf69-1dfedb97a110" + Type = "group" +} +New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "e811976d-83df-4cbd-8b9b-5215b18aa874" + Type = "user" +} +New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "1431b9c38ee647f6a" + Type = "externalGroup" +} +New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md index 093355d11d5..f8e2ff5acd4 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md index 093355d11d5..603b3882cd3 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md index 093355d11d5..5bd77ca08bd 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -IdentityId $identityId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md index 093355d11d5..1518d7fcb42 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md index 093355d11d5..77f9ceba958 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Name = "Contoso HR Service Tickets" + Description = "Connection to index HR service tickets" +} +Update-MgExternalConnection -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md index 093355d11d5..407231ba97e 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + DisplayName = "Contoso Marketing" + Description = "The product marketing team" +} +Update-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md index 093355d11d5..82c04fde1c3 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Acl = @( + @{ + Type = "everyone" + Value = "67a141d8-cf4e-4528-ba07-bed21bfacd2d" + AccessType = "grant" + } + ) +} +Update-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 093355d11d5..89f7e7ebfd3 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 093355d11d5..b8d304930a4 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index 093355d11d5..7c66d06c373 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + TagsToAdd = @( + @{ + Id = "d3d99dc704a74801b792b3e1e722aa0d" + } + ) +} +Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index 093355d11d5..313f635daac 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Search = @{ + Id = "c17e91d6-6bc0-4ecb-b388-269ea3d4ffb7" + } + AdditionalDataOptions = "linkedFiles" +} +Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..66b123738c9 100644 --- a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Close-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md index 093355d11d5..a395fdcbd0e 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAlert -AlertId $alertId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityAlert ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..d045fb8a3b8 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCase ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..3dcf3a425de 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md index 093355d11d5..107d1f1ee34 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..2ee646bee1e 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..54530e8c91c 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 093355d11d5..910e10232d9 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..3a0ac821f7d 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" -OutFile $outFileId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -ExpandProperty "dataSource" ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md index 093355d11d5..7e6046827b6 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId -CaseOperationId $caseOperationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md index 093355d11d5..3d72911400a 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..bffa2654397 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..c07f209fa58 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 093355d11d5..3ace457162d 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md index 093355d11d5..4ecef13e00f 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md index 093355d11d5..65159d17af7 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md index 093355d11d5..058e9bd76fc 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md index 093355d11d5..dbd386724ec 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md index 093355d11d5..64fb3174a99 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md index 093355d11d5..2b344b21682 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecuritySecureScore -SecureScoreId $secureScoreId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecuritySecureScore -Top 1 ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md index 093355d11d5..a723733cf14 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Get-MgSecuritySecureScoreControlProfile ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..340865ab8fe 100644 --- a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Initialize-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md index 093355d11d5..d3114a823fe 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index 093355d11d5..2cc263bdf39 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md index 093355d11d5..9bdeb1983c9 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Invoke-MgReopenSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..f3366f2c6ca 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "CONTOSO LITIGATION-005" + Description = "Project Bazooka" + ExternalId = "324516" +} +New-MgSecurityCaseEdiscoveryCase -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..e37d0c78922 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Email = "AdeleV@contoso.com" +} +New-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..042ae545c72 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Site = @{ + WebUrl = "https://m365x809305.sharepoint.com/sites/Retail" + } +} +New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..7214007081a 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,29 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Group = @{ + Mail = "SOCTeam@M365x809305.onmicrosoft.com" + } + IncludedSources = "mailbox, site" +} +New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +$params = @{ + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" + IncludedSources = "mailbox" +} +New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Security +$params = @{ + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" + IncludedSources = "mailbox" +} +New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..01bc610d8fb 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DataSource = @{ + "@odata.type" = "microsoft.graph.security.siteSource" + } +} +New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md index 093355d11d5..60dd5d15264 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My review set 2" +} +New-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..e84c8d96cd9 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My Query 1" + ContentQuery = "(Author="edison")" +} +New-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..d469d41c407 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My search 2" + Description = "My first search" + ContentQuery = "(Author="edison")" + "CustodianSources@odata.bind" = @( + "https://graph.microsoft.com/v1.0/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/custodians/0053a61a3b6c42738f7606791716a22a/userSources/43434642-3137-3138-3432-374142313639" + "https://graph.microsoft.com/v1.0/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/custodians/0053a61a3b6c42738f7606791716a22a/siteSources/169718e3-a8df-449d-bef4-ee09fe1ddc5d" + "https://graph.microsoft.com/v1.0/security/cases/ediscoveryCases('b0073e4e-4184-41c6-9eb7-8c8cc3e2288b')/custodians('0053a61a3b6c42738f7606791716a22a')/unifiedGroupSources('32e14fa4-3106-4bd2-a245-34bf0c718a7e')" + ) + "NoncustodialSources@odata.bind" = @( + "https://graph.microsoft.com/v1.0/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/noncustodialdatasources/35393639323133394345384344303043" + ) +} +New-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..e9128aa2120 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Publish-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..cae371326cd 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..eea2f54f644 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 093355d11d5..d2bd47984cc 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 093355d11d5..d0cfa1eb62e 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..8b4a56c073f 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..1f136b1d8ff 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md index 093355d11d5..ba2d8cc0d37 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md index 093355d11d5..7dc6023bd5d 100644 --- a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md index 093355d11d5..29c93824fab 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + AssignedTo = "String" + ClosedDateTime = [System.DateTime]::Parse("String (timestamp)") + Comments = @( + "String" + ) + Feedback = "@odata.type: microsoft.graph.alertFeedback" + Status = "@odata.type: microsoft.graph.alertStatus" + Tags = @( + "String" + ) + VendorInformation = @{ + Provider = "String" + Vendor = "String" + } +} +Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +$params = @{ + AssignedTo = "String" + ClosedDateTime = [System.DateTime]::Parse("String (timestamp)") + Comments = @( + "String" + ) + Feedback = "@odata.type: microsoft.graph.alertFeedback" + Status = "@odata.type: microsoft.graph.alertStatus" + Tags = @( + "String" + ) + VendorInformation = @{ + Provider = "String" + Vendor = "String" + } +} +Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..d910c3709a8 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My Case 1 - Renamed" + Description = "Updated description" +} +Update-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md index 093355d11d5..6f921592d1a 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Update-MgSecurityCaseEdiscoveryCaseCustodianIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index 093355d11d5..410299c7c21 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..3b27d34cd72 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My Query 1 (update)" + ContentQuery = "(Author="edisons")" +} +Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..6c942baac3d 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "Teams search" +} +Update-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md index 093355d11d5..05759704908 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.security.ediscoveryCaseSettings" + RedundancyDetection = @{ + "@odata.type" = "microsoft.graph.security.redundancyDetectionSettings" + } + TopicModeling = @{ + "@odata.type" = "microsoft.graph.security.topicModelingSettings" + } + Ocr = @{ + "@odata.type" = "microsoft.graph.security.ocrSettings" + } +} +Update-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md index 093355d11d5..cfdd82ceacc 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + AssignedTo = "" + Comment = "control is reviewed" + State = "Reviewed" + VendorInformation = @{ + Provider = "SecureScore" + ProviderVersion = $null + SubProvider = $null + Vendor = "Microsoft" + } +} +Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Security +$params = @{ + AssignedTo = "" + Comment = "control is reviewed" + State = "Reviewed" + VendorInformation = @{ + Provider = "SecureScore" + ProviderVersion = $null + SubProvider = $null + Vendor = "Microsoft" + } +} +Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md index 093355d11d5..7760ddb3749 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentType = "https://graph.microsoft.com/v1.0/sites/{site-id}/contentTypes/0x0101" +} +Add-MgSiteListContentTypeCopy -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md index 093355d11d5..595909e1d44 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentTypeId = "0x0101" +} +Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentTypeId = "0x0101" +} +Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentTypeId = "0x0101" +} +Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md index 093355d11d5..e25b00e2c5d 100644 --- a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md +++ b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + SourceFile = @{ + SharepointIds = @{ + ListId = "e2ecf63b-b0fd-48f7-a54a-d8c15479e3b0" + ListItemId = "2" + } + } + DestinationFileName = "newname.txt" +} +Copy-MgSiteContentTypeToDefaultContentLocation -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSite.md index 093355d11d5..115edb774ef 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSite.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSite -SiteId $siteId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSite -Search "{query}" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSite -Search "{query}" -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md index 093355d11d5..d96ff3ab847 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteColumn -SiteId $siteId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md index 093355d11d5..ee642f6195f 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentType -SiteId $siteId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentType -SiteId $siteId -OutFile $outFileId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md index 093355d11d5..f6ae22c2c06 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md index 093355d11d5..38b8973c43a 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteDefaultDrive -SiteId $siteId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md index 093355d11d5..0d3b3f5136e 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteDrive -SiteId $siteId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md index 093355d11d5..2295fe8b4d8 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId -Property "id,name,lastModifiedDateTime" -ExpandProperty "columns(select=name,description),items)" +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md index 093355d11d5..419462af2da 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListColumn -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md index 093355d11d5..cb235b05033 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListContentType -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md index 093355d11d5..edfbf6a5450 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListContentTypeCompatibleHubContentType -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md index 093355d11d5..152b1184157 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId -ExpandProperty "fields" ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md index 093355d11d5..7838bc51584 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md index 093355d11d5..0bb722a345f 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId -ExpandProperty "fields" ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md index 093355d11d5..054adde64b3 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSitePermission -SiteId $siteId -PermissionId $permissionId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSitePermission -SiteId $siteId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md index 093355d11d5..e3d2239eccb 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStore -SiteId $siteId -OutFile $outFileId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md index 093355d11d5..0f085e00b22 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroup -SiteId $siteId -OutFile $outFileId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId -Property "*,parentSiteId" ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md index 093355d11d5..b346c971ef1 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroupSet -SiteId $siteId -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md index 093355d11d5..4e72436674b 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroupSetTerm -SiteId $siteId -GroupId $groupId -SetId $setId -TermId $termId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md index 093355d11d5..48f95e21a59 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md index 093355d11d5..87224133f78 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md index 093355d11d5..80acd3bc887 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreSetRelation -SiteId $siteId -SetId $setId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md index 093355d11d5..6a3a808ee9c 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSubSite -SiteId $siteId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md index 093355d11d5..ec464f93a01 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +# A UPN can also be used as -UserId. +Get-MgUserFollowedSite -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md index 093355d11d5..31c081a2221 100644 --- a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md +++ b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + HubSiteUrls = @( + "https://graph.microsoft.com/v1.0/sites/{site-id}" + ) + PropagateToExistingLists = $false +} +Join-MgSiteContentTypeWithHubSite -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md index 093355d11d5..6a6d06c3a5b 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Description = "test" + EnforceUniqueValues = $false + Hidden = $false + Indexed = $false + Name = "Title" + Text = @{ + AllowMultipleLines = $false + AppendChangesToExistingText = $false + LinesForEditing = 0 + MaxLength = 255 + } +} +New-MgSiteColumn -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md index 093355d11d5..93c80afa0a5 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Name = "docSet" + Description = "custom docset" + Base = @{ + Name = "Document Set" + Id = "0x0120D520" + } + Group = "Document Set Content Types" +} +New-MgSiteContentType -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md index 093355d11d5..57b3ee39c90 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + "SourceColumn@odata.bind" = "https://graph.microsoft.com/v1.0/sites/root/columns/99ddcf45-e2f7-4f17-82b0-6fba34445103" +} +New-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md index 093355d11d5..8200c2a654e 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + DisplayName = "Books" + Columns = @( + @{ + Name = "Author" + Text = @{ + } + } + @{ + Name = "PageCount" + Number = @{ + } + } + ) + List = @{ + Template = "genericList" + } +} +New-MgSiteList -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md index 093355d11d5..8a475fa884d 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Description = "test" + EnforceUniqueValues = $false + Hidden = $false + Indexed = $false + Name = "Title" + Text = @{ + AllowMultipleLines = $false + AppendChangesToExistingText = $false + LinesForEditing = 0 + MaxLength = 255 + } +} +New-MgSiteListColumn -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md index 093355d11d5..5a2caafa6ea 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Fields = @{ + Title = "Widget" + Color = "Purple" + Weight = + } +} +New-MgSiteListItem -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md index 093355d11d5..b8e06175e28 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Comment = "v1" + ShouldCaptureMinorVersion = $false +} +New-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md index 093355d11d5..02e2b76cf6d 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Roles = @( + "write" + ) + GrantedToIdentities = @( + @{ + Application = @{ + Id = "89ea5c94-7736-4e25-95ad-3fa95f62b66e" + DisplayName = "Contoso Time Manager App" + } + } + ) +} +New-MgSitePermission -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md index 093355d11d5..869453fee7f 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + DisplayName = "myGroup" +} +New-MgSiteTermStoreGroup -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md index 093355d11d5..c90bd1c9df1 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Labels = @( + @{ + LanguageTag = "en-US" + Name = "Car" + IsDefault = $true + } + ) +} +New-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md index 093355d11d5..cb2fcd908f8 100644 --- a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Publish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md index 093355d11d5..81179f03694 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md index 093355d11d5..c9063990266 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md index 093355d11d5..0053edfd143 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md index 093355d11d5..d2de8fed9a5 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md index 093355d11d5..9705b223617 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md index 093355d11d5..b7fbb5ff453 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md index 093355d11d5..b28805fb328 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md index 093355d11d5..ec746c7826c 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteTermStoreSetTerm -SiteId $siteId -SetId $setId -TermId $termId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md index 093355d11d5..c121870c7c2 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Restore-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md index 093355d11d5..03e41ae7af1 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Restore-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md index 093355d11d5..49c0c4b7dc1 100644 --- a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md +++ b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Test-MgSiteContentTypePublished -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md index 093355d11d5..a8b625d49f7 100644 --- a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Unpublish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md index 093355d11d5..b32a2dd5a26 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md @@ -1,18 +1,47 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Name = "updatedCt" + DocumentSet = @{ + ShouldPrefixNameToFile = $true + AllowedContentTypes = @( + @{ + Id = "0x0101" + Name = "Document" + } + ) + DefaultContents = @( + @{ + FileName = "a.txt" + ContentType = @{ + Id = "0x0101" + } + } + @{ + FileName = "b.txt" + ContentType = @{ + Id = "0x0101" + } + } + ) + SharedColumns = @( + @{ + Name = "Description" + Id = "cbb92da4-fd46-4c7d-af6c-3128c2a5576e" + } + @{ + Name = "Address" + Id = "fc2e188e-ba91-48c9-9dd3-16431afddd50" + } + ) + WelcomePageColumns = @( + @{ + Name = "Address" + Id = "fc2e188e-ba91-48c9-9dd3-16431afddd50" + } + ) + } +} +Update-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md index 093355d11d5..3328c8ebea1 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Color = "Fuchsia" + Quantity = +} +Update-MgSiteListItemField -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md index 093355d11d5..f1705473133 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Roles = @( + "read" + ) +} +Update-MgSitePermission -SiteId $siteId -PermissionId $permissionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md index 093355d11d5..32d96d89637 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + DefaultLanguageTag = "en-US" +} +Update-MgSiteTermStore -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md index 093355d11d5..4aa196a3dec 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Description = "mySet" +} +Update-MgSiteTermStoreSet -SiteId $siteId -SetId $setId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md index 093355d11d5..738f4d16d93 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Labels = @( + @{ + Name = "changedLabel" + LanguageTag = "en-US" + IsDefault = $true + } + ) +} +Update-MgSiteTermStoreSetTerm -SiteId $siteId -SetId $setId -TermId $termId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md index 093355d11d5..c4007741b61 100644 --- a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md @@ -1,18 +1,66 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Values = @( + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('18a80140-b0fb-4489-b360-2f6efaf225a0')" + } + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('86503198-b81b-43fe-81ee-ad45b8848ac9')" + } + ) +} +Add-MgTeamMember -TeamId $teamId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Values = @( + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('18a80140-b0fb-4489-b360-2f6efaf225a0')" + } + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('86503198-b81b-43fe-81ee-ad45b8848ac9')" + } + ) +} +Add-MgTeamMember -TeamId $teamId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Values = @( + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" + } + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('alex@contoso.com')" + } + ) +} +Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md index 093355d11d5..ffdb8f46faf 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Complete-MgTeamChannelMigration -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md index 093355d11d5..8338e797fed 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Complete-MgTeamMigration -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md index 093355d11d5..e39dfd8af99 100644 --- a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Library Assist" + Description = "Self help community for library" + MailNickname = "libassist" + PartsToClone = "apps,tabs,settings,channels,members" + Visibility = "public" +} +Copy-MgTeam -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md index 093355d11d5..54d5e98b314 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5'" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -ExpandProperty "appDefinitions(`$expand=bot)" -Filter "appDefinitions/any(a:a/bot ne null)" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "id eq '876df28f-2e78-423b-94a5-44181bd0e225'" -ExpandProperty "appDefinitions" +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "distributionMethod eq 'organization'" +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md index 093355d11d5..b6d4929d0f7 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionBot -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChat.md b/src/Teams/Teams/examples/v1.0/Get-MgChat.md index 093355d11d5..954db3db5ae 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChat.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChat -ChatId $chatId -ExpandProperty "members" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChat -ChatId $chatId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChat -ChatId $chatId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChat -Sort "lastMessagePreview/createdDateTime desc" +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md index 093355d11d5..e154133c08c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsAppDefinition(`$expand=bot)" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md index 093355d11d5..bf35e5ca7de 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatMember -ChatId $chatId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md index 093355d11d5..f038ea6eb04 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMessage -ChatId $chatId -Top 2 +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatMessage -ChatId $chatId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md index 093355d11d5..3952f5e08eb 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId -ChatMessageHostedContentId $chatMessageHostedContentId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md index 093355d11d5..e7d463d9a45 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -ExpandProperty "teamsApp" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.web'" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md index 093355d11d5..34b07f8ace0 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeam -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md index 093355d11d5..f570952329f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId -ChannelId $channelId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'shared'" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'private'" +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md index 093355d11d5..30057564770 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelFileFolder -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md index 093355d11d5..4757920df66 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md index 093355d11d5..74b7d0d1081 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessage -TeamId $teamId -Filter "lastModifiedDateTime gt 2019-11-01T00:00:00Z and lastModifiedDateTime lt 2021-11-01T00:00:00Z" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -Top 3 ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md index 093355d11d5..4c9d6a122d0 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessageHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md index 093355d11d5..5ce4a07e5ce 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md index 093355d11d5..1a6d8fad2b1 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessageReplyHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -ChatMessageId1 $chatMessageId1 ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md index 093355d11d5..1eeac98d5fa 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md index 093355d11d5..af69f8001d4 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelSharedWithTeamAllowedMember -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md index 093355d11d5..4d6377cfaac 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.planner'" ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md index 093355d11d5..3122beb405b 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamIncomingChannel -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md index 093355d11d5..14ef7193f18 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId -ExpandProperty "teamsAppDefinition" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsAppDefinition" +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md index 093355d11d5..6e4468d5a58 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/userId eq '73761f06-2ac9-469c-9f10-279a8cc267f9')" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/displayName eq 'Harry Johnson' or microsoft.graph.aadUserConversationMember/email eq 'admin@M365x987948.OnMicrosoft.com')" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md index 093355d11d5..73bdd502f2c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamPrimaryChannel -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md index 093355d11d5..a64d69342cd 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamSchedule -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md index 093355d11d5..e8c5bbdec8d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId -OfferShiftRequestId $offerShiftRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md index 093355d11d5..b1da6b80f67 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShift -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md index 093355d11d5..d31d0aea801 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -OpenShiftChangeRequestId $openShiftChangeRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md index 093355d11d5..69d83b7a313 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSchedulingGroup -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md index 093355d11d5..61e595d7a8f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleShift -TeamId $teamId -Filter "sharedShift/startDateTime ge 2019-03-11T00:00:00.000Z and sharedShift/endDateTime le 2019-03-18T00:00:00.000Z and draftShift/startDateTime ge 2019-03-11T00:00:00.000Z and draftShift/endDateTime le 2019-03-18T00:00:00.000Z" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md index 093355d11d5..2cd81fe4fd7 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -SwapShiftsChangeRequestId $swapShiftsChangeRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md index 093355d11d5..0aa698bdf00 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOff -TeamId $teamId -Filter "sharedTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and sharedTimeOff/endDateTime le 2019-03-18T00:00:00.000Z and draftTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and draftTimeOff/endDateTime le 2019-03-18T00:00:00.000Z" +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md index 093355d11d5..fbe91f7da7f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffReason -TeamId $teamId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md index 093355d11d5..8665719ed14 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffRequest -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md index 093355d11d5..2348d944408 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkWorkforceIntegration ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md index 093355d11d5..9be43251e53 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId -ChatId $chatId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId -ExpandProperty "members" +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md index 093355d11d5..b4cce8a5cc6 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +# A UPN can also be used as -UserId. +Get-MgUserChatMember -UserId $userId -ChatId $chatId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md index 093355d11d5..d109a9dd4f2 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +# A UPN can also be used as -UserId. +Get-MgUserJoinedTeam -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md index 093355d11d5..0990e662d5e 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +# A UPN can also be used as -UserId. +Get-MgUserTeamworkAssociatedTeam -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md index 093355d11d5..9cc10598e17 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsAppDefinition" +``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md index 093355d11d5..e510a6a7469 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledAppChat -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md index 093355d11d5..58a8dc06fb8 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Invoke-MgArchiveTeam -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md index 093355d11d5..781e65787bc 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + NotifyTeam = $true + StartDateTime = [System.DateTime]::Parse("2018-10-08T00:00:00.000Z") + EndDateTime = [System.DateTime]::Parse("2018-10-15T00:00:00.000Z") +} +Invoke-MgShareTeamSchedule -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md index 093355d11d5..f331aa8d746 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Invoke-MgUnarchiveTeam -TeamId $teamId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md index 093355d11d5..820f0fbda9d 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +New-MgAppCatalogTeamApp -Requiresreview true ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgChat.md b/src/Teams/Teams/examples/v1.0/New-MgChat.md index 093355d11d5..a338cab3631 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChat.md @@ -1,18 +1,169 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "group" + Topic = "Group chat title" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('82fe7758-5bb3-4f0d-a43f-e555fd399c6f')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "guest" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8ba98gf6-7fc2-4eb2-c7f2-aef9f21fd98g')" + } + ) +} +New-MgChat -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "group" + Topic = "Group chat title" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('82fe7758-5bb3-4f0d-a43f-e555fd399c6f')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "guest" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8ba98gf6-7fc2-4eb2-c7f2-aef9f21fd98g')" + } + ) +} +New-MgChat -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "group" + Topic = "Group chat title" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('82fe7758-5bb3-4f0d-a43f-e555fd399c6f')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('3626a173-f2bc-4883-bcf7-01514c3bfb82')" + } + ) +} +New-MgChat -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('82af01c5-f7cc-4a2e-a728-3a5df21afd9d')" + TenantId = "4dc1fe35-8ac6-4f0d-904a-7ebcd364bea1" + } + ) +} +New-MgChat -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('82af01c5-f7cc-4a2e-a728-3a5df21afd9d')" + } + ) +} +New-MgChat -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('alex@contoso.com')" + } + ) +} +New-MgChat -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md index 093355d11d5..8ce07a132c5 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" +} +New-MgChatInstalledApp -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md index 093355d11d5..ed7ea1d9978 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md @@ -1,18 +1,51 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/jacob@contoso.com" + VisibleHistoryStartDateTime = [System.DateTime]::Parse("2019-04-18T23:51:43.255Z") + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" + VisibleHistoryStartDateTime = [System.DateTime]::Parse("0001-01-01T00:00:00Z") + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" + VisibleHistoryStartDateTime = [System.DateTime]::Parse("2019-04-18T23:51:43.255Z") + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md index 093355d11d5..d7b659389c9 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
+
+
+
+
" + } + HostedContents = @( + @{ + "@microsoft.graph.temporaryId" = "1" + ContentBytes = [System.Text.Encoding]::ASCII.GetBytes("iVBORw0KGgoAAAANSUhEUgAAASkAAAEpCAYAAADPmdSCAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAhr0lEQVR4Xu3d76tdV50GcP+EvJu3/QuGvJgXxSk0Y8QwzZRmCG2lQkjrkM4UjOmLgmAt0bQGLqipo1ghmIhSRBIMbV+UpmiIRSYV9IqmHaqNgRJbUGqoA30xMGe+z+1ZNyfrPuec/WN9115r7yfw6Y917zlnn+9e68ne66y9z8dms1kjTzzxxC6zxxw3h80d7Pekfti3832MfX3A7GK/J5IDbYxZJz1mbppZ5JJRBx4J7Etzar5vY8fZY0S80cZF6JxRZ41dN7vZY6Uetg8RUJvzfbrMWfZYEU+0MbBOicN+1lljOMo6zJ5Dymf7bvd8H7J9G9vDnkPEC20MrEMuO/Rf5hR7HimX7TOcyrN9ucwF9jwiXmhjYB0Sc06so66ieaoKYB+Zs/N91sYl9nwiXmhjgA4ZddCmNE9VMNs3OI1fN/+0jEJKsqKNATpk1EHb0DxVgWyfYBlJ0/knRiElWdHGAB0y6qBd6BOhQti+aDv/xCikJCvaGKBDRh20K5xaaJ5qIKi96TL/xCikJCvaGKBDRh20D5xiaJ4qM9TcdJ1/YhRSkhVtDNAhow6aguapMrFa45KWPvNPjEJKsqKNATpk1EFT0TyVM6vxuisFulJISVa0MUCHjDpoSjgF0UXKiVlNMf90YV5jDwopyYo2BuiQUQdNDaciuswiEatl6vknRiElWdHGAB0y6qBejrHXl+ashh7zT4xCSrKijQE6ZNRBPeEjci1T6MDq1vYayz4UUpIVbQzQIaMO6k3zVC1YrTD/lHsfKaQkK9oYoENGHTQHzVM1YDXC/BOukWQ19KSQkqxoY4AOGXXQnHQnyCWsNri1b475J0YhJVnRxgAdMuqgueGjdM1TLbB65Jx/YhRSkhVtDNAhow46BMxTTf5yGqvBEPNPjEJKsqKNATpk1EGHglObA2wb27hx40bnSXl7bKcjuq6PW2Tvvc3tfb0ppCQr2higQ0YddGid56ksLM6am6b1Udn8sZumVeDg9+eP63wZkL1nzD+xWgxFISVZ0cYAHTLqoCVoPU+FkDCzuVZBFT22cVDh9+a/Hx7bOqjsfaa6vUpKCinJijYG6JBRBy1F49sTIxwWgiJoFFT2O+yxa4MKP5//XvzYRkFl7w3zT96Xt3SlkJKsaGOADhl10JJgjmblbV8QClFILFoZVPazVY9dGlRon/+cPQ5WBpW9p7639/WmkJKsaGOADhl10BLRr9FCGEThwNCgsrYmj90RVPj/eTv7/UU0qOy9pLi9rzeFlGRFGwN0yKiDlgrbuR0YCIEoFFa5Lajsv9s8djuo8O/5/7PfY7aDCttuSpx/YhRSkhVtDNAhow5asq15Kgz+KAya2Aoq0+WxCKY75v9mP18FwdTn66WGoJCSrGhjgA4ZddCiPf300x9cv379f0kYFOub3/zm/7D3UrDkIXXz4393hzlrLk3IBaNrVBugjQE6ZNRBi7exsTG7du0aDYTSnDlzhr6HwiULKRukIZxmE4bAUlitQBsDdMiog1ahhqCqNKCgd0jZoFQ47aSwWoI2BuiQUQetRslBVXFAQeeQskGocFpPYRWhjQE6ZNRBq1JiUFUeUNA6pGzQKZzaU1jN0cYAHTLqoNUpKahGEFDQOKRskCmc+pt8WNHGAB0y6qBVKiGoRhJQsDakbFApnNKbbFjRxgAdMuqg1RoyqEYUULA0pGwQDRlOGMRdXDfs+UqFbZ5UWNHGAB0y6qBVu3LlCg0Rb2xbKrYjpGzQDBlOeN1eX95hjz9sFFaFoo0BOmTUQaumkEpiO6RskFQdTjF7PoVVgWhjgA4ZddCqKaSSwKAYVTjF7PkVVgWhjQE6ZNRBq6aQ6ufpo/8xe/1f/uG9aHDk4h5OMXs9hVUBaGNgHVMhlQDblpognC4f+DgbEDlkD6eYvb7CakC0MbAOqpBKgG1LDaYeTjHbHoXVAGhjYB1VIZUA25aSKZxWs+1TWGWEgrM3JJJb8eEUs+2tMayqo5CSoVUXTjHbfoWVn0sKKRlK9eEUs/ejsEpn+/RUISW5jS6cYvb+FFbd7Zg7U0hJLqMPp5i9X4VVc0sn9hVS4m1y4RSz96+wWm7tp44KKfEy+XCKWT0UVrc0XhKhkJLU3jR/zzqbfMTqM+WwahxOgUJKPNw0xw39Knr5iNVnSmHVOpwChZR4Ulg1YPUZc1h1DqdAISU5KKwasPqMKax6h1OgkJKcFFYNWH1qDqtk4RQopGQICqsGrD41hVXycAoUUjIkhVUDVp+Sw8otnAKFlJRAYdWA1aeksHIPp0AhJSVRWMkOCikpkcJKtimkpGQKK1FISRUUVhOmkJKaKKwmSCElNVJYTYhCSmqmsJoAhBR2MnXx4N3XX3zwUzPm9L/unT2w5x+r8vA9n5r9273/nB3blpI9s/+f6D6HAb/qahWEFdbtTAHu0zWpUKaNwRMrvnfvyJEjszvvvFNG6IEHHqD7HP7zyCEWEuIPizgPs3E6drQxsE6pkJoghVRRJhtOAW0MrFMqpCZIIVWEyYdTQBsD65QKqQlSSA1K4RShjYF1SoXUBCmkBqFwWoI2BtYpFVITpJDKSuG0Bm0MrFMqpCZoVUid+vfDH0aDTLpRODVEGwPrlEtDKvjc5z43e+ihh2Z33XUX7fC1uvfee2c//OEPZ7/+9a9nN27c2PLWW29ttX3605+mj6kV9h2C6bHHHqP7OIK1OmO6F3duCqeWaGOADhl10KUef/zx2f79++kgqM0XvvCF7WBa5rvf/S59bG327t279RcN26dLXAr9A4NtPujYYJTbKZw6oo0BOmTUQdeqPaiaBFSAoyr2HLVAQOEvF7YfV9gOqQCDbz4I2eCcOoVTT7QxQIeMOuha6PS1nvrhFI+F0SpHjx6lz1WDlkdQwY6QCjAY54OSDdapUTglQhsDdMiogzaCOSo2KEqHIyMWRKu89tpr9LlKd99999F918DSkAowOOeDlA3esVM4JUYbA3TIqIM2gr+h2cAoHQuhJnAExp6vZI888gjddw2sDakAg3U+aNlgHhuFkxPaGKBDRh20MTYwSoZP7FgANfHZz36WPmfJOsxFBY1DKsDgnQ9iNrhrp3ByRhsDdMiogzbGBkbJPvOZz9AAagKPZc9ZMrbPGmodUoEN5j1jw96npEUbA3TIqIM2dvfdd9PBUSocDbEAauLEiRP0OUvG9llDnUNKpAvaGKBDRh20sX379tHBUao+IfX1r3+dPmfJ2D5rSCElWdHGAB0y6qCN1bZeCkHDAqiJ2hZ24i8Qts8aUkhJVrQxQIeMOmhjuMyCDZBSdVl+ELzyyiv0OUuFv0DYPmtIISVZ0cYAHTLqoI3hI242QEqF9U4sgJpiz1kqrGNj+6whhZRkRRsDdMiogzaGj7jZACnRJz7xCRo8bdR00XHDC4mXUUhJVrQxQIeMOmgrtcxLtbleb5la5qXwqSvbVy1smj1z+iopcUcbA+uEvULq0KFDdKCUBnNKLHjawC1d2HOXZtW9onpCX4FT5rhBiO1m/UqkDdoYzDsd65CNlb5eqs9K8xiOyNhrlKTHSvM+cPR1wYTw0hGYNEYbA+tMvUOq9KOpn/zkJzRwuij9aKrHRcUerhsE1zGjIy5ZijYG1nl6hxSUejTVZwHnMqUeTeH2OQMdRTV10yi0ZAfaGFhnSRJSpd4Pve+yAwa3GManhez1htRz2cEQcKSF+a0DrG/KdNDGwDpIkpCCgwcP0sEzFHwax0ImBZxCstccSs/FmyXAUdZZo8CaINoYWKdIFlKA29WyQZRbiiUH65Ry0XHHWwSXLASW7kAwEbQxsI6QNKQwWLyDCpPDTz311Oz8+fOzzc3N2QcffLDt/Rdenr2378Gs/nLy2du2Adv08ssvzzY2Nra2lb2HVDAP1XPhZulwSohPDO9g/VfGgTYGtvOThhR4BRWCKQ4lJmdQxQHF/P73v98KrE9+8pP0fXU1gYCKYdJdR1cjRBsD2+nJQwoQVKlWoyOcMNBZACyTI6iaBNSid999d/btb387SViN8BSvDRxdHTZaizUStDGwHe0SUkGfL2zA3TCbHDkt4xlUbQNqEQL30Ucfpe+5CXxAwWo9QZi7wqmgwqpytDGwHewaUoAvbWh7gzycHrEB3pZHUPUJqEXf//736XtfBjXEUg9W44lTWFWONga2Y91DKsAAa3IKiAlxNqi7ShlUqQIqwDqudad/CCes6mc1ldsorCpFGwPbodlCKsCRFU4D2dFV6oAKUgRV6oAKcEobBxXmnHBa1/HLPadOYVUZ2hjYjsweUjEcYeEGevjYng3iVPoElVdABVevXt06WtLpXFIIK30VVQVoY2A7cfCQgnPnztHBm1qXoPIOqODnP/85rY30tnV/LNb/pQy0MbCdN3hIfe1rX6OD1kuboMoVUMHp06dpjSQJrLPSKWCBaGNgO23wkGq7BiqFJkGVO6Dgz3/+8+xLX/oSrZMkgVPAY2wsyHBoY2A7bNCQwje4sMGaw6qgGiKggpdeeonWSpJCv9ftYgpBG4P5zmI7MYt33nmHDtRcWFANGVCBjqayOc7GheRFGwPbSYOF1JBHUYsWg6qEgAIdTWWFiXVdwDwg2hjMdxDbce5++9vf0gE6BARVKQEFOMJkNRM3Wq4wINoItlNwzx62w9w988wzdHDKLfjUk9VOXOkTwAHQRtsRgwUUlHKqVzKd8g0Gd1nQpHpGOxpsBwwaUICFi2xgyi04HWa1k2x0+pfJbf9jhR88oKCk+aiSsdpJVmcXx4/42P4PFDzaAYNhA1J20lKEIuDDJc1TOdr6hxW5mIACNiBlp29961u0fpKd5qkcFRdQwAak7KSQKgqWKehCZQcIqcHWQi3DBqTspJAqkibUE0NI7TJFBRUbkLKTQqpYCqqEtv5hRS0qqNiAlJ2w6JXVT4qgT/4S2f4PKyqCqoj5qaEvLK4Fq50URUGVwI4GK+ypqNDZaZ3UerjPFqudFEdB1RNttMLiyxVZwbPAJR9sYMotup1wVRRUPdBGsMLuNvhYlRXdVe5bBtcI1zey2kmxFFQd0cbACnuHGWRCXfNSq2m1eZUUVB3QxpgVN/s81auvvkoHp3ww++Uvf0lrJlXQ3T5boo2MFfeAyXb6p3tKLaf1UdXTOqoWaOMyVlyc/mW7pbBu2bKTbtEyGgqqhmjjOlbgY1HBXeBoCl/jxAbrVOkoajRwVqKLkhugjU2gwMb9qErLEW7BPB2rkVQLQaUveViDNrZhRcZRletclRZ3fvTlC/pEb5R0P6o1aGNbVmTMVeEm9Wwn9IbBOeXTPrx3ffHCqF1g40o+Qhu7smLvMbgBGNsRvWCQTjWoTp8+TWsio6KlCUvQxr6s4LisJvkp4NSCCu9VK8snRTfNI2hjClZw3FXhuEkaVggqXFzLBrUXBAWOZnIGpE7xJkkT6QRtTMmKnjysMEeVYw0VJqsXgwJLInIEJD4o0CT5ZF1i42jKaKMHK37ysMKaIa9r/LD0YVlQnDt3zuWoSqd3Mqf5qQW00ZPtAITVyws7pDcM7BRhhZDAWqQmd7xEgCHIUoQVth3Bp6MnWaD5qTna6M12AI6o2I7pBadmCJk2gYWQwQW7CLquIYH5Kpx+tgksbCMeo0/uZAl8Sq71U4Y2erPiu4TUIgQOTgdxhIIjnhjCwWNiGkdheG72moBtanKkJmJOsfEzNbTRmxXfPaRERmLyp3200ZsVXiEl0szkT/toozcrukJKpLlJn/bRRm9W9CQh9ZWvfGX25JNP0p+JjMxkT/toozcreO+QOnPmzOzGjRtbNjc3tyal0baxsUF/X6Rym2wsTQFt9GYF7xVSiwG1zJUrV7aC6/nnn589++yzsxMnTtDnygFHe9gGbAu2Cdv25ptvKlClrWNsPI0dbfRmxe4cUk0CahUcdSEkLl68ODt//vyW5557bitEgqankIuPgfB8IYjwWmwbgmvXrimopA1crTG5SXTa6M0K3TmkMKgxuNmgrw1CTHNq0tLkvhaLNnqzQvc63RtDUCmgpIdJ3SmBNnqzIveeOK85qBRQ0tOk7pRAG71ZkXuHFNQYVAooSWQySxJoozcrcJKQgpqCSgElCU3maIo2erMCJwspqCGoFFDiYBJHU7TRmxU3aUhByUGlgBInkziaoo3erLjJQwouX75MQ2JoWMTJtlckgdEfTdFGb1bY5CGFxZksIEqBRahsu0V6Gv3RFG30ZoVNGlKlB1SgoBInu9k4Gwva6M2KmiykagmoQEElDka9Cp02erOiJgmp2gIqUFCJg9GuQqeN3qygvUOq1oAKFFSS2Gi/Bos2ekNBowK3UntABQoqSegmG2tjQBu9WUE7hxRuhcIGfK1wixf2PkU6OMzGW+1oozcrZueQwqJILI5kA742OCJk71Gko1EuR6CN3qyYvU73xhBUCihxMroJdNrozQrZe+K85qBSQImj0X2zDG30ZoXsHVJQY1ApoMTZdTbmakYbvVkhk4QU1BRUCijJZFTX89FGb1bEZCEFNQSVAkoyGtUKdNrozYqYNKSg5KBSQElmo1ozRRu9WRGThxRgzRELiaGxbRVxdoCNvRrRRm9WQIWUiK/RfMpHG71ZARVSIr5G8ykfbfRmBVRIifgbxX2maKM3K55CSsTfMTb+akMbvVnxFFIi/kZxLR9t9GbFU0iJ5LGLjcGa0EZvVjiFlEge1S9FoI3erHAKKZE8ql+KQBu9WeEUUiJ5VD8vRRu9WeEUUiKZxOOvNrTRmxVOISWST9V3RaCN3qxoCimRfKpeL0UbvVnRFFIi+Vxg47AWtNGbFU0hJZLPJhuHtaCN3qxoCimRjOIxWBPa6M2KppASyavayXPa6M0KppASyavaLw6ljd6sYAopkbyOs7FYA9roDQWLCpiEQkpkqWpXntNGb1YwhZRIXtV+wkcbvVnBFFIimcXjsBa00ZsVTCElkl+V95aijd6sWAopkfyqXIZAG71ZsRRSIvkppJqyYimkRPKrchkCbfSGYkXFS0IhJbKSQqopFCsqXhIKKZGVzrHxWDra6M2KpZASye+/2XgsHW30ZsVSSInkV+VXr9NGb1YshZRIfu+x8Vg62ujNiqWQEsnvr2w8lo42erNiKaREBhCPxRrQRm9WLIWUyADisVgD2ujNiqWQEhlAPBZrQBu9WbEUUiIDiMdiDWijNyuWQkpkAPFYrAFt9GSF2m1uLhYuFYVUGo899hhtl1Go7l7ntNGLFcgtoEAhlYZCavSqCira6MEK4xpQoJBKQyE1CdUEFW1MzQriHlCgkEpDITUZVQQVbUzJCpEloEAhlcajjz5K22WUig8q2piKFSBbQIFCKo1Dhw7RdhmtooOKNqZgbzxrQIFCKg2F1CQVG1S0MQV709ejIrhTSKVx//3303YZvSLvgU4bU7A3rCOpObatJTt48CBtl1E7y8ZxCWhjKvbGNSdl2LaW7J577qHtMlrFBhTQxpSsAPp0j2xryfbt2zd7/PHH6c9kdIoOKKCNqVkhsgSVQioNhNSRI0foz2RUig8ooI0erCDuQaWQSgMh9eCDD9KfyWhUEVBAG71YYVyDSiGVBkJq//799GcyCtUEFNBGT1Ygt6BSSKWBkLrrrrvoz6R6VQUU0EZPViSFVOEQUnfeeaeu4RsnhdQqViCd7lUghNRDDz1Efy7V0+keY4XRxHklQkjh3+znMgqaOF9kBXEPKFBIpRFCCrReatSqCCramJIVIktAgUIqjcWQ0sXGo1d8UNHGVKwA2QIKFFJpLIaUTvkmoeigoo0p2BvPGlCgkEpjMaTg6NGj9PdkVIoNKtqYgr3pS1ER3Cmk0ohDSqvPJ2Nyt2rZZTYXCuBOIZVGHFJa2DkJ07vpHdgbzxpUCqk04pACTaCP2jRvHxxYAbIF1cbGBg2JobFtLRkLqT179tDflepN+4sYAitEtqBiITE0tp0lYyEFOpoaneIDCmijBytIlqBiITE0tp0lWxZSOpoalSoCCmijFyuMe1BduXKFBsWQ2HaWbFlIgY6mRqGagALa6MkK5BpUFy9epEExJLadJVsVUjia0qUyVSsioGxc7DZ7zGFzbP7fdAnEjoYcrFDHo8Ilc+bMGRoUQ2LbWbJVIQVaN1WveCzmZGPhgLlgboaxscSmQXDtwuPok3mzYrmFVImf8LHtLNm6kMK6Ka1Cr1M8FnOwMYBwur44JhpCmB2nT+rNiuUWUvDmm2+yNzwYto0lWxdSgN9hj5WyxWPRk/X9XQZHTnRcNEWf3JsVyzWkSpuXYttYsiYhBbopXn3isejF+j0CCqdtdEy0QV/AmxXLNaSee+45+maHwraxZE1DSqd99YnHogfr88kCCuiLeLNiuYYUlHTKx7avZE1DCvbu3UufQ8oUj0UP1ucvxWOgD/oi3qxY7iF1/vx5+oaHwLavZG1CCg4ePEifR8oTj8XUrL8fj/t/X/SFvFmx3EPqxIkT9A0PgW1fydqGFGiRZx3isZiS9XWc5q1bXtAafTFvViz3kIJSJtDZtpWsS0iBvgKrfPFYTMn6evKjKKAv5s2KlSWkSjmaYttWsq4hhYl0BVXZ4rGYkvX1Lmuh1qIv5s2KlSWkoISjKbZdJesaUoCJdF02U654LKZi/RyXudD+3xd9QW9WrGwh9eSTT86uXbtG33wubLtK1iekQEFVrngspmL93OVUD+gLerNiZQspeP755+mbz4VtU8n6hhQoqMoUj8VUrJ+fjft9KvQFvVmxsoYUDHkLF7Y9JUsRUqCgKk88FlOxfp50bdQi+oLerFjZQ2rI0z62PSVLFVKgyfSyxGMxFevnCqkUhvqiBrYtJUsZUoCgOnLkCH0tySsei6lYP1dIpTLE/abYdpQsdUgFuiB5ePFYTMX6efJFnAF9QW9WrMFCCnIvS2DbUDKvkIL77rtP81QDisdiCtbHsdKc9v0U6It6s2INGlKQM6jY65fMM6QAtyDWPNUw4rGYgvVx3NSO9v0U6It6s2INHlKQK6jYa5fMO6QC3YY4v3gspmB93G35AdAX9WbFKiKkIMccFXvdkuUKKcAyBU2q5xOPxb6sf7ue6gF9YW9WrGJCCnCTPM/lCew1S5YzpALNVeURj8W+rH+7rTQP6At7s2IVFVKAi5E3Nzdpkfpir1eyIUIKsFQBp4AKKz/xWOzD+rbb9XqL6It7s2IVF1IBbpaX+qiKvU7JhgqpQGHlajcbk21Zv056i+BV6AZ4s0IVG1KAo6rLly/TgnXBXqNkQ4dUgLDCXT91H/WkjrMx2Zb1a9fJ8kV0A7yhUFHhioQV6imu+WPPXbJSQmrR/v37Z4888gjdXmnlutn60s0urD/jCCpbQAHdEG9WpCpCKkBY9VmuwJ6zZCWGVICjK0yyK7B6OcvG5TrWlzEHleUUbxHdGG9WpKpCKsBFyrjtS9ujK/ZcJSs5pBYhsHCEhfura3Foa42Dyvowjp7cP8Vbhm6UNytQlSG1CIGFpQsvvfTS2tBijy9ZLSEVQ2hh2zHpjiMtBddaOPU7zMao9VsEE1aSZz21Y3ZsXEr2AncYvFGk8CmDK6UvXb169ToGNuA0Cp+oYVHlxsYGK2QVEFqnT5/eej8/+9nPtr73LwjvFZPxeK84GsMpJHueEniGFJ7785///Ox73/vell/84hcUaoSff/WrX92aOMeCz64UVo389eTJk//1ne98Z/OnP/3p22+99dZ7NlZpaORGw6Ure0Kk72GD73/vfFU0BjQ6KT5lI8UsRjiS6vNFpFibhecoKaBTh9QXv/jF2Y9+9KPZr371K1qDJkqs09jhL14cPLzxxhtudzhogoZNW/ZEe4zLYSECC4ViRRwCghODxWOFOsIO4YzOwV47lxQhdf/9928dCfUJ8GXwnDgiHbpOU4Ijfzu6+pDtD280dJqyJ0A4ud3sahE65pBhhXDKdUEyAnDIQdgnpBBOL774In1fqQ1dp6lBnXONgUU0fNaxB2KuCad09Ek94bA/53wOdgwGAtsWbxiEQwRz15DCkZPHEeY6eE0cgbL3IumhT7L94IWG0Cr2oGNm0HNUwCmX99+gmP/wOF1pC6e8Oefn2obUww8/3Gu+KRX8BVb6POZY4C8Ftg880CBi7JezrzRdx7NT5twJTeBoARP1bFtTaxNSJ0+epNs7lKGOPqco5aVjq9BAitkvIqCyrzRtAp0y9Sc+Q5x3N5VjADYNqVxzT13gFJ29N0kHZzI5Tu9pKC2yX8JSeJfveE8pxeBF0XP97dAHQpRtfypNQqrkgAq86yR55qdoMAX2C5ggH3z+qam+p0OY+2HPWyLPAbgupGoIqEBB5c/7aIqGE9gPiz3FW6bPqV/Jp3jLeJ36rQqpmgIq0KmfL3yIxeqeyCkaUGA/zLL+KTUEVdtP/YZaYpCCx3KMZSFV2iR5G7k+dJgi9EFW8wRwkLRrWUANdsVzCjhtY8VkHAucRZdQXoeFFJYZsNevBeqk5Ql+WM17wjTT1l1EWUBluW+xtyaL+zC4S1gH1VebUG6ChVQJ66D6Sl0nucVhHG3fnYGFVFXzUMs0+ZvT+Vw6q5SnM3FIYSU5e80aaWW6j8QfOp1azKQ4oHAHA/agKq36ZAcBxh5TK/xNlvK0LwQUrsVD4LPXrJHH6bEkDakdN+NbDCh8mlfNcoOmlk0s1/hp3jqpPsX68pe/vB1SNX6at44+7UsvUUjRu4Vu/4f9wqiOogIszowLOrajqABHCfF77eIHP/jB9lEUe53a6WgqPVbnlpbeznj7P+yXil9V3lU8NzXGo6ig79qpb3zjG9shdfbsWfoaY6C5qXSwNpHVuIWV91vf+of9Eu4LxR48CouH9/gbdExzLDFcdL3Ygdp64YUXtkNqzHXCHB57/9Jez4vxb5skZ7b+Yb9Y1N0NUlvskDmuNRpan/VAf/rTn7ZCCrf8Zc89JroVcRr4i5HVdw3Mf9MvgYht/WP+APZEoxE6ZA0XEPfV9VQGyxjwByE1xgnzmCbQ++u4GBrLnBp/3TsCahSLN9cJA3fMpzAB+7Cgibffftv6xEchNYZFruv0PTWWTp/q4VujWn2DMkIKd9pkTzYqGLgJJviq0OVTPsxFhT8XLlygzztGrBbSTMu5KBw97bHuRYNoldHPRwU4MpjCfFTQZr4Fn+gt/nn11Vfpc46RxwXaU4D+1fCsBFNJx6xb0QBqAiFV5d0Ouqj5bgdtNb1MBgH14YcfWl+49ec3v/kNfc4x0lKE9hoGFMIJNypodWrHIKTYC4xSx08hqtRkUhhBFgcU/rzxxhv0OcdIk+ft4Mjzj3/84/+xWs5hvSUWhvcOp0AhNVKrBt9TTz01e+WVV2z/8z/vvPMOfc4x0p07m8H6whVnIjhqwrRR40/s2lBIjRTu8BB3NIQTJsjff/992/fL/0wppHT7ltUQTpjL/cMf/vC3qHaYCMcndZ0mw9uYVEhdvXqVto8RAhmnc4Cjpt/97ne2v5v9UUhNExYB43QOfvzjH7//+uuvv2undn+x/vCa1QqBhJUA7qF0u9nH/h+sBaOnOz4IxQAAAABJRU5ErkJggg==") + ContentType = "image/png" + } + ) +} +New-MgChatMessage -ChatId $chatId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + Content = "Hello world" + } +} +New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md index 093355d11d5..830c7b69a58 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "My Contoso Tab" + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/06805b9e-77e3-4b93-ac81-525eb87513b8" + Configuration = @{ + EntityId = "2DCA2E6C7A10415CAF6B8AB6661B3154" + ContentUrl = "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154/tabView" + WebsiteUrl = "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154" + RemoveUrl = "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154/uninstallTab" + } +} +New-MgChatTab -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeam.md b/src/Teams/Teams/examples/v1.0/New-MgTeam.md index 093355d11d5..b2072d7764c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeam.md @@ -1,18 +1,217 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups('dbd8de4f-5d47-48da-87f1-594bed003375')" + Channels = @( + @{ + DisplayName = "Class Announcements 📢" + IsFavoriteByDefault = $true + } + @{ + DisplayName = "Homework " + IsFavoriteByDefault = $true + } + ) + MemberSettings = @{ + AllowCreateUpdateChannels = $false + AllowDeleteChannels = $false + AllowAddRemoveApps = $false + AllowCreateUpdateRemoveTabs = $false + AllowCreateUpdateRemoveConnectors = $false + } + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('educationClass')" + DisplayName = "My Class Team" + Description = "My Class Team’s Description" +} +New-MgTeam -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('educationClass')" + DisplayName = "My Class Team" + Description = "My Class Team’s Description" + Channels = @( + @{ + DisplayName = "Class Announcements 📢" + IsFavoriteByDefault = $true + } + @{ + DisplayName = "Homework " + IsFavoriteByDefault = $true + } + ) + MemberSettings = @{ + AllowCreateUpdateChannels = $false + AllowDeleteChannels = $false + AllowAddRemoveApps = $false + AllowCreateUpdateRemoveTabs = $false + AllowCreateUpdateRemoveConnectors = $false + } + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups('71392b2f-1765-406e-86af-5907d9bdb2ab')" +} +New-MgTeam -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" + Visibility = "Private" + DisplayName = "Sample Engineering Team" + Description = "This is a sample engineering team, used to showcase the range of properties supported by this API" + Channels = @( + @{ + DisplayName = "Announcements 📢" + IsFavoriteByDefault = $true + Description = "This is a sample announcements channel that is favorited by default. Use this channel to make important team, product, and service announcements." + } + @{ + DisplayName = "Training " + IsFavoriteByDefault = $true + Description = "This is a sample training channel, that is favorited by default, and contains an example of pinned website and YouTube tabs." + Tabs = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.web')" + DisplayName = "A Pinned Website" + Configuration = @{ + ContentUrl = "https://docs.microsoft.com/microsoftteams/microsoft-teams" + } + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.youtube')" + DisplayName = "A Pinned YouTube Video" + Configuration = @{ + ContentUrl = "https://tabs.teams.microsoft.com/Youtube/Home/YoutubeTab?videoId=X8krAMdGvCQ" + WebsiteUrl = "https://www.youtube.com/watch?v=X8krAMdGvCQ" + } + } + ) + } + @{ + DisplayName = "Planning 📅 " + Description = "This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu." + IsFavoriteByDefault = $false + } + @{ + DisplayName = "Issues and Feedback " + Description = "This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu." + } + ) + MemberSettings = @{ + AllowCreateUpdateChannels = $true + AllowDeleteChannels = $true + AllowAddRemoveApps = $true + AllowCreateUpdateRemoveTabs = $true + AllowCreateUpdateRemoveConnectors = $true + } + GuestSettings = @{ + AllowCreateUpdateChannels = $false + AllowDeleteChannels = $false + } + FunSettings = @{ + AllowGiphy = $true + GiphyContentRating = "Moderate" + AllowStickersAndMemes = $true + AllowCustomMemes = $true + } + MessagingSettings = @{ + AllowUserEditMessages = $true + AllowUserDeleteMessages = $true + AllowOwnerDeleteMessages = $true + AllowTeamMentions = $true + AllowChannelMentions = $true + } + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" + DisplayName = "My Sample Team" + Description = "My Sample Team’s Description" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('0040b377-61d8-43db-94f5-81374122dc7e')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" + DisplayName = "My Sample Team" + Description = "My Sample Team’s Description" +} +New-MgTeam -BodyParameter $params +``` +###Example 8 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" + DisplayName = "My Sample Team" + Description = "My Sample Team’s Description" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" + } + ) +} +New-MgTeam -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md index 093355d11d5..09015c9b8df 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md @@ -1,18 +1,80 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@microsoft.graph.channelCreationMode" = "migration" + DisplayName = "Import_150958_99z" + Description = "Import_150958_99z" + CreatedDateTime = [System.DateTime]::Parse("2020-03-14T11:22:17.067Z") +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Architecture Discussion" + Description = "This channel is where we debate all future architecture plans" + MembershipType = "standard" +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#Microsoft.Graph.channel" + MembershipType = "private" + DisplayName = "My First Private Channel" + Description = "This is my first private channels" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('62855810-484b-4823-9e01-60667f8b12ae')" + Roles = @( + "owner" + ) + } + ) +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#Microsoft.Graph.channel" + MembershipType = "private" + DisplayName = "My First Private Channel" + Description = "This is my first private channels" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" + Roles = @( + "owner" + ) + } + ) +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "My First Shared Channel" + Description = "This is my first shared channel" + MembershipType = "shared" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('7640023f-fe43-573f-9ff4-84a9efe4acd6')" + Roles = @( + "owner" + ) + } + ) +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md index 093355d11d5..d3fe9a47cc8 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +New-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md index 093355d11d5..bcf6b52d9dc 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md @@ -1,18 +1,74 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/24b3819b-4e1d-4f3e-86bd-e42b54d0b2b4" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users/bc3598dd-cce4-4742-ae15-173429951408" + TenantId = "a18103d1-a6ef-4f66-ac64-e4ef42ea8681" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md index 093355d11d5..48a7d0f8822 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md @@ -1,18 +1,261 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + Content = "Hello World" + } +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + Content = "Hello World" + } +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Hello World Jane Smith" + } + Mentions = @( + @{ + Id = 0 + MentionText = "Jane Smith" + Mentioned = @{ + User = @{ + DisplayName = "Jane Smith" + Id = "ef1c916a-3135-4417-ba27-8eb7bd084193" + UserIdentityType = "aadUser" + } + } + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Subject = $null + Body = @{ + ContentType = "html" + Content = "" + } + Attachments = @( + @{ + Id = "74d20c7f34aa4a7fb74e2b30004247c5" + ContentType = "application/vnd.microsoft.card.thumbnail" + ContentUrl = $null + Content = "{ + "title": "This is an example of posting a card", + "subtitle": "

This is the subtitle

", + "text": "Here is some body text.
\r\nAnd a hyperlink.
\r\nAnd below that is some buttons:", + "buttons": [ + { + "type": "messageBack", + "title": "Login to FakeBot", + "text": "login", + "displayText": "login", + "value": "login" + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Here's the latest budget. " + } + Attachments = @( + @{ + Id = "153fa47d-18c9-4179-be08-9879815a9f90" + ContentType = "reference" + ContentUrl = "https://m365x987948.sharepoint.com/sites/test/Shared%20Documents/General/test%20doc.docx" + Name = "Budget.docx" + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 6 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Subject = $null + Body = @{ + ContentType = "html" + Content = "" + } + Attachments = @( + @{ + Id = "74d20c7f34aa4a7fb74e2b30004247c5" + ContentType = "application/vnd.microsoft.card.adaptive" + ContentUrl = $null + Content = "{ + "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", + "type": "AdaptiveCard", + "version": "1.2", + "speak": "The Seattle Seahawks beat the Carolina Panthers 40-7", + "body": [ + { + "type": "Container", + "items": [ + { + "type": "ColumnSet", + "columns": [ + { + "type": "Column", + "width": "auto", + "items": [ + { + "type": "Image", + "url": "../hostedContents/1/$value", + "size": "Medium" + }, + { + "type": "TextBlock", + "text": "SHADES", + "horizontalAlignment": "Center", + "weight": "Bolder" + } + ] + }, + { + "type": "Column", + "width": "stretch", + "separator": true, + "spacing": "Medium", + "items": [ + { + "type": "TextBlock", + "text": "2019-08-31T19:30:00Z", + "horizontalAlignment": "Center" + }, + { + "type": "TextBlock", + "text": "Final", + "spacing": "None", + "horizontalAlignment": "Center" + }, + { + "type": "TextBlock", + "text": "40 - 7", + "size": "ExtraLarge", + "horizontalAlignment": "Center" + } + ] + }, + { + "type": "Column", + "width": "auto", + "separator": true, + "spacing": "Medium", + "items": [ + { + "type": "Image", + "url": "../hostedContents/2/$value", + "size": "Medium", + "horizontalAlignment": "Center" + }, + { + "type": "TextBlock", + "text": "SKINS", + "horizontalAlignment": "Center", + "weight": "Bolder" + } + ] + } + ] + } + ] + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + ) + HostedContents = @( + @{ + "@microsoft.graph.temporaryId" = "1" + ContentBytes = [System.Text.Encoding]::ASCII.GetBytes("iVBORw0KGgoAAAANSUhEUgAAASkAAAEpCAYAAADPmdSCAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAhr0lEQVR4Xu3d76tdV50GcP+EvJu3/QuGvJgXxSk0Y8QwzZRmCG2lQkjrkM4UjOmLgmAt0bQGLqipo1ghmIhSRBIMbV+UpmiIRSYV9IqmHaqNgRJbUGqoA30xMGe+z+1ZNyfrPuec/WN9115r7yfw6Y917zlnn+9e68ne66y9z8dms1kjTzzxxC6zxxw3h80d7Pekfti3832MfX3A7GK/J5IDbYxZJz1mbppZ5JJRBx4J7Etzar5vY8fZY0S80cZF6JxRZ41dN7vZY6Uetg8RUJvzfbrMWfZYEU+0MbBOicN+1lljOMo6zJ5Dymf7bvd8H7J9G9vDnkPEC20MrEMuO/Rf5hR7HimX7TOcyrN9ucwF9jwiXmhjYB0Sc06so66ieaoKYB+Zs/N91sYl9nwiXmhjgA4ZddCmNE9VMNs3OI1fN/+0jEJKsqKNATpk1EHb0DxVgWyfYBlJ0/knRiElWdHGAB0y6qBd6BOhQti+aDv/xCikJCvaGKBDRh20K5xaaJ5qIKi96TL/xCikJCvaGKBDRh20D5xiaJ4qM9TcdJ1/YhRSkhVtDNAhow6aguapMrFa45KWPvNPjEJKsqKNATpk1EFT0TyVM6vxuisFulJISVa0MUCHjDpoSjgF0UXKiVlNMf90YV5jDwopyYo2BuiQUQdNDaciuswiEatl6vknRiElWdHGAB0y6qBejrHXl+ashh7zT4xCSrKijQE6ZNRBPeEjci1T6MDq1vYayz4UUpIVbQzQIaMO6k3zVC1YrTD/lHsfKaQkK9oYoENGHTQHzVM1YDXC/BOukWQ19KSQkqxoY4AOGXXQnHQnyCWsNri1b475J0YhJVnRxgAdMuqgueGjdM1TLbB65Jx/YhRSkhVtDNAhow46BMxTTf5yGqvBEPNPjEJKsqKNATpk1EGHglObA2wb27hx40bnSXl7bKcjuq6PW2Tvvc3tfb0ppCQr2higQ0YddGid56ksLM6am6b1Udn8sZumVeDg9+eP63wZkL1nzD+xWgxFISVZ0cYAHTLqoCVoPU+FkDCzuVZBFT22cVDh9+a/Hx7bOqjsfaa6vUpKCinJijYG6JBRBy1F49sTIxwWgiJoFFT2O+yxa4MKP5//XvzYRkFl7w3zT96Xt3SlkJKsaGOADhl10JJgjmblbV8QClFILFoZVPazVY9dGlRon/+cPQ5WBpW9p7639/WmkJKsaGOADhl10BLRr9FCGEThwNCgsrYmj90RVPj/eTv7/UU0qOy9pLi9rzeFlGRFGwN0yKiDlgrbuR0YCIEoFFa5Lajsv9s8djuo8O/5/7PfY7aDCttuSpx/YhRSkhVtDNAhow5asq15Kgz+KAya2Aoq0+WxCKY75v9mP18FwdTn66WGoJCSrGhjgA4ZddCiPf300x9cv379f0kYFOub3/zm/7D3UrDkIXXz4393hzlrLk3IBaNrVBugjQE6ZNRBi7exsTG7du0aDYTSnDlzhr6HwiULKRukIZxmE4bAUlitQBsDdMiog1ahhqCqNKCgd0jZoFQ47aSwWoI2BuiQUQetRslBVXFAQeeQskGocFpPYRWhjQE6ZNRBq1JiUFUeUNA6pGzQKZzaU1jN0cYAHTLqoNUpKahGEFDQOKRskCmc+pt8WNHGAB0y6qBVKiGoRhJQsDakbFApnNKbbFjRxgAdMuqg1RoyqEYUULA0pGwQDRlOGMRdXDfs+UqFbZ5UWNHGAB0y6qBVu3LlCg0Rb2xbKrYjpGzQDBlOeN1eX95hjz9sFFaFoo0BOmTUQaumkEpiO6RskFQdTjF7PoVVgWhjgA4ZddCqKaSSwKAYVTjF7PkVVgWhjQE6ZNRBq6aQ6ufpo/8xe/1f/uG9aHDk4h5OMXs9hVUBaGNgHVMhlQDblpognC4f+DgbEDlkD6eYvb7CakC0MbAOqpBKgG1LDaYeTjHbHoXVAGhjYB1VIZUA25aSKZxWs+1TWGWEgrM3JJJb8eEUs+2tMayqo5CSoVUXTjHbfoWVn0sKKRlK9eEUs/ejsEpn+/RUISW5jS6cYvb+FFbd7Zg7U0hJLqMPp5i9X4VVc0sn9hVS4m1y4RSz96+wWm7tp44KKfEy+XCKWT0UVrc0XhKhkJLU3jR/zzqbfMTqM+WwahxOgUJKPNw0xw39Knr5iNVnSmHVOpwChZR4Ulg1YPUZc1h1DqdAISU5KKwasPqMKax6h1OgkJKcFFYNWH1qDqtk4RQopGQICqsGrD41hVXycAoUUjIkhVUDVp+Sw8otnAKFlJRAYdWA1aeksHIPp0AhJSVRWMkOCikpkcJKtimkpGQKK1FISRUUVhOmkJKaKKwmSCElNVJYTYhCSmqmsJoAhBR2MnXx4N3XX3zwUzPm9L/unT2w5x+r8vA9n5r9273/nB3blpI9s/+f6D6HAb/qahWEFdbtTAHu0zWpUKaNwRMrvnfvyJEjszvvvFNG6IEHHqD7HP7zyCEWEuIPizgPs3E6drQxsE6pkJoghVRRJhtOAW0MrFMqpCZIIVWEyYdTQBsD65QKqQlSSA1K4RShjYF1SoXUBCmkBqFwWoI2BtYpFVITpJDKSuG0Bm0MrFMqpCZoVUid+vfDH0aDTLpRODVEGwPrlEtDKvjc5z43e+ihh2Z33XUX7fC1uvfee2c//OEPZ7/+9a9nN27c2PLWW29ttX3605+mj6kV9h2C6bHHHqP7OIK1OmO6F3duCqeWaGOADhl10KUef/zx2f79++kgqM0XvvCF7WBa5rvf/S59bG327t279RcN26dLXAr9A4NtPujYYJTbKZw6oo0BOmTUQdeqPaiaBFSAoyr2HLVAQOEvF7YfV9gOqQCDbz4I2eCcOoVTT7QxQIeMOuha6PS1nvrhFI+F0SpHjx6lz1WDlkdQwY6QCjAY54OSDdapUTglQhsDdMiogzaCOSo2KEqHIyMWRKu89tpr9LlKd99999F918DSkAowOOeDlA3esVM4JUYbA3TIqIM2gr+h2cAoHQuhJnAExp6vZI888gjddw2sDakAg3U+aNlgHhuFkxPaGKBDRh20MTYwSoZP7FgANfHZz36WPmfJOsxFBY1DKsDgnQ9iNrhrp3ByRhsDdMiogzbGBkbJPvOZz9AAagKPZc9ZMrbPGmodUoEN5j1jw96npEUbA3TIqIM2dvfdd9PBUSocDbEAauLEiRP0OUvG9llDnUNKpAvaGKBDRh20sX379tHBUao+IfX1r3+dPmfJ2D5rSCElWdHGAB0y6qCN1bZeCkHDAqiJ2hZ24i8Qts8aUkhJVrQxQIeMOmhjuMyCDZBSdVl+ELzyyiv0OUuFv0DYPmtIISVZ0cYAHTLqoI3hI242QEqF9U4sgJpiz1kqrGNj+6whhZRkRRsDdMiogzaGj7jZACnRJz7xCRo8bdR00XHDC4mXUUhJVrQxQIeMOmgrtcxLtbleb5la5qXwqSvbVy1smj1z+iopcUcbA+uEvULq0KFDdKCUBnNKLHjawC1d2HOXZtW9onpCX4FT5rhBiO1m/UqkDdoYzDsd65CNlb5eqs9K8xiOyNhrlKTHSvM+cPR1wYTw0hGYNEYbA+tMvUOq9KOpn/zkJzRwuij9aKrHRcUerhsE1zGjIy5ZijYG1nl6hxSUejTVZwHnMqUeTeH2OQMdRTV10yi0ZAfaGFhnSRJSpd4Pve+yAwa3GManhez1htRz2cEQcKSF+a0DrG/KdNDGwDpIkpCCgwcP0sEzFHwax0ImBZxCstccSs/FmyXAUdZZo8CaINoYWKdIFlKA29WyQZRbiiUH65Ry0XHHWwSXLASW7kAwEbQxsI6QNKQwWLyDCpPDTz311Oz8+fOzzc3N2QcffLDt/Rdenr2378Gs/nLy2du2Adv08ssvzzY2Nra2lb2HVDAP1XPhZulwSohPDO9g/VfGgTYGtvOThhR4BRWCKQ4lJmdQxQHF/P73v98KrE9+8pP0fXU1gYCKYdJdR1cjRBsD2+nJQwoQVKlWoyOcMNBZACyTI6iaBNSid999d/btb387SViN8BSvDRxdHTZaizUStDGwHe0SUkGfL2zA3TCbHDkt4xlUbQNqEQL30Ucfpe+5CXxAwWo9QZi7wqmgwqpytDGwHewaUoAvbWh7gzycHrEB3pZHUPUJqEXf//736XtfBjXEUg9W44lTWFWONga2Y91DKsAAa3IKiAlxNqi7ShlUqQIqwDqudad/CCes6mc1ldsorCpFGwPbodlCKsCRFU4D2dFV6oAKUgRV6oAKcEobBxXmnHBa1/HLPadOYVUZ2hjYjsweUjEcYeEGevjYng3iVPoElVdABVevXt06WtLpXFIIK30VVQVoY2A7cfCQgnPnztHBm1qXoPIOqODnP/85rY30tnV/LNb/pQy0MbCdN3hIfe1rX6OD1kuboMoVUMHp06dpjSQJrLPSKWCBaGNgO23wkGq7BiqFJkGVO6Dgz3/+8+xLX/oSrZMkgVPAY2wsyHBoY2A7bNCQwje4sMGaw6qgGiKggpdeeonWSpJCv9ftYgpBG4P5zmI7MYt33nmHDtRcWFANGVCBjqayOc7GheRFGwPbSYOF1JBHUYsWg6qEgAIdTWWFiXVdwDwg2hjMdxDbce5++9vf0gE6BARVKQEFOMJkNRM3Wq4wINoItlNwzx62w9w988wzdHDKLfjUk9VOXOkTwAHQRtsRgwUUlHKqVzKd8g0Gd1nQpHpGOxpsBwwaUICFi2xgyi04HWa1k2x0+pfJbf9jhR88oKCk+aiSsdpJVmcXx4/42P4PFDzaAYNhA1J20lKEIuDDJc1TOdr6hxW5mIACNiBlp29961u0fpKd5qkcFRdQwAak7KSQKgqWKehCZQcIqcHWQi3DBqTspJAqkibUE0NI7TJFBRUbkLKTQqpYCqqEtv5hRS0qqNiAlJ2w6JXVT4qgT/4S2f4PKyqCqoj5qaEvLK4Fq50URUGVwI4GK+ypqNDZaZ3UerjPFqudFEdB1RNttMLiyxVZwbPAJR9sYMotup1wVRRUPdBGsMLuNvhYlRXdVe5bBtcI1zey2kmxFFQd0cbACnuHGWRCXfNSq2m1eZUUVB3QxpgVN/s81auvvkoHp3ww++Uvf0lrJlXQ3T5boo2MFfeAyXb6p3tKLaf1UdXTOqoWaOMyVlyc/mW7pbBu2bKTbtEyGgqqhmjjOlbgY1HBXeBoCl/jxAbrVOkoajRwVqKLkhugjU2gwMb9qErLEW7BPB2rkVQLQaUveViDNrZhRcZRletclRZ3fvTlC/pEb5R0P6o1aGNbVmTMVeEm9Wwn9IbBOeXTPrx3ffHCqF1g40o+Qhu7smLvMbgBGNsRvWCQTjWoTp8+TWsio6KlCUvQxr6s4LisJvkp4NSCCu9VK8snRTfNI2hjClZw3FXhuEkaVggqXFzLBrUXBAWOZnIGpE7xJkkT6QRtTMmKnjysMEeVYw0VJqsXgwJLInIEJD4o0CT5ZF1i42jKaKMHK37ysMKaIa9r/LD0YVlQnDt3zuWoSqd3Mqf5qQW00ZPtAITVyws7pDcM7BRhhZDAWqQmd7xEgCHIUoQVth3Bp6MnWaD5qTna6M12AI6o2I7pBadmCJk2gYWQwQW7CLquIYH5Kpx+tgksbCMeo0/uZAl8Sq71U4Y2erPiu4TUIgQOTgdxhIIjnhjCwWNiGkdheG72moBtanKkJmJOsfEzNbTRmxXfPaRERmLyp3200ZsVXiEl0szkT/toozcrukJKpLlJn/bRRm9W9CQh9ZWvfGX25JNP0p+JjMxkT/toozcreO+QOnPmzOzGjRtbNjc3tyal0baxsUF/X6Rym2wsTQFt9GYF7xVSiwG1zJUrV7aC6/nnn589++yzsxMnTtDnygFHe9gGbAu2Cdv25ptvKlClrWNsPI0dbfRmxe4cUk0CahUcdSEkLl68ODt//vyW5557bitEgqankIuPgfB8IYjwWmwbgmvXrimopA1crTG5SXTa6M0K3TmkMKgxuNmgrw1CTHNq0tLkvhaLNnqzQvc63RtDUCmgpIdJ3SmBNnqzIveeOK85qBRQ0tOk7pRAG71ZkXuHFNQYVAooSWQySxJoozcrcJKQgpqCSgElCU3maIo2erMCJwspqCGoFFDiYBJHU7TRmxU3aUhByUGlgBInkziaoo3erLjJQwouX75MQ2JoWMTJtlckgdEfTdFGb1bY5CGFxZksIEqBRahsu0V6Gv3RFG30ZoVNGlKlB1SgoBInu9k4Gwva6M2KmiykagmoQEElDka9Cp02erOiJgmp2gIqUFCJg9GuQqeN3qygvUOq1oAKFFSS2Gi/Bos2ekNBowK3UntABQoqSegmG2tjQBu9WUE7hxRuhcIGfK1wixf2PkU6OMzGW+1oozcrZueQwqJILI5kA742OCJk71Gko1EuR6CN3qyYvU73xhBUCihxMroJdNrozQrZe+K85qBSQImj0X2zDG30ZoXsHVJQY1ApoMTZdTbmakYbvVkhk4QU1BRUCijJZFTX89FGb1bEZCEFNQSVAkoyGtUKdNrozYqYNKSg5KBSQElmo1ozRRu9WRGThxRgzRELiaGxbRVxdoCNvRrRRm9WQIWUiK/RfMpHG71ZARVSIr5G8ykfbfRmBVRIifgbxX2maKM3K55CSsTfMTb+akMbvVnxFFIi/kZxLR9t9GbFU0iJ5LGLjcGa0EZvVjiFlEge1S9FoI3erHAKKZE8ql+KQBu9WeEUUiJ5VD8vRRu9WeEUUiKZxOOvNrTRmxVOISWST9V3RaCN3qxoCimRfKpeL0UbvVnRFFIi+Vxg47AWtNGbFU0hJZLPJhuHtaCN3qxoCimRjOIxWBPa6M2KppASyavayXPa6M0KppASyavaLw6ljd6sYAopkbyOs7FYA9roDQWLCpiEQkpkqWpXntNGb1YwhZRIXtV+wkcbvVnBFFIimcXjsBa00ZsVTCElkl+V95aijd6sWAopkfyqXIZAG71ZsRRSIvkppJqyYimkRPKrchkCbfSGYkXFS0IhJbKSQqopFCsqXhIKKZGVzrHxWDra6M2KpZASye+/2XgsHW30ZsVSSInkV+VXr9NGb1YshZRIfu+x8Vg62ujNiqWQEsnvr2w8lo42erNiKaREBhCPxRrQRm9WLIWUyADisVgD2ujNiqWQEhlAPBZrQBu9WbEUUiIDiMdiDWijNyuWQkpkAPFYrAFt9GSF2m1uLhYuFYVUGo899hhtl1Go7l7ntNGLFcgtoEAhlYZCavSqCira6MEK4xpQoJBKQyE1CdUEFW1MzQriHlCgkEpDITUZVQQVbUzJCpEloEAhlcajjz5K22WUig8q2piKFSBbQIFCKo1Dhw7RdhmtooOKNqZgbzxrQIFCKg2F1CQVG1S0MQV709ejIrhTSKVx//3303YZvSLvgU4bU7A3rCOpObatJTt48CBtl1E7y8ZxCWhjKvbGNSdl2LaW7J577qHtMlrFBhTQxpSsAPp0j2xryfbt2zd7/PHH6c9kdIoOKKCNqVkhsgSVQioNhNSRI0foz2RUig8ooI0erCDuQaWQSgMh9eCDD9KfyWhUEVBAG71YYVyDSiGVBkJq//799GcyCtUEFNBGT1Ygt6BSSKWBkLrrrrvoz6R6VQUU0EZPViSFVOEQUnfeeaeu4RsnhdQqViCd7lUghNRDDz1Efy7V0+keY4XRxHklQkjh3+znMgqaOF9kBXEPKFBIpRFCCrReatSqCCramJIVIktAgUIqjcWQ0sXGo1d8UNHGVKwA2QIKFFJpLIaUTvkmoeigoo0p2BvPGlCgkEpjMaTg6NGj9PdkVIoNKtqYgr3pS1ER3Cmk0ohDSqvPJ2Nyt2rZZTYXCuBOIZVGHFJa2DkJ07vpHdgbzxpUCqk04pACTaCP2jRvHxxYAbIF1cbGBg2JobFtLRkLqT179tDflepN+4sYAitEtqBiITE0tp0lYyEFOpoaneIDCmijBytIlqBiITE0tp0lWxZSOpoalSoCCmijFyuMe1BduXKFBsWQ2HaWbFlIgY6mRqGagALa6MkK5BpUFy9epEExJLadJVsVUjia0qUyVSsioGxc7DZ7zGFzbP7fdAnEjoYcrFDHo8Ilc+bMGRoUQ2LbWbJVIQVaN1WveCzmZGPhgLlgboaxscSmQXDtwuPok3mzYrmFVImf8LHtLNm6kMK6Ka1Cr1M8FnOwMYBwur44JhpCmB2nT+rNiuUWUvDmm2+yNzwYto0lWxdSgN9hj5WyxWPRk/X9XQZHTnRcNEWf3JsVyzWkSpuXYttYsiYhBbopXn3isejF+j0CCqdtdEy0QV/AmxXLNaSee+45+maHwraxZE1DSqd99YnHogfr88kCCuiLeLNiuYYUlHTKx7avZE1DCvbu3UufQ8oUj0UP1ucvxWOgD/oi3qxY7iF1/vx5+oaHwLavZG1CCg4ePEifR8oTj8XUrL8fj/t/X/SFvFmx3EPqxIkT9A0PgW1fydqGFGiRZx3isZiS9XWc5q1bXtAafTFvViz3kIJSJtDZtpWsS0iBvgKrfPFYTMn6evKjKKAv5s2KlSWkSjmaYttWsq4hhYl0BVXZ4rGYkvX1Lmuh1qIv5s2KlSWkoISjKbZdJesaUoCJdF02U654LKZi/RyXudD+3xd9QW9WrGwh9eSTT86uXbtG33wubLtK1iekQEFVrngspmL93OVUD+gLerNiZQspeP755+mbz4VtU8n6hhQoqMoUj8VUrJ+fjft9KvQFvVmxsoYUDHkLF7Y9JUsRUqCgKk88FlOxfp50bdQi+oLerFjZQ2rI0z62PSVLFVKgyfSyxGMxFevnCqkUhvqiBrYtJUsZUoCgOnLkCH0tySsei6lYP1dIpTLE/abYdpQsdUgFuiB5ePFYTMX6efJFnAF9QW9WrMFCCnIvS2DbUDKvkIL77rtP81QDisdiCtbHsdKc9v0U6It6s2INGlKQM6jY65fMM6QAtyDWPNUw4rGYgvVx3NSO9v0U6It6s2INHlKQK6jYa5fMO6QC3YY4v3gspmB93G35AdAX9WbFKiKkIMccFXvdkuUKKcAyBU2q5xOPxb6sf7ue6gF9YW9WrGJCCnCTPM/lCew1S5YzpALNVeURj8W+rH+7rTQP6At7s2IVFVKAi5E3Nzdpkfpir1eyIUIKsFQBp4AKKz/xWOzD+rbb9XqL6It7s2IVF1IBbpaX+qiKvU7JhgqpQGHlajcbk21Zv056i+BV6AZ4s0IVG1KAo6rLly/TgnXBXqNkQ4dUgLDCXT91H/WkjrMx2Zb1a9fJ8kV0A7yhUFHhioQV6imu+WPPXbJSQmrR/v37Z4888gjdXmnlutn60s0urD/jCCpbQAHdEG9WpCpCKkBY9VmuwJ6zZCWGVICjK0yyK7B6OcvG5TrWlzEHleUUbxHdGG9WpKpCKsBFyrjtS9ujK/ZcJSs5pBYhsHCEhfura3Foa42Dyvowjp7cP8Vbhm6UNytQlSG1CIGFpQsvvfTS2tBijy9ZLSEVQ2hh2zHpjiMtBddaOPU7zMao9VsEE1aSZz21Y3ZsXEr2AncYvFGk8CmDK6UvXb169ToGNuA0Cp+oYVHlxsYGK2QVEFqnT5/eej8/+9nPtr73LwjvFZPxeK84GsMpJHueEniGFJ7785///Ox73/vell/84hcUaoSff/WrX92aOMeCz64UVo389eTJk//1ne98Z/OnP/3p22+99dZ7NlZpaORGw6Ure0Kk72GD73/vfFU0BjQ6KT5lI8UsRjiS6vNFpFibhecoKaBTh9QXv/jF2Y9+9KPZr371K1qDJkqs09jhL14cPLzxxhtudzhogoZNW/ZEe4zLYSECC4ViRRwCghODxWOFOsIO4YzOwV47lxQhdf/9928dCfUJ8GXwnDgiHbpOU4Ijfzu6+pDtD280dJqyJ0A4ud3sahE65pBhhXDKdUEyAnDIQdgnpBBOL774In1fqQ1dp6lBnXONgUU0fNaxB2KuCad09Ek94bA/53wOdgwGAtsWbxiEQwRz15DCkZPHEeY6eE0cgbL3IumhT7L94IWG0Cr2oGNm0HNUwCmX99+gmP/wOF1pC6e8Oefn2obUww8/3Gu+KRX8BVb6POZY4C8Ftg880CBi7JezrzRdx7NT5twJTeBoARP1bFtTaxNSJ0+epNs7lKGOPqco5aVjq9BAitkvIqCyrzRtAp0y9Sc+Q5x3N5VjADYNqVxzT13gFJ29N0kHZzI5Tu9pKC2yX8JSeJfveE8pxeBF0XP97dAHQpRtfypNQqrkgAq86yR55qdoMAX2C5ggH3z+qam+p0OY+2HPWyLPAbgupGoIqEBB5c/7aIqGE9gPiz3FW6bPqV/Jp3jLeJ36rQqpmgIq0KmfL3yIxeqeyCkaUGA/zLL+KTUEVdtP/YZaYpCCx3KMZSFV2iR5G7k+dJgi9EFW8wRwkLRrWUANdsVzCjhtY8VkHAucRZdQXoeFFJYZsNevBeqk5Ql+WM17wjTT1l1EWUBluW+xtyaL+zC4S1gH1VebUG6ChVQJ66D6Sl0nucVhHG3fnYGFVFXzUMs0+ZvT+Vw6q5SnM3FIYSU5e80aaWW6j8QfOp1azKQ4oHAHA/agKq36ZAcBxh5TK/xNlvK0LwQUrsVD4LPXrJHH6bEkDakdN+NbDCh8mlfNcoOmlk0s1/hp3jqpPsX68pe/vB1SNX6at44+7UsvUUjRu4Vu/4f9wqiOogIszowLOrajqABHCfF77eIHP/jB9lEUe53a6WgqPVbnlpbeznj7P+yXil9V3lU8NzXGo6ig79qpb3zjG9shdfbsWfoaY6C5qXSwNpHVuIWV91vf+of9Eu4LxR48CouH9/gbdExzLDFcdL3Ygdp64YUXtkNqzHXCHB57/9Jez4vxb5skZ7b+Yb9Y1N0NUlvskDmuNRpan/VAf/rTn7ZCCrf8Zc89JroVcRr4i5HVdw3Mf9MvgYht/WP+APZEoxE6ZA0XEPfV9VQGyxjwByE1xgnzmCbQ++u4GBrLnBp/3TsCahSLN9cJA3fMpzAB+7Cgibffftv6xEchNYZFruv0PTWWTp/q4VujWn2DMkIKd9pkTzYqGLgJJviq0OVTPsxFhT8XLlygzztGrBbSTMu5KBw97bHuRYNoldHPRwU4MpjCfFTQZr4Fn+gt/nn11Vfpc46RxwXaU4D+1fCsBFNJx6xb0QBqAiFV5d0Ouqj5bgdtNb1MBgH14YcfWl+49ec3v/kNfc4x0lKE9hoGFMIJNypodWrHIKTYC4xSx08hqtRkUhhBFgcU/rzxxhv0OcdIk+ft4Mjzj3/84/+xWs5hvSUWhvcOp0AhNVKrBt9TTz01e+WVV2z/8z/vvPMOfc4x0p07m8H6whVnIjhqwrRR40/s2lBIjRTu8BB3NIQTJsjff/992/fL/0wppHT7ltUQTpjL/cMf/vC3qHaYCMcndZ0mw9uYVEhdvXqVto8RAhmnc4Cjpt/97ne2v5v9UUhNExYB43QOfvzjH7//+uuvv2undn+x/vCa1QqBhJUA7qF0u9nH/h+sBaOnOz4IxQAAAABJRU5ErkJggg==") + ContentType = "image/png" + } + @{ + "@microsoft.graph.temporaryId" = "2" + ContentBytes = [System.Text.Encoding]::ASCII.GetBytes("iVBORw0KGgoAAAANSUhEUgAAASkAAAEpCAYAAADPmdSCAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAg2UlEQVR4Xu3dz8tcVZ4G8P4TspulWfTGzZiFCxHBgDKCGTAQXgQXmhaMMy70deGq0xJbuwMBMTpCuwgmoIhIhKAuGiPdIQ7NRKF5m1YztJoOiI5gYwdnwMXA1Hyf1zpvyvM+VXV/nO+559z7BD7+OO9bVfd+7zlP7j116tZPZrNZI0888cQes98cM4fNXvZ7Uj8c2/kxxrE+aPaw3xPJgTbGrJNummtmFrlg1IFHAsfSnJwf29gx9hgRb7RxETpn1FljV80+9liphx1DBNTW/Jguc4Y9VsQTbQysU+K0n3XWGM6yDrPnkPLZsds3P4bs2Mb2s+cQ8UIbA+uQy079lznJnkfKZccMl/LsWC5zjj2PiBfaGFiHxJwT66iraJ6qAjhG5sz8mLVxgT2fiBfaGKBDRh20Kc1TFcyODS7j180/LaOQkqxoY4AOGXXQNjRPVSA7JlhG0nT+iVFISVa0MUCHjDpoF3pHqBB2LNrOPzEKKcmKNgbokFEH7QqXFpqnGghqb7rMPzEKKcmKNgbokFEH7QOXGJqnygw1N13nnxiFlGRFGwN0yKiDpqB5qkys1vhIS5/5J0YhJVnRxgAdMuqgqWieypnVeN0nBbpSSElWtDFAh4w6aEq4BNGHlBOzmmL+6dy8xh4UUpIVbQzQIaMOmhouRfQxi0SslqnnnxiFlGRFGwN0yKiDetlkry/NWQ095p8YhZRkRRsDdMiog3rCW+RaptCB1a3tZyz7UEhJVrQxQIeMOqg3zVO1YLXC/FPuY6SQkqxoY4AOGXXQHDRP1YDVCPNP+Iwkq6EnhZRkRRsDdMiog+akO0EuYbXBrX1zzD8xCinJijYG6JBRB80Nb6VrnmqB1SPn/BOjkJKsaGOADhl10CFgnmryH6exGgwx/8QopCQr2higQ0YddCi4tDnItrGNL7/8svOkvD220xld18ctsn1vc3tfbwopyYo2BuiQUQcdWud5KguLM+aaaX1WNn/slmkVOPj9+eM6fwzI9hnzT6wWQ1FISVa0MUCHjDpoCVrPUyEkzGyuVVBFj20cVPi9+e+Hx7YOKtvPVLdXSUkhJVnRxgAdMuqgpWh8e2KEw0JQBI2Cyn6HPXZtUOHn89+LH9soqGzfMP/k/fGWrhRSkhVtDNAhow5aEszRrLztC0IhColFK4PKfrbqsUuDCu3zn7PHwcqgsn3qe3tfbwopyYo2BuiQUQctEf0aLYRBFA4MDSpra/LYXUGF/5+3s99fRIPK9iXF7X29KaQkK9oYoENGHbRU2M6dwEAIRKGwyo+Cyv67zWN3ggr/nv8/+z1mJ6iw7abE+SdGISVZ0cYAHTLqoCXbnqfC4I/CoIntoDJdHotg2jv/N/v5KgimPl8vNQSFlGRFGwN0yKiDFu2ZZ5757urVq/9LwqBYL7zwwv+wfSlY8pC6dus/7DVnzIUJOWf0GdUGaGOADhl10OKdOHFiduXKFRoIpTl9+jTdh8IlCykbpCGcZhOGwFJYrUAbA3TIqINWoYagqjSgoHdI2aBUOO2msFqCNgbokFEHrUbJQVVxQEHnkLJBqHBaT2EVoY0BOmTUQatSYlBVHlDQOqRs0Cmc2lNYzdHGAB0y6qDVKSmoRhBQ0DikbJApnPqbfFjRxgAdMuqgVSohqEYSULA2pGxQKZzSm2xY0cYAHTLqoNUaMqhGFFCwNKRsEA0ZThjEXVw17PlKhW2eVFjRxgAdMuqgVbt06RINEW9sWyq2K6Rs0AwZTnjdXl/eYY8/bBRWhaKNATpk1EGrppBKYiekbJBUHU4xez6FVYFoY4AOGXXQqimkksCgGFU4xez5FVYFoY0BOmTUQaumkOrnmUf/dfbBP9/8dTQ4cnEPp5i9nsKqALQxsI6pkEqAbUtNEE4XD97KBkQO2cMpZq+vsBoQbQysgyqkEmDbUoOph1PMtkdhNQDaGFhHVUglwLalZAqn1Wz7FFYZoeBsh0RyKz6cYra9NYZVdRRSMrTqwilm26+w8nNBISVDqT6cYrY/Cqt0di5PFVKS2+jCKWb7p7DqbtfcmUJKchl9OMVsfxVWzS2d2FdIibfJhVPM9l9htdzadx0VUuJl8uEUs3oorK5rvCRCISWpXTb/yDqb/MDqM+WwahxOgUJKPFwzxwz9Knr5gdVnSmHVOpwChZR4Ulg1YPUZc1h1DqdAISU5KKwasPqMKax6h1OgkJKcFFYNWH1qDqtk4RQopGQICqsGrD41hVXycAoUUjIkhVUDVp+Sw8otnAKFlJRAYdWA1aeksHIPp0AhJSVRWMkuCikpkcJKdiikpGQKK1FISRUUVhOmkJKaKKwmSCElNVJYTYhCSmqmsJoAhBQOMnX+0O1X3773n2Zj8flTm7NvnnsyO7YttRrwq65WQVhh3c4U4D5dkwpl2hg8oe/dS4JtS63+7cj9LCTEHxZxHmbjdOxoY2CdUiGVANuWWimksptsOAW0MbBOqZBKgG1LrRRS2Uw+nALaGFinVEglwLalVgopdwqnCG0MrFMqpBJg21IrhZQbhdMStDGwTqmQSoBtS60UUskpnNagjYF1ymJC6pFHHpk98MADO/D/7PdWqSWkNjc3f7SvDz30EP29IZz8l8PfR4NMulE4NUQbA+uUg4cUBunNN988u+GGG3ZBO37OHseUHlII3ttvv53u64033jjb2Nigj8sMa3XGdC/u3BROLdHGAB0y6qBZ3XnnnXTAxjYaDt6SQwr78NOf/pTu3yKEGHt8RhdC/8Bgmw+6xUEonMKpI9oYoENGHTSbu+++mw7SZTYaBFWpIYWzQbZPywwcVDshFWDwzQdhPDBF4dQbbQzQIaMOmgUue9jgXAVnIevmqUoNKVzKsX1a5b777qPPlcGukAowGOeDkg3WqVE4JUIbA3TIqINmsWxeZh2cfbHnC0oMqQ07A2T7ss5NN91Eny+DpSEVYHDOB2k8cKdA4ZQYbQzQIaMOmkWTuRlm3cAtMaRuvfVWui9N4F1A9pzO1oZUgME6H7RsMI+NwskJbQzQIaMOmgUbkE2x5wtKDKll71w20eadzYQah1SAwTsfxGxw107h5Iw2BuiQUQfNgg3IptjzBQqpJFqHVGCDef/YsP2UtGhjgA4ZddAs2IBsij1foJBKonNIiXRBGwN0yKiDZsEGZFPs+QKFVBIKKcmKNgbokFEHzYINyKbY8wUKqSQUUpIVbQzQIaMOmgUbkE2x5wsUUkkopCQr2higQ0YdNAs2IJtizxcopJJQSElWtDFAh4w6aBZsQDbFni9QSCWhkJKsaGOADhl10CzYgGyKPV+gkEpiy+yf01dJiTvaGFgnVEglwLYlqDCklkFfgZPmmEGI7WP9SqQN2hjMOx3rkK66fOAWMODZ8wUlhlTXzykCe75C4ezrnAnhpTMwaYw2BtaZBgmppveRit1zzz30+YISQwpnQ2xf1sFn/tjzVeSqQXBtGp1xyVK0MbDOM0hI4YOzbT9kjLOvdR+4LTGkoMslX0m3FE7kmlFoyS60MbDOMkhIwUbLW5g0GbSlhhTug9UmlNedMY4EzrQwv3WQ9U2ZDtoYWAcZLKQAQbVu8OLnTSeQSw0pQMg2mYubSEDFcJZ1xiiwJog2BtYpBg0pwFkG5qjiAYz/x03u2txTqeSQAuwLQgj3xVrcVwQxJtjX3Xl0IkJg6Q4EE0EbA+sIg4dUW7/61a9mr7766uz999+fffrpp7Pvvvtux7dv/Xb29V33ZvW348//aBuwTR9++OHs7Nmz29vK9kEawyUh3jHcy/qvjANtDOzgVxNSCKY4lJicQRUHFPPFF19sB9YvfvELul/SGCbddXY1QrQxsINefEghnDDQWQAskyOomgTUom+++Wb2zjvvKKz6w9nVYaO1WCNBGwM70MWG1LPPPtvozGkZz6BqG1CLELgvvvgi3WdpBXNXuBRUWFWONgZ2gIsMKVwesQHelkdQ9QmoRe+99x7dd2lNYVU52hjYgS0upDAhzgZ1VymDKlVABX/+8591+ZeOwqpStDGwA1pUSKUOqCBFUKUOqACXtAqqpBRWlaGNgR3IYkLKK6CCPkHlFVABgorVRHpBWOmrqCpAGwM7iEWEVKo5qHW6BJV3QAUIaVYb6W37/lis/0sZaGNgB2/wkMK7eGzQemkTVLkCKjh16hStkSSBdVa6BCwQbQzsoA0eUn2WGXTVJKhyBxRgLZXmp1zhEnCTjQUZDm0M7IANGlJYqMkGaw6rgmqIgAqw4JPVSpJCv9ftYgpBG4P5wWIHMYu2K8lTY0E1ZEAFOpvK5hgbF5IXbQzsIA0WUkOeRS1aDKoSAgp0NpUVJtb1AeYB0cZgfoDYgXOHhYxsgA4BQVVKQAHOMFnNxI2WKwyINoIdFNyzhx0wd7iFCRucch3e9WS1E1d6B3AAtNEOxGABBaVc6pVMl3yDwV0WNKme0a4GOwCDBhR4ry4fA1wOs9pJNrr8y+RH/2OFHzygoKT5qJKx2klWZxbHj/jY+Q8UPDoAg2EDUnbTUoQi4M0lzVM52v6HFbmYgAI2IGU33RyvGJqnclRcQAEbkLKbQqooWKagDyo7QEgNthZqGTYgZTeFVJE0oZ4YQmqPKSqo2ICU3RRSxVJQJbT9DytqUUHFBqTspu/tK5re+Utk5z+sqAiqIuanhv5gcS1Y7aQoCqoEdjVYYU9Ghc5O66TW0y2Fq6Gg6ok2WmHx5Yqs4FngIx9sYMp1up1wVRRUPdBGsMLuM3hblRXdVe5bBtcIn29ktZNiKag6oo2BFXavGWRCXfNSq2m1eZUUVB3QxpgVN/s8Fb7Blw1O+W724Ycf0ppJFXS3z5ZoI2PFPWiyXf7pnlLLaX1U9bSOqgXauIwVF5d/2W4prFu27KZbtIyGgqoh2riOFXgzKrgLnE3ha5zYYJ0qnUWNBq5K9KHkBmhjEyiwcT+r0nKE6zBPx2ok1UJQ6Use1qCNbViRcVblOlelxZ0/fPmC3tEbJd2Pag3a2JYVGXNVuEk9Owi9YXBO+bIP+64vXhi1c2xcyQ9oY1dW7P0GNwBjB6IXDNKpBtWpU6doTWRUtDRhCdrYlxUcH6tJfgk4taDCvmpl+aTopnkEbUzBCo67KhwzScMKQYUP17JB7QVBgbOZnAGpS7xJ0kQ6QRtTsqInDyvMUeVYQ4XJ6sWgwJKIHAGJNwo0ST5ZF9g4mjLa6MGKnzyssGbI6zN+WPqwLCjOnj3rclalyzuZ0/zUAtroyQ4Awuq3CwekNwzsFGGFkMBapCZ3vESAIchShBW2HcGnsydZoPmpOdrozQ4AzqjYgekFl2YImTaBhZDBB3YRdF1DAvNVuPxsE1jYRjxG79zJEniXXOunDG30ZsV3CalFCBxcDuIMBWc8MYSDx8Q0zsLw3Ow1AdvU5ExNxJxk42dqaKM3K757SImMxOQv+2ijNyu8Qkqkmclf9tFGb1Z0hZRIc5O+7KON3qzoSULql7/85ezo0aP0ZyIjM9nLPtrozQreO6ROnz49+/LLL7dtbW1tT0qj7cSJE/T3RSq3xcbSFNBGb1bwXiG1GFDLXLp0aTu4Xnvttdnzzz8/e/rpp+lz5YCzPWwDtgXbhG27fPmyAlXa2mTjaexoozcrdueQahJQq+CsCyFx/vz52ZtvvrntpZde2g6RoOkl5OJjIDxfCCK8FtuG4MqVKwoqaQOf1pjcJDpt9GaF7hxSGNQY3GzQ1wYhpjk1aWlyX4tFG71ZoXtd7o0hqBRQ0sOk7pRAG71ZkXtPnNccVAoo6WlSd0qgjd6syL1DCmoMKgWUJDKZJQm00ZsVOElIQU1BpYCShCZzNkUbvVmBk4UU1BBUCihxMImzKdrozYqbNKSg5KBSQImTSZxN0UZvVtzkIQUXL16kITE0LOJk2yuSwOjPpmijNyts8pDC4kwWEKXAIlS23SI9jf5sijZ6s8ImDanSAypQUImTfWycjQVt9GZFTRZStQRUoKASB6NehU4bvVlRk4RUbQEVKKjEwWhXodNGb1bQ3iFVa0AFCipJbLRfg0UbvaGgUYFbqT2gAgWVJHSNjbUxoI3erKCdQwq3QmEDvla4xQvbT5EODrPxVjva6M2K2TmksCgSiyPZgK8NzgjZPop0NMrlCLTRmxWz1+XeGIJKASVORjeBThu9WSF7T5zXHFQKKHE0um+WoY3erJC9QwpqDCoFlDi7ysZczWijNytkkpCCmoJKASWZjOrzfLTRmxUxWUhBDUGlgJKMRrUCnTZ6syImDSkoOagUUJLZqNZM0UZvVsTkIQVYc8RCYmhsW0WcHWRjr0a00ZsVUCEl4ms07/LRRm9WQIWUiK/RvMtHG71ZARVSIv5GcZ8p2ujNiqeQEvG3ycZfbWijNyueQkrE3yg+y0cbvVnxFFIieexhY7AmtNGbFU4hJZJH9UsRaKM3K5xCSiSP6pci0EZvVjiFlEge1c9L0UZvVjiFlEgm8firDW30ZoVTSInkU/VdEWijNyuaQkokn6rXS9FGb1Y0hZRIPufYOKwFbfRmRVNIieSzxcZhLWijNyuaQkoko3gM1oQ2erOiKaRE8qp28pw2erOCKaRE8qr2i0NpozcrmEJKJK9jbCzWgDZ6Q8GiAiahkBJZqtqV57TRmxVMISWSV7Xv8NFGb1YwhZRIZvE4rAVt9GYFU0iJ5FflvaVoozcrlkJKJL8qlyHQRm9WLIWUSH4KqaasWAopkfyqXIZAG72hWFHxklBIiaykkGoKxYqKl4RCSmSls2w8lo42erNiKaRE8vtPNh5LRxu9WbEUUiL5VfnV67TRmxVLISWS39dsPJaONnqzYimkRPL7OxuPpaON3qxYCimRAcRjsQa00ZsVSyElMoB4LNaANnqzYimkRAYQj8Ua0EZvViyFlMgA4rFYA9rozYqlkBIZQDwWa0AbPVmh9plri4VLRSGVxiOPPELbZRSqu9c5bfRiBXILKFBIpaGQGr2qgoo2erDCuAYUKKTSUEhNQjVBRRtTs4K4BxQopNJQSE1GFUFFG1OyQmQJKFBIpfHwww/Tdhml4oOKNqZiBcgWUKCQSuP++++n7TJaRQcVbUzBdjxrQIFCKg2F1CQVG1S0MQXb6atREdwppNLY2Nig7TJ6Rd4DnTamYDusM6k5tq0lO3ToEG2XUTvDxnEJaGMqtuOakzJsW0t2991303YZrWIDCmhjSlYAvbtHtrVkd9111+zxxx+nP5PRKTqggDamZoXIElQKqTQQUkeOHKE/k1EpPqCANnqwgrgHlUIqDYTUvffeS38mo1FFQAFt9GKFcQ0qhVQaCKkDBw7Qn8koVBNQQBs9WYHcgkohlQZC6rbbbqM/k+pVFVBAGz1ZkRRShUNI3XLLLfoM3zgppFaxAulyrwIhpO677z76c6meLvcYK4wmzisRQgr/Zj+XUdDE+SIriHtAgUIqjRBSoPVSo1ZFUNHGlKwQWQIKFFJpLIaUPmw8esUHFW1MxQqQLaBAIZXGYkjpkm8Sig4q2piC7XjWgAKFVBqLIQWPPvoo/T0ZlWKDijamYDt9ISqCO4VUGnFIafX5ZEzuVi17zNZCAdwppNKIQ0oLOydheje9A9vxrEGlkEojDinQBPqoTfP2wYEVIFtQnThxgobE0Ni2loyF1P79++nvSvWm/UUMgRUiW1CxkBga286SsZACnU2NTvEBBbTRgxUkS1CxkBga286SLQspnU2NShUBBbTRixXGPaguXbpEg2JIbDtLtiykQGdTo1BNQAFt9GQFcg2q8+fP06AYEtvOkq0KKZxN6aMyVSsioGxc7DP7zWGzOf9vugRiV0MOVqhjUeGSOX36NA2KIbHtLNmqkAKtm6pXPBZzsrFw0Jwz18LYWGLLILj24HH0ybxZsdxCqsR3+Nh2lmxdSGHdlFah1ykeiznYGEA4XV0cEw0hzI7RJ/VmxXILKbh8+TLb4cGwbSzZupAC/A57rJQtHouerO/vMThzouOiKfrk3qxYriFV2rwU28aSNQkp0E3x6hOPRS/W7xFQuGyjY6IN+gLerFiuIfXSSy/RnR0K28aSNQ0pXfbVJx6LHqzPJwsooC/izYrlGlJQ0iUf276SNQ0puOOOO+hzSJnisejB+vyFeAz0QV/EmxXLPaTefPNNusNDYNtXsjYhBYcOHaLPI+WJx2Jq1t+Pxf2/L/pC3qxY7iH19NNP0x0eAtu+krUNKdAizzrEYzEl6+u4zFu3vKA1+mLerFjuIQWlTKCzbStZl5ACfQVW+eKxmJL19eRnUUBfzJsVK0tIlXI2xbatZF1DChPpCqqyxWMxJevrXdZCrUVfzJsVK0tIQQlnU2y7StY1pAAT6frYTLnisZiK9XN8zIX2/77oC3qzYmULqaNHj86uXLlCdz4Xtl0l6xNSoKAqVzwWU7F+7nKpB/QFvVmxsoUUvPbaa3Tnc2HbVLK+IQUKqjLFYzEV6+dn4n6fCn1Bb1asrCEFQ97ChW1PyVKEFCioyhOPxVSsnyddG7WIvqA3K1b2kBryso9tT8lShRRoMr0s8VhMxfq5QiqFob6ogW1LyVKGFCCojhw5Ql9L8orHYirWzxVSqQxxvym2HSVLHVKBPpA8vHgspmL9PPkizoC+oDcr1mAhBbmXJbBtKJlXSME999yjeaoBxWMxBevjWGlO+34K9EW9WbEGDSnIGVTs9UvmGVKAWxBrnmoY8VhMwfo4bmpH+34K9EW9WbEGDynIFVTstUvmHVKBbkOcXzwWU7A+7rb8AOiLerNiFRFSkGOOir1uyXKFFGCZgibV84nHYl/Wv10v9YC+sDcrVjEhBbhJnufyBPaaJcsZUoHmqvKIx2Jf1r/dVpoH9IW9WbGKCinAh5G3trZokfpir1eyIUIKsFQBl4AKKz/xWOzD+rbb5/UW0Rf3ZsUqLqQC3Cwv9VkVe52SDRVSgcLK1T42Jtuyfp30FsGr0A3wZoUqNqQAZ1UXL16kBeuCvUbJhg6pAGGFu37qPupJHWNjsi3r166T5YvoBnhDoaLCFQkr1FN85o89d8lKCalFBw4cmD344IN0e6WVq2b7Sze7sP6MM6hsAQV0Q7xZkaoIqQBh1We5AnvOkpUYUgHOrjDJrsDq5Qwbl+tYX8YcVJZLvEV0Y7xZkaoKqQAfUsZtX9qeXbHnKlnJIbUIgYUzLNxfXYtDW2scVNaHcfbk/i7eMnSjvFmBqgypRQgsLF1455131oYWe3zJagmpGEIL245Jd5xpKbjWwqXfYTZGrd8imLCSPOulHbNr41KyF9hrsKNI4ZMGn5S+8PHHH1/FwAZcRuEdNSyqPHHiBCtkFRBap06d2t6f3//+99vf+xeEfcVkPPYVZ2O4hGTPUwLPkMJzP/bYY7OXX3552x/+8AcKNcLPf/3rX29PnGPBZ1cKq0b+fvz48f/4zW9+s/W73/3u87/85S9f21iloZEbDZeu7AmRvocNvv+986eiMaDRSfEuGylmMcKZVJ8vIsXaLDxHSQGdOqR+/vOfz15//fXZH//4R1qDJkqs09jhL16cPHzyySdudzhogoZNW/ZE+43LaSECC4ViRRwCghODxWOFOsIO4YzOwV47lxQhtbGxsX0m1CfAl8Fz4ox06DpNCc787ezqe3Y8vNHQacqeAOHkdrOrReiYQ4YVwinXB5IRgEMOwj4hhXB6++236X6lNnSdpgZ1zjUGFtHwWcceiLkmXNLRJ/WE0/6c8zk4MBgIbFu8YRAOEcxdQwpnTh5nmOvgNXEGyvZF0kOfZMfBCw2hVexBm2bQa1TAJZf336CY//C4XGkLl7w55+fahtTPfvazXvNNqeAvsNLnMccCfymwY+CBBhFjv5x9pek6np0y50FoAmcLmKhn25pam5A6fvw43d6hDHX2OUUpPzq2Cg2kmP0iAir7StMm0ClTv+MzxHV3UzkGYNOQyjX31AUu0dm+STq4kslxeU9DaZH9EpbCu3zHe0opBi+Knutvhz4Qomz7U2kSUiUHVOBdJ8kzP0WDKbBfwAT54PNPTfW9HMLcD3veEnkOwHUhVUNABQoqf95nUzScwH5Y7CXeMn0u/Uq+xFvG69JvVUjVFFCBLv184U0sVvdETtKAAvthlvVPqSGo2r7rN9QSgxQ8lmMsC6nSJsnbyPWmwxShD7KaJ4CTpD3LAmqwTzyngMs2VkzGscBZdAnldVhIYZkBe/1aoE5anuCH1bwnTDNt30WUBVSW+xZ7a7K4D4O7hHVQfbUJ5SZYSJWwDqqv1HWS6xzG0c7dGVhIVTUPtUyTvzmdr6WzSnk5E4cUVpKz16yRVqb7SPym08nFTIoDCncwYA+q0qp3dhBg7DG1wt9kKS/7QkDhs3gIfPaaNfK4PJakIbXrZnyLAYV386pZbtDUsonlGt/NWyfVu1hPPfXUTkjV+G7eOnq3L71EIUXvFrrzH/YLozqLCrA4My7o2M6iApwlxPvaxSuvvLJzFsVep3Y6m0qP1bmlpbcz3vkP+6XiV5V3Fc9NjfEsKui7duq5557bCakzZ87Q1xgDzU2lg7WJrMYtrLzf+vY/7JdwXyj24FFYPL3H36BjmmOJ4UPXix2orbfeemsnpMZcJ8zhsf2X9np+GP9Hk+TM9j/sF4u6u0Fqix0yx2eNhtZnPdBXX321HVK45S977jHRrYjTwF+MrL5rYP6bfglEbPsf8wewJxqN0CFr+ABxX10vZbCMAX8QUmOcMI9pAr2/jouhscyp8de9I6BGsXhznTBwx3wJE7A3C5r4/PPPrU/8EFJjWOS6Tt9LY+n0rh6+NarVNygjpHCnTfZko4KBm2CCrwpd3uXDXFT4c+7cOfq8Y8RqIc20nIvC2dN+6140iFYZ/XxUgDODKcxHBW3mW/CO3uKf9957jz7nGHl8QHsK0L8aXpVgKmnTuhUNoCYQUlXe7aCLmu920FbTj8kgoL7//nvrC9f//OlPf6LPOUZaitBew4BCOOFGBa0u7RiEFHuBUer4LkSVmkwKI8jigMKfTz75hD7nGGnyvB2cef71r3/9P1bLOay3xMLw3uEUKKRGatXge/LJJ2fvvvuuHX/+54svvqDPOUa6c2czWF+44koEZ02YNmr8jl0bCqmRwh0e4o6GcMIE+bfffmvHfvmfKYWUbt+yGsIJc7mfffbZf0e1w0Q43qnrNBnexqRC6uOPP6btY4RAxuUc4Kzpo48+suPd7I9CapqwCBiXc/DGG298+8EHH/yXXdr9zfrDv1utEEhYCeAeSj82+8n/A1GsifSVBvjAAAAAAElFTkSuQmCC") + ContentType = "image/png" + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 7 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
General Hello there!
" + } + Mentions = @( + @{ + Id = 0 + MentionText = "General" + Mentioned = @{ + Conversation = @{ + Id = "19:0b50940236084d258c97b21bd01917b0@thread.skype" + DisplayName = "General" + ConversationIdentityType = "channel" + } + } + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +###Example 8 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
GraphTesting Hello team
" + } + Mentions = @( + @{ + Id = 0 + MentionText = "GraphTesting" + Mentioned = @{ + Conversation = @{ + Id = "68a3e365-f7d9-4a56-b499-24332a9cc572" + DisplayName = "GraphTesting" + ConversationIdentityType = "team" + } + } + } + ) + Reactions = @( + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md index 093355d11d5..fcd23465a73 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Hello World" + } +} +New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Hello World" + } +} +New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md index 093355d11d5..438721aa168 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" +} +New-MgTeamInstalledApp -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md index 093355d11d5..ec8f32423d2 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" +} +New-MgTeamMember -TeamId $teamId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" +} +New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md index 093355d11d5..ba28b833165 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SenderShiftId = "SHFT_f7e484ed-fdd6-421c-92d9-0bc9e62e2c29" + SenderMessage = "Having a family emergency, could you take this shift for me?" + RecipientUserId = "fe278b61-21ac-4872-8b41-1962bbb98e3c" +} +New-MgTeamScheduleOfferShiftRequest -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md index 093355d11d5..cebb7b577a7 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md @@ -1,18 +1,38 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Id = "OPNSHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" + SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" + SharedOpenShift = @{ + Notes = "InventoryManagement" + OpenSlotCount = 2 + DisplayName = "Dayshift" + StartDateTime = [System.DateTime]::Parse("2018-10-04T00: 58: 45.340Z") + EndDateTime = [System.DateTime]::Parse("2018-10-04T09: 50: 45.332Z") + Theme = "white" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2018-10-04T00: 58: 45.340Z") + EndDateTime = [System.DateTime]::Parse("2018-10-04T01: 58: 45.340Z") + Code = "" + DisplayName = "Lunch" + } + ) + } + DraftOpenShift = $null + CreatedDateTime = [System.DateTime]::Parse("2019-03-14T04: 32: 51.451Z") + LastModifiedDateTime = [System.DateTime]::Parse("2019-03-14T05: 32: 51.451Z") + LastModifiedBy = @{ + Application = $null + Device = $null + Conversation = $null + User = @{ + Id = "366c0b19-49b1-41b5-a03f-9f3887bd0ed8" + DisplayName = "JohnDoe" + } + } +} +New-MgTeamScheduleOpenShift -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md index 093355d11d5..7345ec87e9a 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SenderMessage = "Can I take this shift?" + OpenShiftId = "577b75d2-a927-48c0-a5d1-dc984894e7b8" +} +New-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md index 093355d11d5..f91bd7b7de1 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Cashiers" + IsActive = $true + UserIds = @( + "c5d0c76b-80c4-481c-be50-923cd8d680a1" + "2a4296b3-a28a-44ba-bc66-0274b9b95851" + ) +} +New-MgTeamScheduleSchedulingGroup -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md index 093355d11d5..a591f3044d3 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" + UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" + SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" + SharedShift = @{ + DisplayName = "Day shift" + Notes = "Please do inventory as part of your shift." + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T00:00:00Z") + Theme = "blue" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-11T15:15:00Z") + Code = "" + DisplayName = "Lunch" + } + ) + } + DraftShift = @{ + DisplayName = "Day shift" + Notes = "Please do inventory as part of your shift." + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T00:00:00Z") + Theme = "blue" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-11T15:30:00Z") + Code = "" + DisplayName = "Lunch" + } + ) + } +} +New-MgTeamScheduleShift -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md index 093355d11d5..8c9c91cd332 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SenderShiftId = "5ad10161-6524-4c7c-9beb-4e8677ba2f6d" + SenderMessage = "I can't make my shift, any chance we can swap?" + RecipientUserId = "567c8ea5-9e32-422a-a663-8270201699cd" + RecipientShiftId = "e73408ca-3ea5-4bbf-96a8-2e06c95f7a2c" +} +New-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md index 093355d11d5..bb1543a85e0 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" + SharedTimeOff = @{ + TimeOffReasonId = "TOR_891045ca-b5d2-406b-aa06-a3c8921245d7" + StartDateTime = [System.DateTime]::Parse("2019-03-11T07:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T07:00:00Z") + Theme = "white" + } + DraftTimeOff = @{ + TimeOffReasonId = "TOR_891045ca-b5d2-406b-aa06-a3c8921245d7" + StartDateTime = [System.DateTime]::Parse("2019-03-11T07:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T07:00:00Z") + Theme = "pink" + } +} +New-MgTeamScheduleTimeOff -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md index 093355d11d5..7085253e91c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Vacation" + IconType = "plane" + IsActive = $true +} +New-MgTeamScheduleTimeOffReason -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md index 093355d11d5..3d7a0e1f5a6 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "displayName-value" + ApiVersion = 99 + Encryption = @{ + Protocol = "protocol-value" + Secret = "secret-value" + } + IsActive = $true + Url = "url-value" + SupportedEntities = "supportedEntities-value" +} +New-MgTeamworkWorkforceIntegration -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md index 093355d11d5..83caf422b73 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" +} +New-MgUserTeamworkInstalledApp -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md index 093355d11d5..73c651f9be9 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgAppCatalogTeamApp -TeamsAppId $teamsAppId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md index 093355d11d5..0359f02fc8f 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md index 093355d11d5..4201a6a0e86 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md index 093355d11d5..fd7d5a935f8 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md index 093355d11d5..83331faaee5 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md index 093355d11d5..bd0df9d4a73 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md index 093355d11d5..fddf64f1e05 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md index 093355d11d5..01ec1f691ce 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md index 093355d11d5..327a0529b2e 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md index 093355d11d5..c78a23e2aec 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md index 093355d11d5..36b8ef12a27 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md index 093355d11d5..4697852409b 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md index 093355d11d5..19eccab348c 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md index 093355d11d5..a4297ed4764 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md index 093355d11d5..bf7ecf65d62 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md index 093355d11d5..5735df30a74 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md index 093355d11d5..3c438a2ca4d 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md index 093355d11d5..05f793f5ed5 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md index 093355d11d5..557e9c76fd6 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md @@ -1,18 +1,127 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/chats/{chatId}" + } + ActivityType = "taskCreated" + PreviewText = @{ + Content = "New Task Created" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "taskId" + Value = "Task 12322" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/chats/{chatId}/messages/{messageId}" + } + ActivityType = "approvalRequired" + PreviewText = @{ + Content = "Deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "approvalTaskId" + Value = "2020AAGGTAPP" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +###Example 5 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/chats/{chatId}/messages/{messageId}" + } + ActivityType = "approvalRequired" + PreviewText = @{ + Content = "Deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "jacob@contoso.com" + } + TemplateParameters = @( + @{ + Name = "approvalTaskId" + Value = "2020AAGGTAPP" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md index 093355d11d5..0a379d72368 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md @@ -1,18 +1,109 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +###Example 1 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/teams/{teamId}" + } + ActivityType = "pendingFinanceApprovalRequests" + PreviewText = @{ + Content = "Internal spending team has a pending finance approval requests" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "pendingRequestCount" + Value = "5" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/teams/{teamId}/channels/{channelId}/tabs/{tabId}" + } + ActivityType = "reservationUpdated" + PreviewText = @{ + Content = "You have moved up the queue" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "reservationId" + Value = "TREEE433" + } + @{ + Name = "currentSlot" + Value = "23" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +###Example 4 +``` +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/teams/{teamId}/channels/{channelId}/tabs/{tabId}" + } + ActivityType = "reservationUpdated" + PreviewText = @{ + Content = "You have moved up the queue" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "jacob@contoso.com" + } + TemplateParameters = @( + @{ + Name = "reservationId" + Value = "TREEE433" + } + @{ + Name = "currentSlot" + Value = "23" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChat.md b/src/Teams/Teams/examples/v1.0/Update-MgChat.md index 093355d11d5..0c32ab2e44b 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChat.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = "Group chat title update" +} +Update-MgChat -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md index 093355d11d5..f4940b240ff 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Update-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md index 093355d11d5..267e8126746 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "My Contoso Tab - updated again" +} +Update-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md index 093355d11d5..1438d44f962 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + MemberSettings = @{ + AllowCreateUpdateChannels = $true + } + MessagingSettings = @{ + AllowUserEditMessages = $true + AllowUserDeleteMessages = $true + } + FunSettings = @{ + AllowGiphy = $true + GiphyContentRating = "strict" + } +} +Update-MgTeam -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md index 093355d11d5..1f9c6e42c95 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Update-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md index 093355d11d5..099696dea64 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) +} +Update-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md index 093355d11d5..34e21182e73 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + PolicyViolation = @{ + PolicyTip = @{ + GeneralText = "This item has been blocked by the administrator." + ComplianceUrl = "https://contoso.com/dlp-policy-page" + MatchedConditionDescriptions = @( + "Credit Card Number" + ) + } + VerdictDetails = "AllowOverrideWithoutJustification,AllowFalsePositiveOverride" + DlpAction = "BlockAccess" + } +} +Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md index 093355d11d5..5435191f7c7 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Update-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md index 093355d11d5..76714f308e9 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) +} +Update-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md index 093355d11d5..7a44c1fe9a3 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" + SharedOpenShift = @{ + Notes = "Inventory Management" + OpenSlotCount = 5 + DisplayName = "Field shift" + StartDateTime = [System.DateTime]::Parse("2018-10-04T00:58:45.340Z") + EndDateTime = [System.DateTime]::Parse("2018-10-04T09:50:45.332Z") + Theme = "white" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2018-10-04T00:58:45.340Z") + EndDateTime = [System.DateTime]::Parse("2018-10-04T01:58:45.340Z") + Code = "" + DisplayName = "Lunch" + } + ) + } + DraftOpenShift = $null +} +Update-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md index 093355d11d5..e81fbe919f7 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md @@ -1,18 +1,53 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" + CreatedDateTime = [System.DateTime]::Parse("2019-03-14T04:32:51.451Z") + LastModifiedDateTime = [System.DateTime]::Parse("2019-03-14T05:32:51.451Z") + UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" + SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" + LastModifiedBy = @{ + Application = $null + Device = $null + Conversation = $null + User = @{ + Id = "366c0b19-49b1-41b5-a03f-9f3887bd0ed8" + DisplayName = "John Doe" + } + } + SharedShift = @{ + DisplayName = "Day shift" + Notes = "Please do inventory as part of your shift." + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T00:00:00Z") + Theme = "blue" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-11T15:15:00Z") + Code = "" + DisplayName = "Lunch" + } + ) + } + DraftShift = @{ + DisplayName = "Day shift" + Notes = "Please do inventory as part of your shift." + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T00:00:00Z") + Theme = "blue" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-11T15:30:00Z") + Code = "" + DisplayName = "Lunch" + } + ) + } +} +Update-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md index 093355d11d5..5cc5bbc9085 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "displayName-value" + ApiVersion = 99 + Encryption = @{ + Protocol = "protocol-value" + Secret = "secret-value" + } + IsActive = $true + Url = "url-value" + SupportedEntities = "supportedEntities-value" +} +Update-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md index 093355d11d5..ed7ba248149 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" +} +Clear-MgUserPresence -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md index 093355d11d5..943ba39155c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + GroupIds = @( + "fee2c45b-915a-4a64b130f4eb9e75525e" + "4fe90ae065a-478b9400e0a0e1cbd540" + ) +} +# A UPN can also be used as -UserId. +Confirm-MgUserMemberGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md index 093355d11d5..00dde5cbf7e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Ids = @( + "80a963dd-84af-4eb8-b2a6-781e444d4fb0" + "62e90394-69f5-4237-9190-012177145e10" + "86a64f51-3a64-4cc6-a8c8-6b8f000c0f52" + "ac38546e-ddf3-437a-ac5c-27a94cd7a0f1" + ) +} +# A UPN can also be used as -UserId. +Confirm-MgUserMemberObject -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md index 093355d11d5..d82d9126547 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "destinationId-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md index 093355d11d5..0de1905d628 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "destinationId-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md index 093355d11d5..8002b385926 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + GroupId = "groupId-value" + RenameAs = "renameAs-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md index 093355d11d5..9833f81831d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Id = "id-value" + GroupId = "groupId-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenotePageToSection -UserId $userId -OnenotePageId $onenotePageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md index 093355d11d5..1173b6fdb53 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Id = "id-value" + GroupId = "groupId-value" + RenameAs = "renameAs-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenoteSectionToNotebook -UserId $userId -OnenoteSectionId $onenoteSectionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md index 093355d11d5..e664ecb227e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Id = "id-value" + GroupId = "groupId-value" + RenameAs = "renameAs-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenoteSectionToSectionGroup -UserId $userId -OnenoteSectionId $onenoteSectionId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md index 093355d11d5..95308721a09 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Disable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md index 093355d11d5..3f3ee207e82 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Enable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md index 093355d11d5..0eb2dbce0af 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + StorageLocation = "storageLocation-value" +} +Export-MgUserPersonalData -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md index 093355d11d5..eb53345b6fb 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md @@ -1,18 +1,46 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Attendees = @( + @{ + Type = "required" + EmailAddress = @{ + Name = "Alex Wilbur" + Address = "alexw@contoso.onmicrosoft.com" + } + } + ) + LocationConstraint = @{ + IsRequired = $false + SuggestLocation = $false + Locations = @( + @{ + ResolveAvailability = $false + DisplayName = "Conf room Hood" + } + ) + } + TimeConstraint = @{ + ActivityDomain = "work" + TimeSlots = @( + @{ + Start = @{ + DateTime = "2019-04-16T09:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-04-18T17:00:00" + TimeZone = "Pacific Standard Time" + } + } + ) + } + IsOrganizerOptional = "false" + MeetingDuration = "PT1H" + ReturnSuggestionReasons = "true" + MinimumAttendeePercentage = "100" +} +# A UPN can also be used as -UserId. +Find-MgUserMeetingTime -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md index 093355d11d5..51f089193c0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Schedules = @( + "adelev@contoso.onmicrosoft.com" + "meganb@contoso.onmicrosoft.com" + ) + StartTime = @{ + DateTime = "2019-03-15T09:00:00" + TimeZone = "Pacific Standard Time" + } + EndTime = @{ + DateTime = "2019-03-15T18:00:00" + TimeZone = "Pacific Standard Time" + } + AvailabilityViewInterval = 60 +} +# A UPN can also be used as -UserId. +Get-MgUserDefaultCalendarSchedule -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md index 093355d11d5..0fc5b441e9d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + EmailAddresses = @( + "danas@contoso.onmicrosoft.com" + "fannyd@contoso.onmicrosoft.com" + ) + MailTipsOptions = "automaticReplies, mailboxFullStatus" +} +# A UPN can also be used as -UserId. +Get-MgUserMailTip -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md index 093355d11d5..f060fa73ee6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SecurityEnabledOnly = $true +} +# A UPN can also be used as -UserId. +Get-MgUserMemberGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md index 093355d11d5..fe1d126da4f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + WebUrl = "webUrl value" +} +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebookFromWebUrl -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md index 093355d11d5..34b341b8a50 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "comment-value" + SendResponse = $true +} +# A UPN can also be used as -UserId. +Invoke-MgAcceptUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md index 093355d11d5..891a8e1955e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "I may not be able to make this week. How about next week?" + SendResponse = $true + ProposedNewTime = @{ + Start = @{ + DateTime = "2019-12-02T18:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-12-02T19:00:00" + TimeZone = "Pacific Standard Time" + } + } +} +# A UPN can also be used as -UserId. +Invoke-MgAcceptUserEventTentatively -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md index 093355d11d5..f49229f3861 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + StartDateTime = [System.DateTime]::Parse("2020-02-06T01:49:21.3524945+00:00") + EndDateTime = [System.DateTime]::Parse("2020-02-06T02:19:21.3524945+00:00") + Subject = "Create a meeting with customId provided" + ExternalId = "7eb8263f-d0e0-4149-bb1c-1f0476083c56" + Participants = @{ + Attendees = @( + @{ + Identity = @{ + User = @{ + Id = "1f35f2e6-9cab-44ad-8d5a-b74c14720000" + } + } + Upn = "test1@contoso.com" + } + ) + } +} +# A UPN can also be used as -UserId. +Invoke-MgCreateOrGetUserOnlineMeeting -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md index 093355d11d5..d361ceb93eb 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "I won't be able to make this week. How about next week?" + SendResponse = $true + ProposedNewTime = @{ + Start = @{ + DateTime = "2019-12-02T18:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-12-02T19:00:00" + TimeZone = "Pacific Standard Time" + } + } +} +# A UPN can also be used as -UserId. +Invoke-MgDeclineUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md index 093355d11d5..d1862979920 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md index 093355d11d5..769f015f845 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "danas@contoso.onmicrosoft.com" + Name = "Dana Swope" + } + } + ) + Comment = "Dana, hope you can make this meeting." +} +# A UPN can also be used as -UserId. +Invoke-MgForwardUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md index 093355d11d5..45198a858f6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "comment-value" + ToRecipients = @( + @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ) +} +# A UPN can also be used as -UserId. +Invoke-MgForwardUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md index 093355d11d5..8ff2f9d952d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +Invoke-MgLicenseUser -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md index 093355d11d5..d957315a769 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "comment-value" +} +# A UPN can also be used as -UserId. +Invoke-MgReplyAllUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md index 093355d11d5..6929612efef 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + } + @{ + EmailAddress = @{ + Address = "randiw@contoso.onmicrosoft.com" + Name = "Randi Welch" + } + } + ) + } + Comment = "Samantha, Randi, would you name the group please?" +} +# A UPN can also be used as -UserId. +Invoke-MgReplyUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md index 093355d11d5..58e5c64214d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + NewReminderTime = @{ + DateTime = "dateTime-value" + TimeZone = "timeZone-value" + } +} +# A UPN can also be used as -UserId. +Invoke-MgSnoozeUserEventReminder -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md index 093355d11d5..6b85c5593ab 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + InputIds = @( + "{rest-formatted-id-1}" + "{rest-formatted-id-2}" + ) + SourceIdType = "restId" + TargetIdType = "restImmutableEntryId" +} +# A UPN can also be used as -UserId. +Invoke-MgTranslateUserExchangeId -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md index 093355d11d5..8fb24e1b429 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "destinationId-value" +} +# A UPN can also be used as -UserId. +Move-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md index 093355d11d5..cae471e97a9 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "deleteditems" +} +# A UPN can also be used as -UserId. +Move-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md index 093355d11d5..0f2f78f5bb6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + AttachmentItem = @{ + AttachmentType = "file" + Name = "scenary" + Size = 7208534 + IsInline = $true + ContentId = "my_inline_picture" + } +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + AttachmentItem = @{ + AttachmentType = "file" + Name = "flower" + Size = 3483322 + } +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md index 093355d11d5..dfeb73fca06 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +New-MgUserMessageForward -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md index 093355d11d5..60e603497e9 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +New-MgUserMessageReply -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md index 093355d11d5..208d2c71b38 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +New-MgUserMessageReplyAll -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md new file mode 100644 index 00000000000..e7ac1ac1e38 --- /dev/null +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md @@ -0,0 +1,6 @@ +###Example 1 +``` +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Revoke-MgUserSign -UserId $userId +``` diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md index 093355d11d5..0c89a3d363e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md @@ -1,18 +1,92 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "Meet for lunch?" + Body = @{ + ContentType = "Text" + Content = "The new cafeteria is open." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "fannyd@contoso.onmicrosoft.com" + } + } + ) + CcRecipients = @( + @{ + EmailAddress = @{ + Address = "danas@contoso.onmicrosoft.com" + } + } + ) + } + SaveToSentItems = "false" +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "Meet for lunch?" + Body = @{ + ContentType = "Text" + Content = "The new cafeteria is open." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "meganb@contoso.onmicrosoft.com" + } + } + ) + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "attachment.txt" + ContentType = "text/plain" + ContentBytes = "SGVsbG8gV29ybGQh" + } + ) + } +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "9/9/2018: concert" + Body = @{ + ContentType = "HTML" + Content = "The group represents Nevada." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "AlexW@contoso.OnMicrosoft.com" + } + } + ) + InternetMessageHeaders = @( + @{ + Name = "x-custom-header-group-name" + Value = "Nevada" + } + @{ + Name = "x-custom-header-group-id" + Value = "NV001" + } + ) + } +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md index 093355d11d5..85abd4da7a6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Send-MgUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md index 093355d11d5..678677abed4 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md @@ -1,18 +1,65 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params +``` +###Example 3 +``` +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/v1.0/users/{userId}/teamwork/installedApps/{installationId}" + } + ActivityType = "taskCreated" + PreviewText = @{ + Content = "New Task Created" + } + TemplateParameters = @( + @{ + Name = "taskId" + Value = "Task 12322" + } + ) +} +Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md index 093355d11d5..01b48131f27 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" + Availability = "Available" + Activity = "Available" + ExpirationDuration = "PT1H" +} +Set-MgUserPresence -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md index 093355d11d5..ad812e27d2a 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "Cancelling for this week due to all hands" +} +# A UPN can also be used as -UserId. +Stop-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md index 093355d11d5..a5e558baa4f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + CurrentPassword = "xWwvJ]6NMw+bWH-d" + NewPassword = "0eM85N54wFxWwvJ]" +} +# A UPN can also be used as -UserId. +Update-MgUserPassword -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md index 093355d11d5..e1136990e93 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Get-MgUserContactFolderDelta -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md index 093355d11d5..5a29eec8bc5 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +Get-MgUserDelta ``` - -{{ Add description here }} - diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md index 093355d11d5..b3837fbe6c3 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessageDelta -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md index 093355d11d5..8d328c5b8e1 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Invoke-MgRecentUserActivity -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md index 093355d11d5..390ce1d8bf1 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Invoke-MgSupportedUserOutlookLanguage -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md index 093355d11d5..55026c9265e 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Invoke-MgTimeUserOutlook -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md index 093355d11d5..8945614553d 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserMemberOf -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md index 093355d11d5..e0ff514bf4a 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookMasterCategory -UserId $userId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md index 093355d11d5..e2e77dc5dd1 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOwnedDevice -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md index 093355d11d5..17bdce75b56 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOwnedObject -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md index 093355d11d5..447b0121907 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserRegisteredDevice -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md index 093355d11d5..27b57ef03c1 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserSettingShiftPreference -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md index 093355d11d5..45629bd5790 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoList -UserId $userId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md index 093355d11d5..900de52d5fa 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md index 093355d11d5..880debe0431 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md index 093355d11d5..e80c01b7ec5 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId +``` +###Example 2 +``` +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md index 093355d11d5..2965e9565f0 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md @@ -1,18 +1,5 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserTransitiveMemberOf -UserId $userId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md index 093355d11d5..011d5f95aa4 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Project expenses" + Color = "preset9" +} +# A UPN can also be used as -UserId. +New-MgUserOutlookMasterCategory -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md index 093355d11d5..665abf92cdd 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Travel items" +} +# A UPN can also be used as -UserId. +New-MgUserTodoList -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md index 093355d11d5..998cbcfc032 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Title = "A new task" + Categories = @( + "Important" + ) + LinkedResources = @( + @{ + WebUrl = "http://microsoft.com" + ApplicationName = "Microsoft" + DisplayName = "Microsoft" + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md index 093355d11d5..672c2c8e032 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Final sign-off from the team" +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md index 093355d11d5..9fdca372f6e 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + WebUrl = "https://microsoft.com" + ApplicationName = "Microsoft" + DisplayName = "Microsoft" + ExternalId = "dk9cddce2-dce2-f9dd-e2dc-cdf9e2dccdf9" +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md index 093355d11d5..3819aa2c1b2 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md index 093355d11d5..3b1abcba5cf 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md index 093355d11d5..a410d50ce75 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md index 093355d11d5..200fc2a69a0 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md index 093355d11d5..4215654a373 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,6 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md index 093355d11d5..37fe114659d 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Color = "preset15" +} +# A UPN can also be used as -UserId. +Update-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md index 093355d11d5..0a8c5cfd1ff 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md @@ -1,18 +1,29 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Id = "SHPR_eeab4fb1-20e5-48ca-ad9b-98119d94bee7" + "@odata.etag" = "1a371e53-f0a6-4327-a1ee-e3c56e4b38aa" + Availability = @( + @{ + Recurrence = @{ + Pattern = @{ + Type = "Weekly" + DaysOfWeek = @( + "Monday" + "Wednesday" + "Friday" + ) + Interval = 1 + } + Range = @{ + Type = "noEnd" + } + } + TimeZone = "Pacific Standard Time" + TimeSlots = $null + } + ) +} +Update-MgUserSettingShiftPreference -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md index 093355d11d5..622d57b361c 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Vacation Plan" +} +# A UPN can also be used as -UserId. +Update-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md index 093355d11d5..3a65d6632bb 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DueDateTime = @{ + DateTime = "2020-07-25T16:00:00" + TimeZone = "Eastern Standard Time" + } +} +# A UPN can also be used as -UserId. +Update-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md index 093355d11d5..4e8992f4fdc 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,9 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "buy cake" +} +# A UPN can also be used as -UserId. +Update-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId -BodyParameter $params ``` - -{{ Add description here }} - diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md index 093355d11d5..b0edeb7390d 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +###Example 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + "@odata.type" = "#microsoft.graph.linkedResource" + WebUrl = "http://microsoft.com" + ApplicationName = "Microsoft" + DisplayName = "Microsoft" +} +# A UPN can also be used as -UserId. +Update-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId -BodyParameter $params ``` - -{{ Add description here }} - From bccad8b9faca6251ac6f582e1e2c2b039aba4de9 Mon Sep 17 00:00:00 2001 From: Peter Ombwa Date: Tue, 13 Sep 2022 15:52:32 -0700 Subject: [PATCH 09/30] Bump version number. --- config/ModuleMetadata.json | 2 +- src/Applications/Applications/readme.md | 2 +- .../Microsoft.Graph.Authentication.psd1 | 13 ++++++++----- src/Bookings/Bookings/readme.md | 2 +- src/Calendar/Calendar/readme.md | 2 +- .../ChangeNotifications/readme.md | 2 +- .../CloudCommunications/readme.md | 2 +- src/Compliance/Compliance/readme.md | 2 +- .../CrossDeviceExperiences/readme.md | 2 +- .../DeviceManagement.Actions/readme.md | 2 +- .../DeviceManagement.Administration/readme.md | 2 +- .../DeviceManagement.Enrolment/readme.md | 2 +- .../DeviceManagement.Functions/readme.md | 2 +- src/DeviceManagement/DeviceManagement/readme.md | 2 +- src/Devices.CloudPrint/Devices.CloudPrint/readme.md | 2 +- .../Devices.CorporateManagement/readme.md | 2 +- .../Devices.ServiceAnnouncement/readme.md | 2 +- src/DirectoryObjects/DirectoryObjects/readme.md | 2 +- src/Education/Education/readme.md | 2 +- src/Files/Files/readme.md | 2 +- src/Financials/Financials/readme.md | 2 +- src/Groups/Groups/readme.md | 2 +- .../Identity.DirectoryManagement/readme.md | 2 +- .../Identity.Governance/readme.md | 2 +- src/Identity.SignIns/Identity.SignIns/readme.md | 2 +- src/Mail/Mail/readme.md | 2 +- src/Notes/Notes/readme.md | 2 +- src/People/People/readme.md | 2 +- src/PersonalContacts/PersonalContacts/readme.md | 2 +- src/Planner/Planner/readme.md | 2 +- src/Reports/Reports/readme.md | 2 +- src/SchemaExtensions/SchemaExtensions/readme.md | 2 +- src/Search/Search/readme.md | 2 +- src/Security/Security/readme.md | 2 +- src/Sites/Sites/readme.md | 2 +- src/Teams/Teams/readme.md | 2 +- src/Users.Actions/Users.Actions/readme.md | 2 +- src/Users.Functions/Users.Functions/readme.md | 2 +- src/Users/Users/readme.md | 2 +- src/WindowsUpdates/WindowsUpdates/readme.md | 2 +- 40 files changed, 47 insertions(+), 44 deletions(-) diff --git a/config/ModuleMetadata.json b/config/ModuleMetadata.json index e8f29b2bb58..7b22b5f8387 100644 --- a/config/ModuleMetadata.json +++ b/config/ModuleMetadata.json @@ -25,5 +25,5 @@ ], "releaseNotes": "See https://aka.ms/GraphPowerShell-Release.", "assemblyOriginatorKeyFile": "35MSSharedLib1024.snk", - "version": "1.11.1" + "version": "1.11.2" } diff --git a/src/Applications/Applications/readme.md b/src/Applications/Applications/readme.md index e7793fce3e6..6b2f7ac57bf 100644 --- a/src/Applications/Applications/readme.md +++ b/src/Applications/Applications/readme.md @@ -78,6 +78,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 index 39149bd26ce..d0da7f78b42 100644 --- a/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 +++ b/src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft # -# Generated on: 8/10/2022 +# Generated on: 9/13/2022 # @{ @@ -12,7 +12,7 @@ RootModule = './Microsoft.Graph.Authentication.psm1' # Version number of this module. -ModuleVersion = '1.11.1' +ModuleVersion = '1.11.2' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -78,7 +78,7 @@ CmdletsToExport = 'Connect-MgGraph', 'Disconnect-MgGraph', 'Get-MgContext', 'Set-MgEnvironment' # Variables to export from this module -# VariablesToExport = @() +VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = 'Connect-Graph', 'Disconnect-Graph', 'Invoke-GraphRequest', @@ -99,7 +99,9 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Microsoft','Office365','Graph','PowerShell','Teams','Outlook','OneDrive','AzureAD','GraphAPI','Productivity','SharePoint','Intune','SDK' + Tags = 'Microsoft', 'Office365', 'Graph', 'PowerShell', 'Teams', 'Outlook', + 'OneDrive', 'AzureAD', 'GraphAPI', 'Productivity', 'SharePoint', 'Intune', + 'SDK' # A URL to the license for this module. LicenseUri = 'https://aka.ms/devservicesagreement' @@ -124,7 +126,8 @@ PrivateData = @{ } # End of PSData hashtable - } # End of PrivateData hashtable + +} # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/Bookings/Bookings/readme.md b/src/Bookings/Bookings/readme.md index f18fdf52266..157d81cdbbf 100644 --- a/src/Bookings/Bookings/readme.md +++ b/src/Bookings/Bookings/readme.md @@ -50,6 +50,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Calendar/Calendar/readme.md b/src/Calendar/Calendar/readme.md index eaba36f3764..6c8aec2cf82 100644 --- a/src/Calendar/Calendar/readme.md +++ b/src/Calendar/Calendar/readme.md @@ -52,6 +52,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/ChangeNotifications/ChangeNotifications/readme.md b/src/ChangeNotifications/ChangeNotifications/readme.md index 7fb37e2cf05..2d94c839e45 100644 --- a/src/ChangeNotifications/ChangeNotifications/readme.md +++ b/src/ChangeNotifications/ChangeNotifications/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/CloudCommunications/CloudCommunications/readme.md b/src/CloudCommunications/CloudCommunications/readme.md index fa759e22636..8e9072dc4b6 100644 --- a/src/CloudCommunications/CloudCommunications/readme.md +++ b/src/CloudCommunications/CloudCommunications/readme.md @@ -59,6 +59,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Compliance/Compliance/readme.md b/src/Compliance/Compliance/readme.md index 0160eeec2b6..bd4e924cf81 100644 --- a/src/Compliance/Compliance/readme.md +++ b/src/Compliance/Compliance/readme.md @@ -47,6 +47,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md index 52276dcac82..9e3f9895559 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md index f6e9c6e6038..e4df6f2a10b 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/readme.md @@ -166,6 +166,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md index de9d9269411..9d9582e4d87 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/readme.md @@ -64,6 +64,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md index b1acd4fd13e..be3aad6a634 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/readme.md @@ -49,6 +49,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md index 4ab8c5183e2..e3461558f3c 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/readme.md @@ -47,6 +47,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DeviceManagement/DeviceManagement/readme.md b/src/DeviceManagement/DeviceManagement/readme.md index 87a96ff0865..35c02e0c034 100644 --- a/src/DeviceManagement/DeviceManagement/readme.md +++ b/src/DeviceManagement/DeviceManagement/readme.md @@ -54,6 +54,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/readme.md b/src/Devices.CloudPrint/Devices.CloudPrint/readme.md index cebe8e93417..e27711e1171 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/readme.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/readme.md @@ -50,6 +50,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md b/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md index 033c6f5a329..277c581d739 100644 --- a/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md +++ b/src/Devices.CorporateManagement/Devices.CorporateManagement/readme.md @@ -86,6 +86,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/readme.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/readme.md index 38caa145a8f..a1d1a0c0c7a 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/readme.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/readme.md @@ -49,6 +49,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/DirectoryObjects/DirectoryObjects/readme.md b/src/DirectoryObjects/DirectoryObjects/readme.md index 0ec9a6dcdf1..1ceca3d7c64 100644 --- a/src/DirectoryObjects/DirectoryObjects/readme.md +++ b/src/DirectoryObjects/DirectoryObjects/readme.md @@ -47,6 +47,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Education/Education/readme.md b/src/Education/Education/readme.md index fd1edcca45f..deae816b58f 100644 --- a/src/Education/Education/readme.md +++ b/src/Education/Education/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Files/Files/readme.md b/src/Files/Files/readme.md index 96846ac4a63..0a8eda83f95 100644 --- a/src/Files/Files/readme.md +++ b/src/Files/Files/readme.md @@ -50,6 +50,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Financials/Financials/readme.md b/src/Financials/Financials/readme.md index 7518d1f4ca7..8562806bb7e 100644 --- a/src/Financials/Financials/readme.md +++ b/src/Financials/Financials/readme.md @@ -42,6 +42,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Groups/Groups/readme.md b/src/Groups/Groups/readme.md index 10b2a27add4..a88782130cb 100644 --- a/src/Groups/Groups/readme.md +++ b/src/Groups/Groups/readme.md @@ -120,6 +120,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md index 7afdcb765e1..84f627f7d28 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/readme.md @@ -70,6 +70,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Identity.Governance/Identity.Governance/readme.md b/src/Identity.Governance/Identity.Governance/readme.md index 3223949ba19..bb1c4161330 100644 --- a/src/Identity.Governance/Identity.Governance/readme.md +++ b/src/Identity.Governance/Identity.Governance/readme.md @@ -320,6 +320,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Identity.SignIns/Identity.SignIns/readme.md b/src/Identity.SignIns/Identity.SignIns/readme.md index ae0faa432f4..d70e6e32e14 100644 --- a/src/Identity.SignIns/Identity.SignIns/readme.md +++ b/src/Identity.SignIns/Identity.SignIns/readme.md @@ -72,6 +72,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Mail/Mail/readme.md b/src/Mail/Mail/readme.md index 9930a3a0669..72e498f8857 100644 --- a/src/Mail/Mail/readme.md +++ b/src/Mail/Mail/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Notes/Notes/readme.md b/src/Notes/Notes/readme.md index 8903b8b781c..5412db740ef 100644 --- a/src/Notes/Notes/readme.md +++ b/src/Notes/Notes/readme.md @@ -44,6 +44,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/People/People/readme.md b/src/People/People/readme.md index b462f572bfc..754b969ae24 100644 --- a/src/People/People/readme.md +++ b/src/People/People/readme.md @@ -74,6 +74,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/PersonalContacts/PersonalContacts/readme.md b/src/PersonalContacts/PersonalContacts/readme.md index 7e2850d17c1..6de728bf6fb 100644 --- a/src/PersonalContacts/PersonalContacts/readme.md +++ b/src/PersonalContacts/PersonalContacts/readme.md @@ -34,6 +34,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Planner/Planner/readme.md b/src/Planner/Planner/readme.md index ec8e169f5fa..52bbb30ebd1 100644 --- a/src/Planner/Planner/readme.md +++ b/src/Planner/Planner/readme.md @@ -75,6 +75,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Reports/Reports/readme.md b/src/Reports/Reports/readme.md index f97ad6f46d9..48087c1beb3 100644 --- a/src/Reports/Reports/readme.md +++ b/src/Reports/Reports/readme.md @@ -79,6 +79,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/SchemaExtensions/SchemaExtensions/readme.md b/src/SchemaExtensions/SchemaExtensions/readme.md index fc4cc60b5d5..bc453c490ab 100644 --- a/src/SchemaExtensions/SchemaExtensions/readme.md +++ b/src/SchemaExtensions/SchemaExtensions/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Search/Search/readme.md b/src/Search/Search/readme.md index 8bd7e52077a..0e779a21817 100644 --- a/src/Search/Search/readme.md +++ b/src/Search/Search/readme.md @@ -35,6 +35,6 @@ subject-prefix: '' ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Security/Security/readme.md b/src/Security/Security/readme.md index 57a9906a76b..6459beaaed1 100644 --- a/src/Security/Security/readme.md +++ b/src/Security/Security/readme.md @@ -73,6 +73,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Sites/Sites/readme.md b/src/Sites/Sites/readme.md index 3b4cf3404a1..057e502f70b 100644 --- a/src/Sites/Sites/readme.md +++ b/src/Sites/Sites/readme.md @@ -88,6 +88,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Teams/Teams/readme.md b/src/Teams/Teams/readme.md index d9b643be48a..62777f5699e 100644 --- a/src/Teams/Teams/readme.md +++ b/src/Teams/Teams/readme.md @@ -57,6 +57,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Users.Actions/Users.Actions/readme.md b/src/Users.Actions/Users.Actions/readme.md index 24bab443f33..bdff2749d2b 100644 --- a/src/Users.Actions/Users.Actions/readme.md +++ b/src/Users.Actions/Users.Actions/readme.md @@ -146,6 +146,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Users.Functions/Users.Functions/readme.md b/src/Users.Functions/Users.Functions/readme.md index 5360a5a9a99..4b74db1bf94 100644 --- a/src/Users.Functions/Users.Functions/readme.md +++ b/src/Users.Functions/Users.Functions/readme.md @@ -61,6 +61,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/Users/Users/readme.md b/src/Users/Users/readme.md index 9686473ef16..7de42e847ab 100644 --- a/src/Users/Users/readme.md +++ b/src/Users/Users/readme.md @@ -54,6 +54,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` diff --git a/src/WindowsUpdates/WindowsUpdates/readme.md b/src/WindowsUpdates/WindowsUpdates/readme.md index 58a4d666aae..5239308b980 100644 --- a/src/WindowsUpdates/WindowsUpdates/readme.md +++ b/src/WindowsUpdates/WindowsUpdates/readme.md @@ -77,6 +77,6 @@ directive: ### Versioning ``` yaml -module-version: 1.11.1 +module-version: 1.11.2 release-notes: See https://aka.ms/GraphPowerShell-Release. ``` From 2e4af565adc8eeebcccef8fe776588159035817b Mon Sep 17 00:00:00 2001 From: "microsoft-github-policy-service[bot]" <77245923+microsoft-github-policy-service[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 15:58:40 -0700 Subject: [PATCH 10/30] Microsoft mandatory file (#1507) Co-authored-by: microsoft-github-policy-service[bot] <77245923+microsoft-github-policy-service[bot]@users.noreply.github.com> --- SECURITY.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000000..e138ec5d6a7 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,41 @@ + + +## Security + +Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). + +If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. + +## Reporting Security Issues + +**Please do not report security vulnerabilities through public GitHub issues.** + +Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). + +If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). + +You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). + +Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: + + * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) + * Full paths of source file(s) related to the manifestation of the issue + * The location of the affected source code (tag/branch/commit or direct URL) + * Any special configuration required to reproduce the issue + * Step-by-step instructions to reproduce the issue + * Proof-of-concept or exploit code (if possible) + * Impact of the issue, including how an attacker might exploit the issue + +This information will help us triage your report more quickly. + +If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. + +## Preferred Languages + +We prefer all communications to be in English. + +## Policy + +Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). + + From 58f57c7700242fbbdd28e0d357d0eb1d9d1f801a Mon Sep 17 00:00:00 2001 From: SteveWilkins1123 Date: Wed, 14 Sep 2022 08:55:13 -0700 Subject: [PATCH 11/30] fixed formatting --- .../examples/v1.0/Add-MgApplicationKey.md | 8 ++--- .../v1.0/Add-MgServicePrincipalKey.md | 8 ++--- .../v1.0/Add-MgServicePrincipalPassword.md | 4 +-- ...ServicePrincipalTokenSigningCertificate.md | 4 +-- .../Clear-MgApplicationVerifiedPublisher.md | 4 +-- .../examples/v1.0/Get-MgApplicationDelta.md | 4 +-- .../Get-MgApplicationExtensionProperty.md | 8 ++--- ...gApplicationFederatedIdentityCredential.md | 8 ++--- .../examples/v1.0/Get-MgApplicationOwner.md | 4 +-- .../v1.0/Get-MgApplicationTemplate.md | 8 ++--- .../Get-MgApplicationTokenIssuancePolicy.md | 4 +-- .../Get-MgApplicationTokenLifetimePolicy.md | 4 +-- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 4 +-- ...et-MgServicePrincipalClaimMappingPolicy.md | 4 +-- .../Get-MgServicePrincipalCreatedObject.md | 4 +-- ...ncipalDelegatedPermissionClassification.md | 4 +-- .../v1.0/Get-MgServicePrincipalDelta.md | 4 +-- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 4 +-- .../v1.0/Get-MgServicePrincipalMemberOf.md | 4 +-- ...MgServicePrincipalOauth2PermissionGrant.md | 4 +-- .../v1.0/Get-MgServicePrincipalOwnedObject.md | 4 +-- ...et-MgServicePrincipalTransitiveMemberOf.md | 4 +-- ...Invoke-MgInstantiateApplicationTemplate.md | 4 +-- .../New-MgApplicationExtensionProperty.md | 4 +-- ...gApplicationFederatedIdentityCredential.md | 4 +-- ...w-MgApplicationTokenIssuancePolicyByRef.md | 4 +-- ...w-MgApplicationTokenLifetimePolicyByRef.md | 4 +-- ...New-MgServicePrincipalAppRoleAssignedTo.md | 4 +-- ...New-MgServicePrincipalAppRoleAssignment.md | 4 +-- ...ServicePrincipalClaimMappingPolicyByRef.md | 4 +-- ...ncipalDelegatedPermissionClassification.md | 4 +-- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 4 +-- .../Remove-MgApplicationExtensionProperty.md | 4 +-- ...gApplicationFederatedIdentityCredential.md | 4 +-- .../examples/v1.0/Remove-MgApplicationKey.md | 4 +-- .../v1.0/Remove-MgApplicationOwnerByRef.md | 4 +-- .../v1.0/Remove-MgApplicationPassword.md | 4 +-- ...e-MgApplicationTokenIssuancePolicyByRef.md | 4 +-- ...e-MgApplicationTokenLifetimePolicyByRef.md | 4 +-- .../v1.0/Remove-MgGroupAppRoleAssignment.md | 4 +-- .../v1.0/Remove-MgServicePrincipal.md | 4 +-- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 4 +-- ...ServicePrincipalClaimMappingPolicyByRef.md | 4 +-- ...ncipalDelegatedPermissionClassification.md | 4 +-- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 4 +-- .../v1.0/Remove-MgServicePrincipalKey.md | 4 +-- .../v1.0/Remove-MgServicePrincipalPassword.md | 4 +-- .../Set-MgApplicationVerifiedPublisher.md | 4 +-- ...gApplicationFederatedIdentityCredential.md | 4 +-- .../examples/v1.0/Get-MgBookingBusiness.md | 12 +++---- .../v1.0/Get-MgBookingBusinessAppointment.md | 8 ++--- .../v1.0/Get-MgBookingBusinessCalendarView.md | 4 +-- .../Get-MgBookingBusinessCustomQuestion.md | 8 ++--- .../v1.0/Get-MgBookingBusinessCustomer.md | 8 ++--- .../v1.0/Get-MgBookingBusinessService.md | 8 ++--- .../v1.0/Get-MgBookingBusinessStaffMember.md | 8 ++--- .../examples/v1.0/Get-MgBookingCurrency.md | 8 ++--- .../examples/v1.0/New-MgBookingBusiness.md | 4 +-- .../v1.0/New-MgBookingBusinessAppointment.md | 4 +-- .../New-MgBookingBusinessCustomQuestion.md | 4 +-- .../v1.0/New-MgBookingBusinessCustomer.md | 4 +-- .../v1.0/New-MgBookingBusinessService.md | 4 +-- .../v1.0/New-MgBookingBusinessStaffMember.md | 4 +-- .../v1.0/Publish-MgBookingBusiness.md | 4 +-- .../examples/v1.0/Remove-MgBookingBusiness.md | 4 +-- .../Remove-MgBookingBusinessAppointment.md | 4 +-- .../Remove-MgBookingBusinessCustomQuestion.md | 4 +-- .../v1.0/Remove-MgBookingBusinessCustomer.md | 4 +-- .../v1.0/Remove-MgBookingBusinessService.md | 4 +-- .../Remove-MgBookingBusinessStaffMember.md | 4 +-- .../v1.0/Stop-MgBookingBusinessAppointment.md | 4 +-- .../v1.0/Unpublish-MgBookingBusiness.md | 4 +-- .../examples/v1.0/Update-MgBookingBusiness.md | 4 +-- .../Update-MgBookingBusinessAppointment.md | 4 +-- .../Update-MgBookingBusinessCustomQuestion.md | 4 +-- .../v1.0/Update-MgBookingBusinessCustomer.md | 4 +-- .../v1.0/Update-MgBookingBusinessService.md | 4 +-- .../Update-MgBookingBusinessStaffMember.md | 4 +-- .../examples/v1.0/Get-MgGroupEvent.md | 8 ++--- .../v1.0/Get-MgGroupEventExtension.md | 4 +-- .../Calendar/examples/v1.0/Get-MgPlace.md | 16 +++++----- .../examples/v1.0/Get-MgUserCalendar.md | 4 +-- .../examples/v1.0/Get-MgUserCalendarGroup.md | 8 ++--- .../v1.0/Get-MgUserCalendarGroupCalendar.md | 4 +-- .../v1.0/Get-MgUserCalendarPermission.md | 4 +-- .../examples/v1.0/Get-MgUserCalendarView.md | 4 +-- .../v1.0/Get-MgUserDefaultCalendar.md | 4 +-- .../Calendar/examples/v1.0/Get-MgUserEvent.md | 12 +++---- .../v1.0/Get-MgUserEventAttachment.md | 4 +-- .../examples/v1.0/Get-MgUserEventInstance.md | 4 +-- .../examples/v1.0/New-MgGroupEvent.md | 4 +-- .../examples/v1.0/New-MgUserCalendar.md | 4 +-- .../examples/v1.0/New-MgUserCalendarEvent.md | 8 ++--- .../examples/v1.0/New-MgUserCalendarGroup.md | 4 +-- .../v1.0/New-MgUserCalendarGroupCalendar.md | 4 +-- .../Calendar/examples/v1.0/New-MgUserEvent.md | 16 +++++----- .../v1.0/New-MgUserEventAttachment.md | 12 +++---- .../examples/v1.0/Remove-MgGroupEvent.md | 4 +-- .../v1.0/Remove-MgUserCalendarGroup.md | 4 +-- .../v1.0/Remove-MgUserCalendarPermission.md | 4 +-- .../examples/v1.0/Remove-MgUserEvent.md | 4 +-- .../v1.0/Remove-MgUserEventAttachment.md | 4 +-- .../Calendar/examples/v1.0/Update-MgPlace.md | 8 ++--- .../v1.0/Update-MgUserCalendarGroup.md | 4 +-- .../v1.0/Update-MgUserCalendarPermission.md | 4 +-- .../examples/v1.0/Update-MgUserEvent.md | 4 +-- .../examples/v1.0/Get-MgSubscription.md | 8 ++--- .../examples/v1.0/New-MgSubscription.md | 4 +-- .../examples/v1.0/Remove-MgSubscription.md | 4 +-- .../examples/v1.0/Update-MgSubscription.md | 4 +-- .../examples/v1.0/Get-MgCommunicationCall.md | 8 ++--- .../Get-MgCommunicationCallParticipant.md | 8 ++--- .../v1.0/Get-MgCommunicationCallRecord.md | 16 +++++----- .../Get-MgCommunicationCallRecordSession.md | 8 ++--- .../v1.0/Get-MgCommunicationOnlineMeeting.md | 4 +-- .../v1.0/Get-MgCommunicationPresence.md | 4 +-- .../Get-MgCommunicationPresenceByUserId.md | 4 +-- .../examples/v1.0/Get-MgUserOnlineMeeting.md | 8 ++--- ...Get-MgUserOnlineMeetingAttendanceReport.md | 8 ++--- ...MeetingAttendanceReportAttendanceRecord.md | 4 +-- .../examples/v1.0/Get-MgUserPresence.md | 8 ++--- .../v1.0/Invoke-MgAnswerCommunicationCall.md | 12 +++---- ...ke-MgInviteCommunicationCallParticipant.md | 28 ++++++++-------- .../Invoke-MgKeepCommunicationCallAlive.md | 4 +-- ...nicationCallTeleconferenceDeviceQuality.md | 4 +-- .../v1.0/Invoke-MgMuteCommunicationCall.md | 4 +-- ...voke-MgMuteCommunicationCallParticipant.md | 4 +-- .../Invoke-MgPlayCommunicationCallPrompt.md | 4 +-- ...nvoke-MgRecordCommunicationCallResponse.md | 4 +-- .../Invoke-MgRedirectCommunicationCall.md | 8 ++--- .../v1.0/Invoke-MgRejectCommunicationCall.md | 8 ++--- ...voke-MgSubscribeCommunicationCallToTone.md | 4 +-- .../v1.0/Invoke-MgUnmuteCommunicationCall.md | 4 +-- .../examples/v1.0/Move-MgCommunicationCall.md | 20 ++++++------ .../examples/v1.0/New-MgCommunicationCall.md | 16 +++++----- .../examples/v1.0/New-MgUserOnlineMeeting.md | 4 +-- .../v1.0/Remove-MgCommunicationCall.md | 4 +-- .../Remove-MgCommunicationCallParticipant.md | 12 +++---- .../v1.0/Remove-MgUserOnlineMeeting.md | 4 +-- ...me-MgCommunicationCallScreenSharingRole.md | 4 +-- ...MgCommunicationCallParticipantHoldMusic.md | 4 +-- ...Stop-MgCommunicationCallMediaProcessing.md | 4 +-- ...MgCommunicationCallParticipantHoldMusic.md | 4 +-- ...date-MgCommunicationCallRecordingStatus.md | 4 +-- .../v1.0/Update-MgUserOnlineMeeting.md | 8 ++--- .../examples/v1.0/Remove-MgUserActivity.md | 4 +-- ...MgRoleManagementDirectoryRoleAssignment.md | 20 ++++++------ ...nagementDirectoryRoleAssignmentSchedule.md | 12 +++---- ...DirectoryRoleAssignmentScheduleInstance.md | 12 +++---- ...tDirectoryRoleAssignmentScheduleRequest.md | 20 ++++++------ ...MgRoleManagementDirectoryRoleDefinition.md | 16 +++++----- ...agementDirectoryRoleEligibilitySchedule.md | 12 +++---- ...irectoryRoleEligibilityScheduleInstance.md | 12 +++---- ...DirectoryRoleEligibilityScheduleRequest.md | 12 +++---- ...mentEntitlementManagementRoleAssignment.md | 4 +-- ...mentEntitlementManagementRoleDefinition.md | 4 +-- ...MgRoleManagementDirectoryRoleAssignment.md | 12 +++---- ...tDirectoryRoleAssignmentScheduleRequest.md | 8 ++--- ...MgRoleManagementDirectoryRoleDefinition.md | 4 +-- ...DirectoryRoleEligibilityScheduleRequest.md | 8 ++--- ...mentEntitlementManagementRoleAssignment.md | 4 +-- ...MgRoleManagementDirectoryRoleAssignment.md | 4 +-- ...MgRoleManagementDirectoryRoleDefinition.md | 4 +-- ...tDirectoryRoleAssignmentScheduleRequest.md | 4 +-- ...DirectoryRoleEligibilityScheduleRequest.md | 4 +-- ...MgRoleManagementDirectoryRoleDefinition.md | 4 +-- .../examples/v1.0/Get-MgPrintConnector.md | 8 ++--- .../examples/v1.0/Get-MgPrintOperation.md | 4 +-- .../examples/v1.0/Get-MgPrintPrinter.md | 12 +++---- .../v1.0/Get-MgPrintPrinterConnector.md | 4 +-- .../v1.0/Get-MgPrintPrinterTaskTrigger.md | 8 ++--- .../examples/v1.0/Get-MgPrintService.md | 8 ++--- .../v1.0/Get-MgPrintServiceEndpoint.md | 8 ++--- .../examples/v1.0/Get-MgPrintShare.md | 12 +++---- .../v1.0/Get-MgPrintShareAllowedGroup.md | 4 +-- .../v1.0/Get-MgPrintShareAllowedUser.md | 4 +-- .../v1.0/Get-MgPrintTaskDefinition.md | 8 ++--- .../v1.0/Get-MgPrintTaskDefinitionTask.md | 8 ++--- .../v1.0/New-MgPrintPrinterTaskTrigger.md | 4 +-- .../examples/v1.0/New-MgPrintShare.md | 4 +-- .../v1.0/New-MgPrintShareAllowedGroupByRef.md | 4 +-- .../v1.0/New-MgPrintShareAllowedUserByRef.md | 4 +-- .../v1.0/New-MgPrintTaskDefinition.md | 4 +-- .../examples/v1.0/Remove-MgPrintConnector.md | 4 +-- .../examples/v1.0/Remove-MgPrintPrinter.md | 4 +-- .../v1.0/Remove-MgPrintPrinterTaskTrigger.md | 4 +-- .../examples/v1.0/Remove-MgPrintShare.md | 4 +-- .../Remove-MgPrintShareAllowedGroupByRef.md | 4 +-- .../Remove-MgPrintShareAllowedUserByRef.md | 4 +-- .../v1.0/Remove-MgPrintTaskDefinition.md | 4 +-- .../Restore-MgPrintPrinterFactoryDefault.md | 4 +-- .../examples/v1.0/Update-MgPrintConnector.md | 4 +-- .../examples/v1.0/Update-MgPrintPrinter.md | 4 +-- .../examples/v1.0/Update-MgPrintShare.md | 4 +-- .../v1.0/Update-MgPrintTaskDefinition.md | 4 +-- .../v1.0/Update-MgPrintTaskDefinitionTask.md | 4 +-- ...Get-MgServiceAnnouncementHealthOverview.md | 16 +++++----- .../v1.0/Get-MgServiceAnnouncementIssue.md | 8 ++--- .../v1.0/Get-MgServiceAnnouncementMessage.md | 8 ++--- ...-MgServiceAnnouncementMessageAttachment.md | 8 ++--- ...iceAnnouncementMessageAttachmentArchive.md | 8 ++--- ...iceAnnouncementMessageAttachmentContent.md | 8 ++--- ...oke-MgArchiveServiceAnnouncementMessage.md | 4 +-- ...ke-MgFavoriteServiceAnnouncementMessage.md | 4 +-- ...ke-MgMarkServiceAnnouncementMessageRead.md | 4 +-- ...-MgMarkServiceAnnouncementMessageUnread.md | 4 +-- ...gReportServiceAnnouncementIssueIncident.md | 4 +-- ...e-MgUnarchiveServiceAnnouncementMessage.md | 4 +-- ...-MgUnfavoriteServiceAnnouncementMessage.md | 4 +-- .../Confirm-MgDirectoryObjectMemberGroup.md | 4 +-- .../examples/v1.0/Get-MgDirectoryObject.md | 4 +-- ...rectoryObjectAvailableExtensionProperty.md | 4 +-- .../v1.0/Get-MgDirectoryObjectById.md | 4 +-- .../v1.0/Get-MgDirectoryObjectMemberGroup.md | 4 +-- .../v1.0/Get-MgDirectoryObjectMemberObject.md | 4 +-- .../examples/v1.0/Remove-MgDirectoryObject.md | 4 +-- .../v1.0/Test-MgDirectoryObjectProperty.md | 4 +-- .../examples/v1.0/Get-MgEducationClass.md | 8 ++--- .../v1.0/Get-MgEducationClassAssignment.md | 12 +++---- .../Get-MgEducationClassAssignmentCategory.md | 8 ++--- ...MgEducationClassAssignmentCategoryDelta.md | 16 +++++----- .../Get-MgEducationClassAssignmentDefault.md | 4 +-- .../Get-MgEducationClassAssignmentDelta.md | 12 +++---- .../Get-MgEducationClassAssignmentResource.md | 28 ++++++++-------- .../Get-MgEducationClassAssignmentRubric.md | 4 +-- .../Get-MgEducationClassAssignmentSetting.md | 4 +-- ...et-MgEducationClassAssignmentSubmission.md | 16 +++++----- ...ucationClassAssignmentSubmissionOutcome.md | 4 +-- ...cationClassAssignmentSubmissionResource.md | 28 ++++++++-------- ...ssAssignmentSubmissionSubmittedResource.md | 4 +-- .../v1.0/Get-MgEducationClassDelta.md | 4 +-- .../v1.0/Get-MgEducationClassMember.md | 4 +-- .../v1.0/Get-MgEducationClassSchool.md | 4 +-- .../v1.0/Get-MgEducationClassTeacher.md | 4 +-- .../v1.0/Get-MgEducationMeAssignment.md | 4 +-- .../examples/v1.0/Get-MgEducationMeClass.md | 4 +-- .../examples/v1.0/Get-MgEducationMeRubric.md | 8 ++--- .../examples/v1.0/Get-MgEducationMeSchool.md | 4 +-- .../examples/v1.0/Get-MgEducationSchool.md | 8 ++--- .../v1.0/Get-MgEducationSchoolClass.md | 4 +-- .../v1.0/Get-MgEducationSchoolDelta.md | 4 +-- .../v1.0/Get-MgEducationSchoolUser.md | 4 +-- .../examples/v1.0/Get-MgEducationUser.md | 8 ++--- .../v1.0/Get-MgEducationUserAssignment.md | 8 ++--- .../examples/v1.0/Get-MgEducationUserDelta.md | 4 +-- .../v1.0/Get-MgEducationUserTaughtClass.md | 8 ++--- ...ssignEducationClassAssignmentSubmission.md | 8 ++--- ...eturnEducationClassAssignmentSubmission.md | 4 +-- ...ubmitEducationClassAssignmentSubmission.md | 4 +-- .../examples/v1.0/New-MgEducationClass.md | 4 +-- .../v1.0/New-MgEducationClassAssignment.md | 4 +-- .../New-MgEducationClassAssignmentCategory.md | 4 +-- ...MgEducationClassAssignmentCategoryByRef.md | 8 ++--- .../New-MgEducationClassAssignmentResource.md | 24 +++++++------- ...cationClassAssignmentSubmissionResource.md | 24 +++++++------- .../v1.0/New-MgEducationClassMemberByRef.md | 4 +-- .../v1.0/New-MgEducationClassTeacherByRef.md | 4 +-- .../examples/v1.0/New-MgEducationMeRubric.md | 8 ++--- .../examples/v1.0/New-MgEducationSchool.md | 4 +-- .../v1.0/New-MgEducationSchoolClassByRef.md | 4 +-- .../v1.0/New-MgEducationSchoolUserByRef.md | 4 +-- .../examples/v1.0/New-MgEducationUser.md | 4 +-- .../Publish-MgEducationClassAssignment.md | 4 +-- .../examples/v1.0/Remove-MgEducationClass.md | 4 +-- .../v1.0/Remove-MgEducationClassAssignment.md | 4 +-- ...move-MgEducationClassAssignmentCategory.md | 4 +-- ...MgEducationClassAssignmentCategoryByRef.md | 4 +-- ...move-MgEducationClassAssignmentResource.md | 4 +-- ...e-MgEducationClassAssignmentRubricByRef.md | 4 +-- ...cationClassAssignmentSubmissionResource.md | 4 +-- .../v1.0/Remove-MgEducationMeRubric.md | 4 +-- .../examples/v1.0/Remove-MgEducationSchool.md | 4 +-- .../examples/v1.0/Remove-MgEducationUser.md | 4 +-- ...t-MgEducationClassAssignmentRubricByRef.md | 4 +-- ...it-MgEducationClassAssignmentSubmission.md | 4 +-- .../examples/v1.0/Update-MgEducationClass.md | 4 +-- .../v1.0/Update-MgEducationClassAssignment.md | 4 +-- ...pdate-MgEducationClassAssignmentDefault.md | 4 +-- ...pdate-MgEducationClassAssignmentSetting.md | 4 +-- ...ucationClassAssignmentSubmissionOutcome.md | 12 +++---- .../v1.0/Update-MgEducationMeRubric.md | 4 +-- .../examples/v1.0/Update-MgEducationSchool.md | 4 +-- .../examples/v1.0/Update-MgEducationUser.md | 4 +-- src/Files/Files/examples/v1.0/Get-MgDrive.md | 4 +-- .../examples/v1.0/Get-MgDriveItemChild.md | 4 +-- .../examples/v1.0/Get-MgGroupDefaultDrive.md | 4 +-- .../Files/examples/v1.0/Get-MgGroupDrive.md | 4 +-- .../examples/v1.0/Get-MgShareDriveItem.md | 8 ++--- ...t-MgShareSharedDriveItemSharedDriveItem.md | 4 +-- .../examples/v1.0/Get-MgUserDefaultDrive.md | 8 ++--- .../Files/examples/v1.0/Get-MgUserDrive.md | 8 ++--- .../examples/v1.0/Grant-MgSharePermission.md | 4 +-- .../v1.0/Invoke-MgCheckinDriveItem.md | 4 +-- .../v1.0/Invoke-MgCheckoutDriveItem.md | 4 +-- .../v1.0/Restore-MgDriveItemVersion.md | 4 +-- .../examples/v1.0/Add-MgGroupFavorite.md | 4 +-- .../v1.0/Get-MgGroupAcceptedSender.md | 4 +-- .../examples/v1.0/Get-MgGroupConversation.md | 12 +++---- .../v1.0/Get-MgGroupConversationThread.md | 4 +-- .../Groups/examples/v1.0/Get-MgGroupDelta.md | 4 +-- .../v1.0/Get-MgGroupLifecyclePolicy.md | 8 ++--- .../v1.0/Get-MgGroupLifecyclePolicyByGroup.md | 4 +-- .../examples/v1.0/Get-MgGroupMemberOf.md | 4 +-- .../v1.0/Get-MgGroupPermissionGrant.md | 4 +-- .../Groups/examples/v1.0/Get-MgGroupPhoto.md | 4 +-- .../v1.0/Get-MgGroupRejectedSender.md | 4 +-- .../Groups/examples/v1.0/Get-MgGroupThread.md | 12 +++---- .../examples/v1.0/Get-MgGroupThreadPost.md | 4 +-- .../v1.0/Get-MgGroupThreadPostAttachment.md | 4 +-- .../v1.0/Get-MgGroupThreadPostExtension.md | 4 +-- .../v1.0/Get-MgGroupTransitiveMember.md | 4 +-- .../v1.0/Get-MgGroupTransitiveMemberOf.md | 4 +-- .../v1.0/Invoke-MgForwardGroupThreadPost.md | 4 +-- .../examples/v1.0/Invoke-MgGraphGroup.md | 4 +-- .../examples/v1.0/Invoke-MgRenewGroup.md | 4 +-- .../v1.0/Invoke-MgReplyGroupThread.md | 16 +++++----- .../v1.0/Invoke-MgReplyGroupThreadPost.md | 4 +-- .../v1.0/Invoke-MgSubscribeGroupByMail.md | 4 +-- .../v1.0/New-MgGroupAcceptedSenderByRef.md | 4 +-- .../examples/v1.0/New-MgGroupConversation.md | 4 +-- .../v1.0/New-MgGroupConversationThread.md | 4 +-- .../v1.0/New-MgGroupLifecyclePolicy.md | 4 +-- .../examples/v1.0/New-MgGroupMemberByRef.md | 4 +-- .../v1.0/New-MgGroupRejectedSenderByRef.md | 4 +-- .../Groups/examples/v1.0/New-MgGroupThread.md | 4 +-- .../v1.0/Remove-MgGroupConversation.md | 8 ++--- .../examples/v1.0/Remove-MgGroupFavorite.md | 4 +-- .../v1.0/Remove-MgGroupLifecyclePolicy.md | 4 +-- .../v1.0/Remove-MgGroupMemberByRef.md | 4 +-- .../examples/v1.0/Remove-MgGroupOwnerByRef.md | 4 +-- .../examples/v1.0/Remove-MgGroupThread.md | 8 ++--- .../examples/v1.0/Reset-MgGroupUnseenCount.md | 4 +-- .../examples/v1.0/Set-MgGroupLicense.md | 8 ++--- .../examples/v1.0/Test-MgGroupProperty.md | 4 +-- .../v1.0/Update-MgGroupLifecyclePolicy.md | 4 +-- .../examples/v1.0/Update-MgGroupThread.md | 4 +-- .../v1.0/Update-MgGroupThreadPostExtension.md | 4 +-- .../examples/v1.0/Confirm-MgDomain.md | 4 +-- .../examples/v1.0/Get-MgContactDelta.md | 4 +-- .../v1.0/Get-MgContactDirectReport.md | 4 +-- .../examples/v1.0/Get-MgContactManager.md | 4 +-- .../examples/v1.0/Get-MgContactMemberOf.md | 4 +-- .../v1.0/Get-MgContactTransitiveMemberOf.md | 4 +-- .../examples/v1.0/Get-MgContract.md | 8 ++--- .../examples/v1.0/Get-MgDevice.md | 28 ++++++++-------- .../examples/v1.0/Get-MgDeviceMemberOf.md | 4 +-- .../v1.0/Get-MgDeviceRegisteredOwner.md | 4 +-- .../v1.0/Get-MgDeviceRegisteredUser.md | 4 +-- .../v1.0/Get-MgDeviceTransitiveMemberOf.md | 4 +-- .../v1.0/Get-MgDirectoryAdministrativeUnit.md | 8 ++--- ...Get-MgDirectoryAdministrativeUnitMember.md | 4 +-- ...gDirectoryAdministrativeUnitMemberByRef.md | 4 +-- ...ctoryAdministrativeUnitScopedRoleMember.md | 8 ++--- .../Get-MgDirectoryFederationConfiguration.md | 8 ++--- .../examples/v1.0/Get-MgDirectoryRoleDelta.md | 4 +-- .../v1.0/Get-MgDirectoryRoleScopedMember.md | 4 +-- .../v1.0/Get-MgDirectoryRoleTemplate.md | 8 ++--- .../v1.0/Get-MgDomainNameReference.md | 4 +-- .../Get-MgDomainServiceConfigurationRecord.md | 4 +-- .../v1.0/Get-MgDomainVerificationDnsRecord.md | 4 +-- .../examples/v1.0/Get-MgOrganization.md | 8 ++--- .../v1.0/Get-MgOrganizationBranding.md | 12 +++---- .../Get-MgOrganizationBrandingLocalization.md | 8 ++--- ...anizationBrandingLocalizationBannerLogo.md | 12 +++---- .../v1.0/Invoke-MgForceDomainDelete.md | 4 +-- .../examples/v1.0/New-MgDevice.md | 4 +-- .../v1.0/New-MgDeviceRegisteredOwnerByRef.md | 4 +-- .../v1.0/New-MgDeviceRegisteredUserByRef.md | 4 +-- .../v1.0/New-MgDirectoryAdministrativeUnit.md | 4 +-- ...gDirectoryAdministrativeUnitMemberByRef.md | 4 +-- ...ctoryAdministrativeUnitScopedRoleMember.md | 4 +-- .../New-MgDirectoryFederationConfiguration.md | 4 +-- .../examples/v1.0/New-MgDirectoryRole.md | 4 +-- .../examples/v1.0/New-MgDomain.md | 4 +-- .../New-MgOrganizationBrandingLocalization.md | 4 +-- .../examples/v1.0/Remove-MgDevice.md | 4 +-- .../Remove-MgDeviceRegisteredOwnerByRef.md | 4 +-- .../Remove-MgDirectoryAdministrativeUnit.md | 4 +-- ...gDirectoryAdministrativeUnitMemberByRef.md | 4 +-- ...ctoryAdministrativeUnitScopedRoleMember.md | 4 +-- .../v1.0/Remove-MgDirectoryDeletedItem.md | 4 +-- ...move-MgDirectoryFederationConfiguration.md | 4 +-- .../v1.0/Remove-MgDirectoryRoleMemberByRef.md | 4 +-- .../examples/v1.0/Remove-MgDomain.md | 4 +-- ...move-MgOrganizationBrandingLocalization.md | 4 +-- .../v1.0/Restore-MgDirectoryDeletedItem.md | 4 +-- .../examples/v1.0/Update-MgDevice.md | 8 ++--- .../Update-MgDirectoryAdministrativeUnit.md | 4 +-- .../examples/v1.0/Update-MgDomain.md | 4 +-- .../examples/v1.0/Update-MgOrganization.md | 4 +-- .../v1.0/Update-MgOrganizationBranding.md | 4 +-- ...date-MgOrganizationBrandingLocalization.md | 8 ++--- ...eAccessReviewDefinitionInstanceDecision.md | 4 +-- ...et-MgEntitlementManagementAccessPackage.md | 12 +++---- ...ccessPackageApplicablePolicyRequirement.md | 4 +-- ...entAccessPackageAssignmentApprovalStage.md | 8 ++--- .../Get-MgEntitlementManagementAssignment.md | 12 +++---- ...MgEntitlementManagementAssignmentPolicy.md | 8 ++--- ...gEntitlementManagementAssignmentRequest.md | 12 +++---- .../Get-MgEntitlementManagementCatalog.md | 8 ++--- ...itlementManagementConnectedOrganization.md | 8 ++--- .../Get-MgEntitlementManagementSetting.md | 4 +-- ...dentityGovernanceAccessReviewDefinition.md | 16 +++++----- ...overnanceAccessReviewDefinitionInstance.md | 12 +++---- ...viewDefinitionInstanceContactedReviewer.md | 4 +-- ...eAccessReviewDefinitionInstanceDecision.md | 12 +++---- ...anceAccessReviewDefinitionInstanceStage.md | 12 +++---- ...ssReviewDefinitionInstanceStageDecision.md | 12 +++---- ...GovernanceAccessReviewHistoryDefinition.md | 8 ++--- ...ceAccessReviewHistoryDefinitionInstance.md | 4 +-- ...t-MgIdentityGovernanceAppConsentRequest.md | 16 +++++----- ...anceAppConsentRequestUserConsentRequest.md | 12 +++---- ...-MgIdentityGovernanceTermOfUseAgreement.md | 16 +++++----- ...dentityGovernanceTermOfUseAgreementFile.md | 4 +-- .../v1.0/Get-MgUserAgreementAcceptance.md | 4 +-- ...sReviewDefinitionInstanceRecommendation.md | 4 +-- ...sReviewDefinitionInstanceRecordDecision.md | 4 +-- ...ew-MgEntitlementManagementAccessPackage.md | 4 +-- ...MgEntitlementManagementAssignmentPolicy.md | 8 ++--- ...gEntitlementManagementAssignmentRequest.md | 20 ++++++------ .../New-MgEntitlementManagementCatalog.md | 4 +-- ...itlementManagementConnectedOrganization.md | 4 +-- ...nnectedOrganizationExternalSponsorByRef.md | 4 +-- ...nnectedOrganizationInternalSponsorByRef.md | 4 +-- ...dentityGovernanceAccessReviewDefinition.md | 16 +++++----- ...GovernanceAccessReviewHistoryDefinition.md | 4 +-- ...iewHistoryDefinitionInstanceDownloadUri.md | 4 +-- ...-MgIdentityGovernanceTermOfUseAgreement.md | 4 +-- ...ve-MgEntitlementManagementAccessPackage.md | 4 +-- ...MgEntitlementManagementAssignmentPolicy.md | 4 +-- ...gEntitlementManagementAssignmentRequest.md | 4 +-- .../Remove-MgEntitlementManagementCatalog.md | 4 +-- ...itlementManagementConnectedOrganization.md | 4 +-- ...nnectedOrganizationExternalSponsorByRef.md | 4 +-- ...nnectedOrganizationInternalSponsorByRef.md | 4 +-- ...dentityGovernanceAccessReviewDefinition.md | 4 +-- ...-MgIdentityGovernanceTermOfUseAgreement.md | 4 +-- ...eAccessReviewDefinitionInstanceDecision.md | 4 +-- ...eAccessReviewDefinitionInstanceReminder.md | 4 +-- ...gEntitlementManagementAssignmentRequest.md | 4 +-- ...overnanceAccessReviewDefinitionInstance.md | 4 +-- ...anceAccessReviewDefinitionInstanceStage.md | 4 +-- ...te-MgEntitlementManagementAccessPackage.md | 4 +-- .../Update-MgEntitlementManagementCatalog.md | 4 +-- ...itlementManagementConnectedOrganization.md | 4 +-- .../Update-MgEntitlementManagementSetting.md | 4 +-- ...overnanceAccessReviewDefinitionInstance.md | 4 +-- ...anceAccessReviewDefinitionInstanceStage.md | 4 +-- ...ssReviewDefinitionInstanceStageDecision.md | 12 +++---- ...-MgIdentityGovernanceTermOfUseAgreement.md | 4 +-- .../v1.0/Confirm-MgRiskyUserCompromised.md | 4 +-- .../v1.0/Get-MgDataPolicyOperation.md | 4 +-- .../v1.0/Get-MgIdentityApiConnector.md | 8 ++--- .../v1.0/Get-MgIdentityB2XUserFlow.md | 12 +++---- ...t-MgIdentityB2XUserFlowIdentityProvider.md | 4 +-- .../v1.0/Get-MgIdentityB2XUserFlowLanguage.md | 8 ++--- ...tyB2XUserFlowLanguageDefaultPageContent.md | 4 +-- ...IdentityB2XUserFlowLanguageOverridePage.md | 4 +-- ...ntityB2XUserFlowUserAttributeAssignment.md | 16 +++++----- ...B2XUserFlowUserAttributeAssignmentOrder.md | 4 +-- .../examples/v1.0/Get-MgIdentityProvider.md | 32 +++++++++---------- .../v1.0/Get-MgIdentityUserFlowAttribute.md | 8 ++--- ...formationProtectionBitlockerRecoveryKey.md | 16 +++++----- ...mationProtectionThreatAssessmentRequest.md | 24 +++++++------- .../v1.0/Get-MgOauth2PermissionGrant.md | 8 ++--- .../v1.0/Get-MgOauth2PermissionGrantDelta.md | 4 +-- ...zationCertificateBasedAuthConfiguration.md | 8 ++--- .../Get-MgPolicyActivityBasedTimeoutPolicy.md | 8 ++--- .../Get-MgPolicyAdminConsentRequestPolicy.md | 4 +-- .../Get-MgPolicyAuthenticationFlowPolicy.md | 4 +-- .../Get-MgPolicyAuthenticationMethodPolicy.md | 4 +-- ...PolicyAuthenticationMethodConfiguration.md | 16 +++++----- .../v1.0/Get-MgPolicyClaimMappingPolicy.md | 8 ++--- .../Get-MgPolicyCrossTenantAccessPolicy.md | 4 +-- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 4 +-- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 8 ++--- .../v1.0/Get-MgPolicyFeatureRolloutPolicy.md | 12 +++---- .../Get-MgPolicyHomeRealmDiscoveryPolicy.md | 8 ++--- ...dentitySecurityDefaultEnforcementPolicy.md | 4 +-- .../v1.0/Get-MgPolicyPermissionGrantPolicy.md | 8 ++--- ...et-MgPolicyPermissionGrantPolicyExclude.md | 4 +-- ...et-MgPolicyPermissionGrantPolicyInclude.md | 4 +-- .../v1.0/Get-MgPolicyRoleManagementPolicy.md | 16 +++++----- ...-MgPolicyRoleManagementPolicyAssignment.md | 16 +++++----- .../Get-MgPolicyRoleManagementPolicyRule.md | 8 ++--- .../v1.0/Get-MgPolicyTokenIssuancePolicy.md | 8 ++--- .../v1.0/Get-MgPolicyTokenLifetimePolicy.md | 8 ++--- .../examples/v1.0/Get-MgRiskDetection.md | 8 ++--- .../examples/v1.0/Get-MgRiskyUser.md | 8 ++--- .../examples/v1.0/Get-MgRiskyUserHistory.md | 8 ++--- .../Get-MgUserAuthenticationEmailMethod.md | 8 ++--- .../Get-MgUserAuthenticationFido2Method.md | 4 +-- ...henticationMicrosoftAuthenticatorMethod.md | 4 +-- .../v1.0/Get-MgUserAuthenticationOperation.md | 4 +-- .../Get-MgUserAuthenticationPasswordMethod.md | 8 ++--- .../Get-MgUserAuthenticationPhoneMethod.md | 8 ++--- ...-MgUserAuthenticationSoftwareOathMethod.md | 8 ++--- ...AuthenticationTemporaryAccessPassMethod.md | 8 ++--- ...henticationWindowHelloForBusinessMethod.md | 8 ++--- .../Invoke-MgAvailableIdentityProviderType.md | 12 +++---- .../v1.0/Invoke-MgDismissRiskyUser.md | 4 +-- ...adIdentityApiConnectorClientCertificate.md | 4 +-- .../v1.0/New-MgIdentityApiConnector.md | 12 +++---- .../v1.0/New-MgIdentityB2XUserFlow.md | 12 +++---- ...ntityB2XUserFlowUserAttributeAssignment.md | 4 +-- .../examples/v1.0/New-MgIdentityProvider.md | 8 ++--- .../v1.0/New-MgIdentityUserFlowAttribute.md | 4 +-- ...mationProtectionThreatAssessmentRequest.md | 16 +++++----- .../v1.0/New-MgOauth2PermissionGrant.md | 4 +-- .../New-MgPolicyActivityBasedTimeoutPolicy.md | 4 +-- .../v1.0/New-MgPolicyClaimMappingPolicy.md | 4 +-- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 4 +-- .../v1.0/New-MgPolicyFeatureRolloutPolicy.md | 4 +-- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 4 +-- .../New-MgPolicyHomeRealmDiscoveryPolicy.md | 4 +-- .../v1.0/New-MgPolicyPermissionGrantPolicy.md | 4 +-- ...ew-MgPolicyPermissionGrantPolicyExclude.md | 4 +-- ...ew-MgPolicyPermissionGrantPolicyInclude.md | 4 +-- .../v1.0/New-MgPolicyTokenIssuancePolicy.md | 4 +-- .../v1.0/New-MgPolicyTokenLifetimePolicy.md | 4 +-- .../New-MgUserAuthenticationEmailMethod.md | 4 +-- .../New-MgUserAuthenticationPhoneMethod.md | 4 +-- ...AuthenticationTemporaryAccessPassMethod.md | 4 +-- .../v1.0/Remove-MgIdentityApiConnector.md | 4 +-- .../v1.0/Remove-MgIdentityB2XUserFlow.md | 4 +-- ...ntityB2XUserFlowUserAttributeAssignment.md | 4 +-- .../v1.0/Remove-MgIdentityProvider.md | 8 ++--- .../Remove-MgIdentityUserFlowAttribute.md | 4 +-- .../v1.0/Remove-MgOauth2PermissionGrant.md | 4 +-- ...move-MgPolicyActivityBasedTimeoutPolicy.md | 4 +-- ...PolicyAuthenticationMethodConfiguration.md | 16 +++++----- .../v1.0/Remove-MgPolicyClaimMappingPolicy.md | 4 +-- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 4 +-- .../Remove-MgPolicyFeatureRolloutPolicy.md | 4 +-- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 4 +-- ...Remove-MgPolicyHomeRealmDiscoveryPolicy.md | 4 +-- .../Remove-MgPolicyPermissionGrantPolicy.md | 4 +-- ...ve-MgPolicyPermissionGrantPolicyExclude.md | 4 +-- ...ve-MgPolicyPermissionGrantPolicyInclude.md | 4 +-- .../Remove-MgPolicyTokenIssuancePolicy.md | 4 +-- .../Remove-MgPolicyTokenLifetimePolicy.md | 4 +-- .../Remove-MgUserAuthenticationEmailMethod.md | 4 +-- .../Remove-MgUserAuthenticationFido2Method.md | 4 +-- ...henticationMicrosoftAuthenticatorMethod.md | 4 +-- .../Remove-MgUserAuthenticationPhoneMethod.md | 4 +-- ...-MgUserAuthenticationSoftwareOathMethod.md | 4 +-- ...AuthenticationTemporaryAccessPassMethod.md | 4 +-- ...henticationWindowHelloForBusinessMethod.md | 4 +-- ...enantAccessPolicyDefaultToSystemDefault.md | 4 +-- ...yB2XUserFlowLanguageOverridePageContent.md | 4 +-- ...B2XUserFlowUserAttributeAssignmentOrder.md | 4 +-- .../v1.0/Update-MgIdentityApiConnector.md | 12 +++---- ...ntityB2XUserFlowUserAttributeAssignment.md | 4 +-- .../v1.0/Update-MgIdentityProvider.md | 12 +++---- .../Update-MgIdentityUserFlowAttribute.md | 4 +-- .../v1.0/Update-MgOauth2PermissionGrant.md | 4 +-- ...date-MgPolicyActivityBasedTimeoutPolicy.md | 4 +-- ...Update-MgPolicyAuthenticationFlowPolicy.md | 4 +-- ...date-MgPolicyAuthenticationMethodPolicy.md | 4 +-- ...PolicyAuthenticationMethodConfiguration.md | 16 +++++----- .../v1.0/Update-MgPolicyClaimMappingPolicy.md | 4 +-- .../Update-MgPolicyCrossTenantAccessPolicy.md | 4 +-- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 4 +-- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 4 +-- .../Update-MgPolicyFeatureRolloutPolicy.md | 4 +-- ...Update-MgPolicyHomeRealmDiscoveryPolicy.md | 4 +-- ...dentitySecurityDefaultEnforcementPolicy.md | 4 +-- .../Update-MgPolicyPermissionGrantPolicy.md | 4 +-- ...Update-MgPolicyRoleManagementPolicyRule.md | 4 +-- .../Update-MgPolicyTokenIssuancePolicy.md | 4 +-- .../Update-MgPolicyTokenLifetimePolicy.md | 4 +-- .../Update-MgUserAuthenticationEmailMethod.md | 4 +-- .../Update-MgUserAuthenticationPhoneMethod.md | 4 +-- ...t-MgUserInferenceClassificationOverride.md | 4 +-- .../examples/v1.0/Get-MgUserMailFolder.md | 12 +++---- .../v1.0/Get-MgUserMailFolderChildFolder.md | 4 +-- .../v1.0/Get-MgUserMailFolderMessage.md | 4 +-- .../v1.0/Get-MgUserMailFolderMessageRule.md | 8 ++--- .../Mail/examples/v1.0/Get-MgUserMessage.md | 20 ++++++------ .../v1.0/Get-MgUserMessageAttachment.md | 28 ++++++++-------- .../v1.0/Get-MgUserMessageExtension.md | 4 +-- ...w-MgUserInferenceClassificationOverride.md | 4 +-- .../examples/v1.0/New-MgUserMailFolder.md | 4 +-- .../v1.0/New-MgUserMailFolderChildFolder.md | 8 ++--- .../v1.0/New-MgUserMailFolderMessage.md | 4 +-- .../v1.0/New-MgUserMailFolderMessageRule.md | 4 +-- .../Mail/examples/v1.0/New-MgUserMessage.md | 8 ++--- .../v1.0/New-MgUserMessageAttachment.md | 8 ++--- ...e-MgUserInferenceClassificationOverride.md | 4 +-- .../examples/v1.0/Remove-MgUserMailFolder.md | 4 +-- .../Remove-MgUserMailFolderMessageRule.md | 4 +-- .../examples/v1.0/Remove-MgUserMessage.md | 8 ++--- .../v1.0/Remove-MgUserMessageExtension.md | 4 +-- ...e-MgUserInferenceClassificationOverride.md | 4 +-- .../examples/v1.0/Update-MgUserMailFolder.md | 8 ++--- .../Update-MgUserMailFolderMessageRule.md | 4 +-- .../examples/v1.0/Update-MgUserMessage.md | 8 ++--- .../v1.0/Get-MgUserOnenoteNotebook.md | 12 +++---- .../v1.0/Get-MgUserOnenoteNotebookSection.md | 4 +-- .../Get-MgUserOnenoteNotebookSectionGroup.md | 4 +-- .../v1.0/Get-MgUserOnenoteOperation.md | 4 +-- .../examples/v1.0/Get-MgUserOnenoteSection.md | 8 ++--- .../v1.0/Get-MgUserOnenoteSectionGroup.md | 4 +-- .../Get-MgUserOnenoteSectionGroupSection.md | 4 +-- .../v1.0/New-MgUserOnenoteNotebook.md | 4 +-- .../v1.0/New-MgUserOnenoteNotebookSection.md | 4 +-- .../New-MgUserOnenoteNotebookSectionGroup.md | 4 +-- .../New-MgUserOnenoteSectionGroupSection.md | 4 +-- .../examples/v1.0/Remove-MgUserOnenotePage.md | 4 +-- .../People/examples/v1.0/Get-MgUserPerson.md | 4 +-- .../examples/v1.0/Get-MgUserUsedInsight.md | 8 ++--- .../examples/v1.0/Get-MgUserContact.md | 8 ++--- .../examples/v1.0/Get-MgUserContactFolder.md | 8 ++--- .../Get-MgUserContactFolderChildFolder.md | 4 +-- .../v1.0/Get-MgUserContactFolderContact.md | 4 +-- .../examples/v1.0/New-MgUserContact.md | 4 +-- .../examples/v1.0/New-MgUserContactFolder.md | 4 +-- .../New-MgUserContactFolderChildFolder.md | 4 +-- .../v1.0/New-MgUserContactFolderContact.md | 4 +-- .../examples/v1.0/Remove-MgUserContact.md | 4 +-- .../v1.0/Remove-MgUserContactFolder.md | 4 +-- .../examples/v1.0/Update-MgUserContact.md | 4 +-- .../v1.0/Update-MgUserContactFolder.md | 4 +-- .../examples/v1.0/Get-MgGroupPlannerPlan.md | 4 +-- .../Planner/examples/v1.0/Get-MgPlanner.md | 4 +-- .../examples/v1.0/Get-MgPlannerBucket.md | 8 ++--- .../examples/v1.0/Get-MgPlannerBucketTask.md | 4 +-- .../examples/v1.0/Get-MgPlannerPlan.md | 8 ++--- .../examples/v1.0/Get-MgPlannerPlanBucket.md | 4 +-- .../examples/v1.0/Get-MgPlannerPlanDetail.md | 4 +-- .../examples/v1.0/Get-MgPlannerPlanTask.md | 4 +-- .../examples/v1.0/Get-MgPlannerTask.md | 8 ++--- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 4 +-- .../Get-MgPlannerTaskBucketTaskBoardFormat.md | 4 +-- .../examples/v1.0/Get-MgPlannerTaskDetail.md | 4 +-- ...et-MgPlannerTaskProgressTaskBoardFormat.md | 4 +-- .../examples/v1.0/Get-MgUserPlannerPlan.md | 4 +-- .../examples/v1.0/Get-MgUserPlannerTask.md | 4 +-- .../examples/v1.0/New-MgPlannerBucket.md | 4 +-- .../examples/v1.0/New-MgPlannerPlan.md | 4 +-- .../examples/v1.0/New-MgPlannerTask.md | 4 +-- .../examples/v1.0/Remove-MgPlannerBucket.md | 4 +-- .../examples/v1.0/Remove-MgPlannerPlan.md | 4 +-- .../examples/v1.0/Remove-MgPlannerTask.md | 4 +-- .../examples/v1.0/Update-MgPlannerBucket.md | 4 +-- .../examples/v1.0/Update-MgPlannerPlan.md | 4 +-- .../v1.0/Update-MgPlannerPlanDetail.md | 4 +-- .../examples/v1.0/Update-MgPlannerTask.md | 4 +-- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 4 +-- ...date-MgPlannerTaskBucketTaskBoardFormat.md | 4 +-- .../v1.0/Update-MgPlannerTaskDetail.md | 4 +-- ...te-MgPlannerTaskProgressTaskBoardFormat.md | 4 +-- .../v1.0/Get-MgAuditLogDirectoryAudit.md | 8 ++--- .../v1.0/Get-MgAuditLogProvisioning.md | 8 ++--- .../examples/v1.0/Get-MgAuditLogSignIn.md | 12 +++---- .../Get-MgReportDailyPrintUsageByPrinter.md | 8 ++--- .../v1.0/Get-MgReportDailyPrintUsageByUser.md | 8 ++--- .../Get-MgReportMonthlyPrintUsageByPrinter.md | 4 +-- .../Get-MgReportMonthlyPrintUsageByUser.md | 4 +-- .../examples/v1.0/Get-MgSchemaExtension.md | 8 ++--- .../examples/v1.0/New-MgSchemaExtension.md | 12 +++---- .../examples/v1.0/Remove-MgSchemaExtension.md | 4 +-- .../examples/v1.0/Update-MgSchemaExtension.md | 8 ++--- .../examples/v1.0/Get-MgExternalConnection.md | 8 ++--- .../v1.0/Get-MgExternalConnectionGroup.md | 4 +-- .../v1.0/Get-MgExternalConnectionItem.md | 4 +-- .../v1.0/Get-MgExternalConnectionOperation.md | 4 +-- .../v1.0/Get-MgExternalConnectionSchema.md | 4 +-- .../examples/v1.0/New-MgExternalConnection.md | 4 +-- .../v1.0/New-MgExternalConnectionGroup.md | 4 +-- .../New-MgExternalConnectionGroupMember.md | 12 +++---- .../v1.0/Remove-MgExternalConnection.md | 4 +-- .../v1.0/Remove-MgExternalConnectionGroup.md | 4 +-- .../Remove-MgExternalConnectionGroupMember.md | 4 +-- .../v1.0/Remove-MgExternalConnectionItem.md | 4 +-- .../v1.0/Update-MgExternalConnection.md | 4 +-- .../v1.0/Update-MgExternalConnectionGroup.md | 4 +-- .../v1.0/Update-MgExternalConnectionItem.md | 4 +-- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 8 ++--- ...discoveryCaseNoncustodialDataSourceHold.md | 8 ++--- ...rityCaseEdiscoveryCaseReviewSetQueryTag.md | 4 +-- ...yCaseEdiscoveryCaseReviewSetToReviewSet.md | 4 +-- .../Close-MgSecurityCaseEdiscoveryCase.md | 4 +-- .../examples/v1.0/Get-MgSecurityAlert.md | 8 ++--- .../v1.0/Get-MgSecurityCaseEdiscoveryCase.md | 8 ++--- ...t-MgSecurityCaseEdiscoveryCaseCustodian.md | 8 ++--- ...iscoveryCaseCustodianLastIndexOperation.md | 4 +-- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 4 +-- ...iscoveryCaseCustodianUnifiedGroupSource.md | 4 +-- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 4 +-- ...aseEdiscoveryCaseNoncustodialDataSource.md | 12 +++---- ...t-MgSecurityCaseEdiscoveryCaseOperation.md | 8 ++--- ...t-MgSecurityCaseEdiscoveryCaseReviewSet.md | 8 ++--- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 8 ++--- .../Get-MgSecurityCaseEdiscoveryCaseSearch.md | 8 ++--- ...aseEdiscoveryCaseSearchAdditionalSource.md | 8 ++--- ...CaseEdiscoveryCaseSearchCustodianSource.md | 4 +-- ...seSearchLastEstimateStatisticsOperation.md | 4 +-- ...eEdiscoveryCaseSearchNoncustodialSource.md | 4 +-- ...Get-MgSecurityCaseEdiscoveryCaseSetting.md | 4 +-- .../Get-MgSecurityCaseEdiscoveryCaseTag.md | 8 ++--- .../v1.0/Get-MgSecuritySecureScore.md | 8 ++--- ...Get-MgSecuritySecureScoreControlProfile.md | 8 ++--- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 +-- ...sSecurityCaseEdiscoveryCaseTagHierarchy.md | 4 +-- ...urityCaseEdiscoveryCaseSearchStatistics.md | 4 +-- ...voke-MgReopenSecurityCaseEdiscoveryCase.md | 4 +-- .../v1.0/New-MgSecurityCaseEdiscoveryCase.md | 4 +-- ...w-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 +-- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 4 +-- ...iscoveryCaseCustodianUnifiedGroupSource.md | 12 +++---- ...aseEdiscoveryCaseNoncustodialDataSource.md | 4 +-- ...w-MgSecurityCaseEdiscoveryCaseReviewSet.md | 4 +-- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 +-- .../New-MgSecurityCaseEdiscoveryCaseSearch.md | 4 +-- ...h-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 +-- ...aseEdiscoveryCaseNoncustodialDataSource.md | 4 +-- .../Remove-MgSecurityCaseEdiscoveryCase.md | 4 +-- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 4 +-- ...discoveryCaseNoncustodialDataSourceHold.md | 8 ++--- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 +-- ...move-MgSecurityCaseEdiscoveryCaseSearch.md | 4 +-- .../Remove-MgSecurityCaseEdiscoveryCaseTag.md | 4 +-- ...urityCaseEdiscoveryCaseSettingToDefault.md | 4 +-- .../examples/v1.0/Update-MgSecurityAlert.md | 8 ++--- .../Update-MgSecurityCaseEdiscoveryCase.md | 4 +-- ...ecurityCaseEdiscoveryCaseCustodianIndex.md | 4 +-- ...iscoveryCaseNoncustodialDataSourceIndex.md | 4 +-- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 +-- ...date-MgSecurityCaseEdiscoveryCaseSearch.md | 4 +-- ...ate-MgSecurityCaseEdiscoveryCaseSetting.md | 4 +-- ...ate-MgSecuritySecureScoreControlProfile.md | 8 ++--- .../v1.0/Add-MgSiteListContentTypeCopy.md | 4 +-- ...teListContentTypeCopyFromContentTypeHub.md | 12 +++---- ...SiteContentTypeToDefaultContentLocation.md | 4 +-- src/Sites/Sites/examples/v1.0/Get-MgSite.md | 12 +++---- .../Sites/examples/v1.0/Get-MgSiteColumn.md | 4 +-- .../examples/v1.0/Get-MgSiteContentType.md | 12 +++---- .../v1.0/Get-MgSiteContentTypeColumn.md | 8 ++--- .../examples/v1.0/Get-MgSiteDefaultDrive.md | 4 +-- .../Sites/examples/v1.0/Get-MgSiteDrive.md | 4 +-- .../Sites/examples/v1.0/Get-MgSiteList.md | 24 +++++++------- .../examples/v1.0/Get-MgSiteListColumn.md | 4 +-- .../v1.0/Get-MgSiteListContentType.md | 4 +-- ...ListContentTypeCompatibleHubContentType.md | 4 +-- .../Sites/examples/v1.0/Get-MgSiteListItem.md | 4 +-- .../Get-MgSiteListItemDocumentSetVersion.md | 8 ++--- .../v1.0/Get-MgSiteListItemVersion.md | 8 ++--- .../examples/v1.0/Get-MgSitePermission.md | 8 ++--- .../examples/v1.0/Get-MgSiteTermStore.md | 4 +-- .../examples/v1.0/Get-MgSiteTermStoreGroup.md | 12 +++---- .../v1.0/Get-MgSiteTermStoreGroupSet.md | 4 +-- .../v1.0/Get-MgSiteTermStoreGroupSetTerm.md | 4 +-- .../examples/v1.0/Get-MgSiteTermStoreSet.md | 4 +-- .../v1.0/Get-MgSiteTermStoreSetChild.md | 4 +-- .../v1.0/Get-MgSiteTermStoreSetRelation.md | 4 +-- .../Sites/examples/v1.0/Get-MgSubSite.md | 4 +-- .../examples/v1.0/Get-MgUserFollowedSite.md | 4 +-- .../v1.0/Join-MgSiteContentTypeWithHubSite.md | 4 +-- .../Sites/examples/v1.0/New-MgSiteColumn.md | 4 +-- .../examples/v1.0/New-MgSiteContentType.md | 4 +-- .../v1.0/New-MgSiteContentTypeColumn.md | 4 +-- .../Sites/examples/v1.0/New-MgSiteList.md | 4 +-- .../examples/v1.0/New-MgSiteListColumn.md | 4 +-- .../Sites/examples/v1.0/New-MgSiteListItem.md | 4 +-- .../New-MgSiteListItemDocumentSetVersion.md | 4 +-- .../examples/v1.0/New-MgSitePermission.md | 4 +-- .../examples/v1.0/New-MgSiteTermStoreGroup.md | 4 +-- .../v1.0/New-MgSiteTermStoreSetChild.md | 4 +-- .../v1.0/Publish-MgSiteContentType.md | 4 +-- .../examples/v1.0/Remove-MgSiteContentType.md | 4 +-- .../v1.0/Remove-MgSiteContentTypeColumn.md | 4 +-- .../examples/v1.0/Remove-MgSiteListItem.md | 4 +-- ...Remove-MgSiteListItemDocumentSetVersion.md | 4 +-- .../examples/v1.0/Remove-MgSitePermission.md | 4 +-- .../v1.0/Remove-MgSiteTermStoreGroup.md | 4 +-- .../v1.0/Remove-MgSiteTermStoreSet.md | 4 +-- .../v1.0/Remove-MgSiteTermStoreSetTerm.md | 4 +-- ...estore-MgSiteListItemDocumentSetVersion.md | 4 +-- .../v1.0/Restore-MgSiteListItemVersion.md | 4 +-- .../v1.0/Test-MgSiteContentTypePublished.md | 4 +-- .../v1.0/Unpublish-MgSiteContentType.md | 4 +-- .../examples/v1.0/Update-MgSiteContentType.md | 4 +-- .../v1.0/Update-MgSiteListItemField.md | 4 +-- .../examples/v1.0/Update-MgSitePermission.md | 4 +-- .../examples/v1.0/Update-MgSiteTermStore.md | 4 +-- .../v1.0/Update-MgSiteTermStoreSet.md | 4 +-- .../v1.0/Update-MgSiteTermStoreSetTerm.md | 4 +-- .../Teams/examples/v1.0/Add-MgTeamMember.md | 12 +++---- .../v1.0/Complete-MgTeamChannelMigration.md | 4 +-- .../examples/v1.0/Complete-MgTeamMigration.md | 4 +-- src/Teams/Teams/examples/v1.0/Copy-MgTeam.md | 4 +-- .../examples/v1.0/Get-MgAppCatalogTeamApp.md | 20 ++++++------ .../Get-MgAppCatalogTeamAppDefinitionBot.md | 4 +-- src/Teams/Teams/examples/v1.0/Get-MgChat.md | 16 +++++----- .../examples/v1.0/Get-MgChatInstalledApp.md | 16 +++++----- .../Teams/examples/v1.0/Get-MgChatMember.md | 8 ++--- .../Teams/examples/v1.0/Get-MgChatMessage.md | 8 ++--- .../v1.0/Get-MgChatMessageHostedContent.md | 8 ++--- .../Teams/examples/v1.0/Get-MgChatTab.md | 12 +++---- src/Teams/Teams/examples/v1.0/Get-MgTeam.md | 4 +-- .../Teams/examples/v1.0/Get-MgTeamChannel.md | 20 ++++++------ .../v1.0/Get-MgTeamChannelFileFolder.md | 4 +-- .../examples/v1.0/Get-MgTeamChannelMember.md | 8 ++--- .../examples/v1.0/Get-MgTeamChannelMessage.md | 12 +++---- .../Get-MgTeamChannelMessageHostedContent.md | 4 +-- .../v1.0/Get-MgTeamChannelMessageReply.md | 4 +-- ...-MgTeamChannelMessageReplyHostedContent.md | 4 +-- .../v1.0/Get-MgTeamChannelSharedWithTeam.md | 8 ++--- ...gTeamChannelSharedWithTeamAllowedMember.md | 4 +-- .../examples/v1.0/Get-MgTeamChannelTab.md | 8 ++--- .../v1.0/Get-MgTeamIncomingChannel.md | 4 +-- .../examples/v1.0/Get-MgTeamInstalledApp.md | 20 ++++++------ .../Teams/examples/v1.0/Get-MgTeamMember.md | 16 +++++----- .../examples/v1.0/Get-MgTeamPrimaryChannel.md | 4 +-- .../Teams/examples/v1.0/Get-MgTeamSchedule.md | 4 +-- .../Get-MgTeamScheduleOfferShiftRequest.md | 8 ++--- .../v1.0/Get-MgTeamScheduleOpenShift.md | 8 ++--- ...et-MgTeamScheduleOpenShiftChangeRequest.md | 8 ++--- .../v1.0/Get-MgTeamScheduleSchedulingGroup.md | 8 ++--- .../examples/v1.0/Get-MgTeamScheduleShift.md | 8 ++--- ...et-MgTeamScheduleSwapShiftChangeRequest.md | 8 ++--- .../v1.0/Get-MgTeamScheduleTimeOff.md | 8 ++--- .../v1.0/Get-MgTeamScheduleTimeOffReason.md | 8 ++--- .../v1.0/Get-MgTeamScheduleTimeOffRequest.md | 8 ++--- .../Get-MgTeamworkWorkforceIntegration.md | 8 ++--- .../Teams/examples/v1.0/Get-MgUserChat.md | 12 +++---- .../examples/v1.0/Get-MgUserChatMember.md | 4 +-- .../examples/v1.0/Get-MgUserJoinedTeam.md | 4 +-- .../v1.0/Get-MgUserTeamworkAssociatedTeam.md | 4 +-- .../v1.0/Get-MgUserTeamworkInstalledApp.md | 16 +++++----- .../Get-MgUserTeamworkInstalledAppChat.md | 4 +-- .../examples/v1.0/Invoke-MgArchiveTeam.md | 4 +-- .../v1.0/Invoke-MgShareTeamSchedule.md | 4 +-- .../examples/v1.0/Invoke-MgUnarchiveTeam.md | 4 +-- .../examples/v1.0/New-MgAppCatalogTeamApp.md | 4 +-- src/Teams/Teams/examples/v1.0/New-MgChat.md | 24 +++++++------- .../examples/v1.0/New-MgChatInstalledApp.md | 4 +-- .../Teams/examples/v1.0/New-MgChatMember.md | 16 +++++----- .../Teams/examples/v1.0/New-MgChatMessage.md | 8 ++--- .../Teams/examples/v1.0/New-MgChatTab.md | 4 +-- src/Teams/Teams/examples/v1.0/New-MgTeam.md | 32 +++++++++---------- .../Teams/examples/v1.0/New-MgTeamChannel.md | 20 ++++++------ .../examples/v1.0/New-MgTeamChannelEmail.md | 4 +-- .../examples/v1.0/New-MgTeamChannelMember.md | 28 ++++++++-------- .../examples/v1.0/New-MgTeamChannelMessage.md | 32 +++++++++---------- .../v1.0/New-MgTeamChannelMessageReply.md | 8 ++--- .../examples/v1.0/New-MgTeamInstalledApp.md | 4 +-- .../Teams/examples/v1.0/New-MgTeamMember.md | 8 ++--- .../New-MgTeamScheduleOfferShiftRequest.md | 4 +-- .../v1.0/New-MgTeamScheduleOpenShift.md | 4 +-- ...ew-MgTeamScheduleOpenShiftChangeRequest.md | 4 +-- .../v1.0/New-MgTeamScheduleSchedulingGroup.md | 4 +-- .../examples/v1.0/New-MgTeamScheduleShift.md | 4 +-- ...ew-MgTeamScheduleSwapShiftChangeRequest.md | 4 +-- .../v1.0/New-MgTeamScheduleTimeOff.md | 4 +-- .../v1.0/New-MgTeamScheduleTimeOffReason.md | 4 +-- .../New-MgTeamworkWorkforceIntegration.md | 4 +-- .../v1.0/New-MgUserTeamworkInstalledApp.md | 4 +-- .../v1.0/Remove-MgAppCatalogTeamApp.md | 4 +-- .../v1.0/Remove-MgChatInstalledApp.md | 4 +-- .../examples/v1.0/Remove-MgChatMember.md | 4 +-- .../Teams/examples/v1.0/Remove-MgChatTab.md | 4 +-- .../examples/v1.0/Remove-MgTeamChannel.md | 4 +-- .../v1.0/Remove-MgTeamChannelEmail.md | 4 +-- .../v1.0/Remove-MgTeamChannelMember.md | 4 +-- .../Remove-MgTeamChannelSharedWithTeam.md | 4 +-- .../v1.0/Remove-MgTeamInstalledApp.md | 4 +-- .../examples/v1.0/Remove-MgTeamMember.md | 4 +-- .../v1.0/Remove-MgTeamScheduleOpenShift.md | 4 +-- .../Remove-MgTeamScheduleSchedulingGroup.md | 4 +-- .../v1.0/Remove-MgTeamScheduleShift.md | 4 +-- .../v1.0/Remove-MgTeamScheduleTimeOff.md | 4 +-- .../Remove-MgTeamScheduleTimeOffReason.md | 4 +-- .../Remove-MgTeamScheduleTimeOffRequest.md | 4 +-- .../Remove-MgTeamworkWorkforceIntegration.md | 4 +-- .../v1.0/Remove-MgUserTeamworkInstalledApp.md | 4 +-- .../v1.0/Send-MgChatActivityNotification.md | 20 ++++++------ .../v1.0/Send-MgTeamActivityNotification.md | 16 +++++----- .../Teams/examples/v1.0/Update-MgChat.md | 4 +-- .../v1.0/Update-MgChatInstalledApp.md | 4 +-- .../Teams/examples/v1.0/Update-MgChatTab.md | 4 +-- .../Teams/examples/v1.0/Update-MgTeam.md | 4 +-- .../examples/v1.0/Update-MgTeamChannel.md | 4 +-- .../v1.0/Update-MgTeamChannelMember.md | 4 +-- .../v1.0/Update-MgTeamChannelMessage.md | 4 +-- .../v1.0/Update-MgTeamInstalledApp.md | 4 +-- .../examples/v1.0/Update-MgTeamMember.md | 4 +-- .../v1.0/Update-MgTeamScheduleOpenShift.md | 4 +-- .../v1.0/Update-MgTeamScheduleShift.md | 4 +-- .../Update-MgTeamworkWorkforceIntegration.md | 4 +-- .../examples/v1.0/Clear-MgUserPresence.md | 4 +-- .../v1.0/Confirm-MgUserMemberGroup.md | 4 +-- .../v1.0/Confirm-MgUserMemberObject.md | 4 +-- .../examples/v1.0/Copy-MgUserMailFolder.md | 4 +-- .../examples/v1.0/Copy-MgUserMessage.md | 4 +-- .../v1.0/Copy-MgUserOnenoteNotebook.md | 4 +-- .../v1.0/Copy-MgUserOnenotePageToSection.md | 4 +-- .../Copy-MgUserOnenoteSectionToNotebook.md | 4 +-- ...Copy-MgUserOnenoteSectionToSectionGroup.md | 4 +-- ...e-MgUserAuthenticationPhoneMethodSmSign.md | 4 +-- ...e-MgUserAuthenticationPhoneMethodSmSign.md | 4 +-- .../v1.0/Export-MgUserPersonalData.md | 4 +-- .../examples/v1.0/Find-MgUserMeetingTime.md | 4 +-- .../v1.0/Get-MgUserDefaultCalendarSchedule.md | 4 +-- .../examples/v1.0/Get-MgUserMailTip.md | 4 +-- .../examples/v1.0/Get-MgUserMemberGroup.md | 4 +-- .../Get-MgUserOnenoteNotebookFromWebUrl.md | 4 +-- .../examples/v1.0/Invoke-MgAcceptUserEvent.md | 4 +-- .../Invoke-MgAcceptUserEventTentatively.md | 4 +-- .../Invoke-MgCreateOrGetUserOnlineMeeting.md | 4 +-- .../v1.0/Invoke-MgDeclineUserEvent.md | 4 +-- .../v1.0/Invoke-MgDismissUserEventReminder.md | 4 +-- .../v1.0/Invoke-MgForwardUserEvent.md | 4 +-- .../v1.0/Invoke-MgForwardUserMessage.md | 4 +-- .../examples/v1.0/Invoke-MgLicenseUser.md | 4 +-- .../v1.0/Invoke-MgReplyAllUserMessage.md | 4 +-- .../v1.0/Invoke-MgReplyUserMessage.md | 4 +-- .../v1.0/Invoke-MgSnoozeUserEventReminder.md | 4 +-- .../v1.0/Invoke-MgTranslateUserExchangeId.md | 4 +-- .../examples/v1.0/Move-MgUserMailFolder.md | 4 +-- .../examples/v1.0/Move-MgUserMessage.md | 4 +-- ...ew-MgUserMessageAttachmentUploadSession.md | 8 ++--- .../examples/v1.0/New-MgUserMessageForward.md | 4 +-- .../examples/v1.0/New-MgUserMessageReply.md | 4 +-- .../v1.0/New-MgUserMessageReplyAll.md | 4 +-- .../examples/v1.0/Revoke-MgUserSign.md | 4 +-- .../examples/v1.0/Send-MgUserMail.md | 12 +++---- .../examples/v1.0/Send-MgUserMessage.md | 4 +-- ...Send-MgUserTeamworkActivityNotification.md | 12 +++---- .../examples/v1.0/Set-MgUserPresence.md | 4 +-- .../examples/v1.0/Stop-MgUserEvent.md | 4 +-- .../examples/v1.0/Update-MgUserPassword.md | 4 +-- .../v1.0/Get-MgUserContactFolderDelta.md | 4 +-- .../examples/v1.0/Get-MgUserDelta.md | 4 +-- .../v1.0/Get-MgUserMailFolderMessageDelta.md | 4 +-- .../v1.0/Invoke-MgRecentUserActivity.md | 4 +-- .../Invoke-MgSupportedUserOutlookLanguage.md | 4 +-- .../examples/v1.0/Invoke-MgTimeUserOutlook.md | 4 +-- .../Users/examples/v1.0/Get-MgUserMemberOf.md | 4 +-- .../v1.0/Get-MgUserOutlookMasterCategory.md | 8 ++--- .../examples/v1.0/Get-MgUserOwnedDevice.md | 4 +-- .../examples/v1.0/Get-MgUserOwnedObject.md | 4 +-- .../v1.0/Get-MgUserRegisteredDevice.md | 4 +-- .../v1.0/Get-MgUserSettingShiftPreference.md | 4 +-- .../Users/examples/v1.0/Get-MgUserTodoList.md | 8 ++--- .../examples/v1.0/Get-MgUserTodoListTask.md | 8 ++--- .../Get-MgUserTodoListTaskChecklistItem.md | 8 ++--- .../Get-MgUserTodoListTaskLinkedResource.md | 8 ++--- .../v1.0/Get-MgUserTransitiveMemberOf.md | 4 +-- .../v1.0/New-MgUserOutlookMasterCategory.md | 4 +-- .../Users/examples/v1.0/New-MgUserTodoList.md | 4 +-- .../examples/v1.0/New-MgUserTodoListTask.md | 4 +-- .../New-MgUserTodoListTaskChecklistItem.md | 4 +-- .../New-MgUserTodoListTaskLinkedResource.md | 4 +-- .../Remove-MgUserOutlookMasterCategory.md | 4 +-- .../examples/v1.0/Remove-MgUserTodoList.md | 4 +-- .../v1.0/Remove-MgUserTodoListTask.md | 4 +-- .../Remove-MgUserTodoListTaskChecklistItem.md | 4 +-- ...Remove-MgUserTodoListTaskLinkedResource.md | 4 +-- .../Update-MgUserOutlookMasterCategory.md | 4 +-- .../Update-MgUserSettingShiftPreference.md | 4 +-- .../examples/v1.0/Update-MgUserTodoList.md | 4 +-- .../v1.0/Update-MgUserTodoListTask.md | 4 +-- .../Update-MgUserTodoListTaskChecklistItem.md | 4 +-- ...Update-MgUserTodoListTaskLinkedResource.md | 4 +-- 966 files changed, 2870 insertions(+), 2870 deletions(-) diff --git a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md index aa9b63afd85..91a1eafe770 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ @@ -12,8 +12,8 @@ $params = @{ } Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md index 385ddde73b0..4f511d58784 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ @@ -12,8 +12,8 @@ $params = @{ } Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md index 4e5662bded9..a117554ebeb 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ PasswordCredential = @{ diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md index 97d77581a49..386f321fa20 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ DisplayName = "CN=customDisplayName" diff --git a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md index d4dcf74b9dd..52092130187 100644 --- a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md index c98f4fbd7fc..47288de616d 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationDelta ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md index 1d837460cb0..a67ccb5cb35 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md index af1d6208803..ae51fea6708 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md index aebcc0861e0..cbc8d601426 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationOwner -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md index ea4b9d37e4f..fca7ba75998 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md index 1284b5c6881..f7f3923448f 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md index 9f6ff33f152..d9cea8e7127 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md index b7fe9c2614d..7b97bc2e6cd 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md index 7aa66d8bffe..0a1bb4368df 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md index 19c15c44fd2..b6368f72419 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md index 99e4c0d51f1..01b27e7f7b9 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md index fb5d827e75c..4cbf55f435f 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelta ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md index 0942e0b67d1..eb52aa9fb2f 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md index d6147a94132..faa5bad47da 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md index 7210836fc17..9169710fd1e 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md index 99398cdae10..ff5cef2ee4a 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md index b35ea68140a..9eee1c059e2 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md index aeca57de21b..ef7e16cd78a 100644 --- a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ DisplayName = "Azure AD SAML Toolkit" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md index 98b6812a873..87270bfddcb 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ Name = "jobGroup" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md index 2cffb8db9e1..cdfc504765a 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ Name = "testing02" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md index 343f95e3c0e..574a0aa553b 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/tokenIssuancePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md index a5e07453611..556c83ca5ef 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/tokenLifetimePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md index 25094cf3061..f77634c2886 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ PrincipalId = "33ad69f9-da99-4bed-acd0-3f24235cb296" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md index b97073521bc..07c13eb18fb 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ PrincipalId = "9028d19c-26a9-4809-8e3f-20ff73e2d75e" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md index b0dd60a77a1..627c177b1a3 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/claimsMappingPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md index b5ed4a0d559..66d96eb8573 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ PermissionId = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 173c2e0607e..3bbdaea5544 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/homeRealmDiscoveryPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md index 7b7f2e7971a..19d8a2f0471 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md index 567c94b5553..3f9bc731079 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md index da942754d81..2815ac73016 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md index f83d58670b0..8e3761ec688 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md index 8ed96f04a35..7162ba1a537 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md index 09f893ef1f5..c4a70ae4332 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md index 95f9b5c8f5c..dc8e0309b87 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md index 7b520e7845c..b0da17640d5 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md index 8327de5bf3a..bd6c169d9a5 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md index 1b4291b0013..52ecba967d5 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md index 8b2dff47d4c..8baf4dd80c1 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md index c8ce1de1ca9..62465105751 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index f37e52b0f2b..1646a530d38 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md index 7f5e50410f2..4568eb8e90b 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md index d40a0ffaee1..606b93d09f8 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md index b4a5c0db08b..ee9011fe509 100644 --- a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ VerifiedPublisherId = "1234567" diff --git a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md index e831e4e7f08..15fae20d092 100644 --- a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Applications $params = @{ Name = "testing02" diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md index e7584e7ebc6..82a3bde40d8 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -Query "Adventure" ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md index 0fb7c5f2392..648b7cffa7f 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md index 6d98e88ec3d..311dfb67721 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md index c85b6eceecd..f8aa23e5d3a 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md index 21250af5dd1..88a5af53931 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md index 5f0932028dd..8181d81ada1 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md index 8c9b4c32a2f..bb78224a648 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md index 2dce17bf565..4bec3d73c93 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency -BookingCurrencyId $bookingCurrencyId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency ``` diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md index a5e4ec77591..c04f87c9d63 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ DisplayName = "Fourth Coffee" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md index dc90690ecad..28b1464caa4 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingAppointment" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md index 80a2c8d2640..16153915002 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomQuestion" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md index 24159a57282..0707cb8117d 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomer" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md index c65bc0742aa..59cbd90ea3a 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingService" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md index 0729f7013a1..f5896858c61 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingStaffMember" diff --git a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md index c59bed845d3..7a92e4cebee 100644 --- a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md index 3e98655f184..6396da37c7b 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md index f9ff6e8c553..714198c516f 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md index 21ba072e871..5f2e0166323 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md index fecaa75061e..367c0022974 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md index 503f733f570..f34f34d7f81 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md index 66fc98a9f36..9595e5a620d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md index 0727a4ecba6..bb29fd4e044 100644 --- a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ CancellationMessage = "Your appointment has been successfully cancelled. Please call us again." diff --git a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md index e73a7ed48aa..8695e0d9401 100644 --- a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md index d0614fafbfb..d825cc8bc21 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ Email = "admin@fabrikam.com" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md index 0b9f731f327..17bb24e0cd9 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingAppointment" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md index c318f00955c..91df2de6d1e 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomQuestion" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md index 2d44497b40f..87d54ec6140 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomer" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md index 5aed34d824c..8e1901d2dee 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingService" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md index 7394628c474..53ccc89ce56 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingStaffMember" diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md index 810d53a43ef..ead5d17fa6d 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId -EventId $eventId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md index cef924c9308..a332f5c3872 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md index 4d73f2c71e9..70ac7a35202 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md index 3edf125f12c..0e225174435 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendar -UserId $userId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md index 293d8165da5..fb627f3c378 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md index 1417884a275..1a20e999abd 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md index e46324aeb8c..7d2aeb38115 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar Get-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md index fc16a89246c..5f38b45d681 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md index bb578ee2c27..253aa62ff6c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserDefaultCalendar -UserId $userId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md index 04b87ed5672..b5d7c2741d3 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md @@ -1,17 +1,17 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location" diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md index 86f0d576a02..adaf398b609 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventAttachment -UserId $userId -EventId $eventId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md index 92326b645ac..e787d497d50 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md index bbe032dc4e8..7cd8d3f32e6 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md index 6062dd5ccd9..58fc2e5ac0a 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "Volunteer" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md index 28dc76880ab..48ad01fc53a 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" @@ -32,8 +32,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md index 4a3f6243670..ed52acc81b3 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "Personal events" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md index 9f5259dc99d..4d5c1556356 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "Marketing calendar" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md index da1ebab2b88..c2b47abe83f 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Plan summer company picnic" @@ -62,8 +62,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" @@ -97,8 +97,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" @@ -133,8 +133,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md index b2fd15b3494..d8e6c4a8f77 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "#microsoft.graph.fileAttachment" @@ -9,8 +9,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "#microsoft.graph.itemAttachment" @@ -23,8 +23,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "#Microsoft.OutlookServices.ItemAttachment" diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md index e9eadac38be..b4edfece33c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar Remove-MgGroupEvent -GroupId $groupId -EventId $eventId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md index 71bc0df2835..925d2942748 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md index fd98633c40d..a52d95affe4 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md index 2aa40e404dd..ea4d0fe0f56 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEvent -UserId $userId -EventId $eventId diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md index 6c957b3e624..48a334d53ee 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md index 014bcf3436c..cc53295aa2e 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "microsoft.graph.room" @@ -11,8 +11,8 @@ $params = @{ } Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "microsoft.graph.roomList" diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md index 995555a9ad8..6c60b664403 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "name-value" diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md index 3d6c62af099..e87bd435a7d 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ Role = "write" diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md index 34de3ba7d61..a6fff025a48 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Calendar $params = @{ OriginalStartTimeZone = "originalStartTimeZone-value" diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md index 893bb4a1e38..762aab13dee 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.ChangeNotifications Get-MgSubscription -SubscriptionId $subscriptionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.ChangeNotifications Get-MgSubscription ``` diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md index 3dc873c5a39..f260dd1ed35 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.ChangeNotifications $params = @{ ChangeType = "created" diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md index a425a3f2605..cd6e605e30b 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.ChangeNotifications Remove-MgSubscription -SubscriptionId $subscriptionId ``` diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md index 9670e6fa613..c54a4fb8787 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.ChangeNotifications $params = @{ ExpirationDateTime = [System.DateTime]::Parse("2016-11-22T18:23:45.9356913Z") diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md index b8a20f78fab..4cc83921001 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md index 9fc6cab2839..37a54363977 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md index 865174c3d34..130a2e4ca90 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md index 182609f947a..64f8a94483d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md index 2b4a96d56fe..ba3572b25d1 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md index 754568af942..57c7dd1f252 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationPresence -PresenceId $presenceId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md index 568f007e945..67bc61b1773 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Ids = @( diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md index c59456fd4b9..6d236a52273 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md index d7902e0e0ae..b7938f6971f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId -ExpandProperty "attendanceRecords" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 9f5f1968d21..918af41d9cb 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md index d2ce725be1c..81851941bca 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserPresence -UserId $userId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserPresence -UserId $userId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md index 52e9b724639..be3f5435e45 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CallbackUri = "https://bot.contoso.com/api/calls" @@ -13,8 +13,8 @@ $params = @{ } Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CallbackUri = "callbackUri-value" @@ -29,8 +29,8 @@ $params = @{ } Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CallbackUri = "https://bot.contoso.com/api/calls" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md index 6495a216a4c..d73757ab8be 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -20,8 +20,8 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -40,8 +40,8 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -62,8 +62,8 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -85,8 +85,8 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -119,8 +119,8 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -141,8 +141,8 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md index 8c12a320dc2..ebcb2621260 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Invoke-MgKeepCommunicationCallAlive -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index f04a736cf2b..8c5fc6c0a06 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Quality = @{ diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md index 7a3a3afc751..859e5942f1c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md index 753415d8584..5d4cb0069ec 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md index 00f98aeab05..8d90d59ee2f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md index 7a7979cde1e..1e19c382307 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ BargeInAllowed = $true diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md index 4943653aaa6..2ea25a79ddd 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Targets = @( @@ -19,8 +19,8 @@ $params = @{ } Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Targets = @( diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md index 47031bdab45..f7ee6fc05eb 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md @@ -1,13 +1,13 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Reason = "none" } Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Reason = "busy" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md index aadb8c55c1f..2142bd5515e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "fd1c7836-4d84-4e24-b6aa-23188688cc54" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md index 5a91ceaee61..28e722b1a9e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md index c8bd36ba340..cad7e644d03 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -14,8 +14,8 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -34,8 +34,8 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -53,8 +53,8 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -75,8 +75,8 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md index d74410803b0..a8e1a72c882 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" @@ -40,8 +40,8 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" @@ -68,8 +68,8 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" @@ -111,8 +111,8 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md index 84ae2f49d64..21674fd1f9f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ StartDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00") diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md index a62e4a1a1c5..4f4f8618bcd 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCall -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md index 4a0a1682d34..44e72f4e95c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md index eb3ac7a8811..c622558760f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md index a89db177267..2592dd61e18 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Role = "viewer" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md index 6283875213c..5cc2725e43e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CustomPrompt = @{ diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md index df4eb99af43..2ffe9b6a427 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md index b8ad615d7b9..54ce81169c1 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md index 94cf10981f6..82908b1ead6 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md index 15c0817218f..6c87cdfdd2f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ LobbyBypassSettings = @{ @@ -9,8 +9,8 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ StartDateTime = [System.DateTime]::Parse("2020-09-09T14:33:30.8546353-07:00") diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md index 0696129bcd8..be3d901bf47 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md index 15186e9f617..89e0fd2235b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md @@ -1,25 +1,25 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -Filter "roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "principal" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -Filter " principalId eq '5bde3e51-d13b-4db1-9948-fe4b109d11a7'" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md index cb96aff118a..f4196981d70 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md index 9ae202b0e9c..5181487e410 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 0d0b43f6a1b..aedf47c99d9 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,25 +1,25 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md index 69db8f23ee3..642b4b86de9 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -ExpandProperty "inheritsPermissionsFrom" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md index 8ad6dec0d73..4f3a46c62b0 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md index d54f1e5c231..9eda1b9415c 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 796902f542a..12c71cdbc65 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md index 45e5d956f3f..bffba07f5e1 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementEntitlementManagementRoleAssignment -Filter "appScopeId eq '/AccessPackageCatalog/4cee616b-fdf9-4890-9d10-955e0ccb12bc'" -ExpandProperty "principal" ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md index a536c89a47d..3d68927dc57 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementEntitlementManagementRoleDefinition ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md index 8b149aac0ad..46ea7a4ebbb 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" @@ -9,8 +9,8 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" @@ -20,8 +20,8 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index ef85ddd0d4f..c0eb0b06338 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "adminAssign" @@ -16,8 +16,8 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "selfActivate" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md index 55c4c00a7d1..d26ebdb066e 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Description = "Update basic properties of application registrations" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index a42a9f26c48..f121548a03d 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "adminAssign" @@ -17,8 +17,8 @@ $params = @{ } New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "adminRemove" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md index d043b78d47e..a27867ace23 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ PrincipalId = "679a9213-c497-48a4-830a-8d3d25d94ddc" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md index 1e3705656ed..81ef44fea12 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Remove-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md index 8bb55d6585e..ff1775a4e94 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Remove-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 89812bcc343..f185537c46e 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 781e41d879a..8677fc3bdc4 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md index 0273b3e9892..066e0e1d98d 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Description = "Update basic properties of application registrations" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md index 2a058ec69b4..f953d0f90f4 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintConnector -PrintConnectorId $printConnectorId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintConnector ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md index 371a148adfa..0dc80dc12b5 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintOperation -PrintOperationId $printOperationId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md index 712614277fb..a605578e0c3 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter -PrinterId $printerId -Property "id,displayName,capabilities" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter -PrinterId $printerId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md index 52d8b3e0ee7..82a113c219c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterConnector -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md index a15f04a566a..7f749ca4aa0 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterTaskTrigger -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md index d188935a0ca..38b506a7fb7 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintService -PrintServiceId $printServiceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintService ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md index b46fc800f1a..7e4100e2895 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId -PrintServiceEndpointId $printServiceEndpointId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md index 5cd4449b0ab..de2bca621a7 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare -PrinterShareId $printerShareId -Property "id,displayName,capabilities" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare -PrinterShareId $printerShareId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md index 37ebe8644b8..5858445d3f6 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShareAllowedGroup -PrinterShareId $printerShareId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md index e275b9d0f4a..7240a9485d8 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShareAllowedUser -PrinterShareId $printerShareId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md index 26fe53cd54d..d1cbc8bb1f5 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinition ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md index 6ddd4b30931..a66b2c7d66a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md index 628d442debc..c6eea7e5a00 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ Event = "jobStarted" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md index 66064c00098..08a58da3fb0 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "ShareName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md index 664ad32cb93..c2f891649ab 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/groups/{groupId}" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md index 70a21160639..918a47e2912 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/{userId}" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md index 3450da2b9a9..f3a9d79597f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "Test TaskDefinitionName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md index 2dfed546364..0a0c6fd65e8 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintConnector -PrintConnectorId $printConnectorId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md index bed983190ec..96f73f7dfb3 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintPrinter -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md index 0b61069b06b..6d64058a748 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md index 14fce5c491d..17ea7599727 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShare -PrinterShareId $printerShareId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md index cf51695faf4..fc1e97c8f99 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -GroupId $groupId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md index b350f092d1b..b84f151cec7 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -UserId $userId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md index ca6d20afa8f..4e81d9bc7a0 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md index d5dcac3d49b..fa063388434 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint Restore-MgPrintPrinterFactoryDefault -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md index 7547d00bb37..681999b7419 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "ConnectorName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md index f348cc3933f..7e5ce7234c6 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ Name = "PrinterName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md index 7095519c64d..43b26922319 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "PrinterShare Name" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md index 39fa0bdd4c2..082b91a5924 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "Test TaskDefinitionName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md index 378ebf36936..b278e07cccd 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ Status = @{ diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md index 404e429fb80..4e797d9ec23 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId -ExpandProperty "issues" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ExpandProperty "issues" ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md index d2808aa48e7..477215708a5 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementIssue -ServiceHealthIssueId $serviceHealthIssueId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementIssue ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md index b02cb45fb4a..a4c78d584f9 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessage -ServiceUpdateMessageId $serviceUpdateMessageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessage ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md index a81a00e76fe..719d2282bea 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md index 69c9f0ac378..1880dd9e7e9 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId -OutFile $outFileId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md index 77522687309..b81ae2d3eeb 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId -OutFile $outFileId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md index ee86cb610bc..990da59543e 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md index b72e7a92c42..33e956e36db 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md index 1c790ad31d0..39d860c4f50 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md index 25e955fc419..5a25b36003e 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md index 241766e8312..81e5182eca8 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Invoke-MgReportServiceAnnouncementIssueIncident -ServiceHealthIssueId $serviceHealthIssueId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md index 53ae92eff05..9197303b944 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md index 605aad82292..d013108d786 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md index 1e5490ae722..9673276ad1c 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ GroupIds = @( diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md index dcf9a0745c4..5e401e9f78b 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects Get-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md index c204dc513a9..3783333a236 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects Get-MgDirectoryObjectAvailableExtensionProperty ``` diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md index 94c31283d87..a1cc54bd03a 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ Ids = @( diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md index 86841818f79..f72897e46c9 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ SecurityEnabledOnly = $false diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md index 8efe89c7b65..570d24b490a 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ SecurityEnabledOnly = $true diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md index 4e4325414e4..d57c95d139b 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects Remove-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md index 49f3bbd38d8..8bdb66781c2 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ EntityType = "Group" diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md index 7af04209a44..6fece1201c1 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClass -EducationClassId $educationClassId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClass ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md index 64211a4957f..13ca9578d61 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId -ExpandProperty "resources" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md index b81531504ab..be9f3c69ebb 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md index f93bd51ce10..35af7c3c96b 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IVSFtBcXz0jxjIEihcR91dS3R7i8Z2IMtxIn9rKbK9Jvurj6jCH-lDbSNatdesrK0PJ5zpZ_-i8HyqkdtLhWD9tewXVArIqQWJA7gJz8z4paG2q0MU9rixrQOTe7WIXikPiBTUPilHuUW-o1k7cvqke3K7llJbU3G7z_O7WGoVGE.l8-2OcBi9ZWAhwhPnXvJ-kyyk8GNb6-H4o6qofP5YBY" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -OutFile $outFileId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Top 3 ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md index cc63e5955f7..bdeb03595ed 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDefault -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md index 6f1a395b8bd..f349cd0f3a9 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxROmLjac48n-iXm5j6n5aQwlsnC-2OvL3lI0Z8M4klERNmJQjnBn7MHqwXZ6L8GlI3VPnya3E-p1bisiZX97jLvQUAopseIYhvnD6v7fiYrk.fVsHempT6X2CiBh6aN9Ex5nVJ71adKdcf-mdke8OHKs" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IdHoweKQs1czM4Ry1LVsNqwIFXftTcRHvgSCbcszvbJHEWDCO3QO7K7zwCM8DdXNepZOa1gqldecjIUM0NFRbGQoQ5yR6RmGnMgtko8TDMOyMH_yg1my82PTXA_t4Nj-DhMDZWvuNTd_lbLeTngc7mIJPMCR2gHN9CSKsW_kw850.UM9tUqwOu5Ln1pnxaP6KdMmfJHszGqY3EKPlQkOiyGs" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2 ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md index bc48f59f18a..2230546aab2 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md @@ -1,35 +1,35 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md index e7dd0bb7701..084839ee5bc 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentRubric -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md index 1b53f6bd99b..7aaf0d0132f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSetting -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md index 1c0841e65f6..80d4845d6db 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -ExpandProperty "*" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -ExpandProperty "outcomes" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md index 267afe7d0a5..116b6e16c6c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md index bfa1f24d584..263c1f56070 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md @@ -1,35 +1,35 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md index 3be7b3ad7dc..50aaa7e795f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionSubmittedResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md index f9dbdc6b26d..e93e0aa99e2 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassDelta ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md index ec8a6cb6784..6e948f1e75d 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassMember -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md index db709d1536b..2a0fc45ac4c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassSchool -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md index 8f914eef1b5..3d39f3b2624 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassTeacher -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md index 8b135b6c463..a6287623384 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeAssignment ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md index ec3fd694dd9..6b8e6d4ebb3 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeClass ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md index fe11d4f9b94..c059c13a1f8 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeRubric -EducationRubricId $educationRubricId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeRubric ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md index b134c653003..cf02332d30e 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeSchool ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md index 630a6bfe850..59a64f1b16b 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchool -EducationSchoolId $educationSchoolId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchool ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md index b638053c92b..e36c67bd3fe 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolClass -EducationSchoolId $educationSchoolId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md index ae748a5b1ac..3325f8a805e 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolDelta ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md index d60a920e7c4..9c1e2d47b62 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolUser -EducationSchoolId $educationSchoolId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md index b4f1cb286c7..67d44a65112 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUser -EducationUserId $educationUserId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUser ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md index e60d9f97bb7..0a23d642707 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserAssignment -EducationUserId $educationUserId -ExpandProperty "submissions" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserAssignment -EducationUserId $educationUserId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md index 7882c512fae..a04cdde49b3 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserDelta ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md index 4445eb2f79e..dab8b063e12 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserTaughtClass -EducationUserId $educationUserId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserTaughtClass -EducationUserId $educationUserId -OutFile $outFileId ``` diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md index aed32b709bc..ab741131192 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md index 51b992b6910..e9572ac98bb 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Invoke-MgReturnEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md index 568ea1c886d..ceb6caf4720 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Invoke-MgUnsubmitEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClass.md b/src/Education/Education/examples/v1.0/New-MgEducationClass.md index d46ccb538dc..ea80165b68d 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClass.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationClass" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md index 6c51c8be273..076decd0108 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DueDateTime = [System.DateTime]::Parse("2021-09-07T00:00:00Z") diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md index dd67f439257..e9437a6114f 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Quizzes" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md index f126dc32273..d58ae7287ac 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md @@ -1,13 +1,13 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" } New-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md index 752fd34ad6a..9b3b75992da 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -11,8 +11,8 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -23,8 +23,8 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -37,8 +37,8 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -50,8 +50,8 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -63,8 +63,8 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md index 233f6349b61..f7cfa188a20 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -10,8 +10,8 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -22,8 +22,8 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -34,8 +34,8 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -46,8 +46,8 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -58,8 +58,8 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md index 16f084157ca..af40aabd56b 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/13015" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md index 96745bf2b1a..a2277793d69 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/14011" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md index 4f1da5b2e1e..990bbfeb56e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Example Credit Rubric" @@ -68,8 +68,8 @@ $params = @{ } New-MgEducationMeRubric -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Example Points Rubric" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md index 527a81056c4..f42b6d8d376 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationSchool" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md index 8e4cbd5815f..7730998f02e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/11006" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md index c1387106586..cbff41d3f34 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/14008" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationUser.md b/src/Education/Education/examples/v1.0/New-MgEducationUser.md index b9e5d701ec6..c8ec57c7e0e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationUser" diff --git a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md index 5608c5b4727..088efea9cfa 100644 --- a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Publish-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md index a394df2d598..1f716e1152d 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClass -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md index 541af643858..3201b2912ad 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md index e96614a85b7..06a400b1a4d 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md index ca77157721f..23ef8ed83d8 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationCategoryId $educationCategoryId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md index a20d42d0520..104d51149b2 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md index 1c0a68851d9..c354470239c 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md index 36d01782e56..6850770cd95 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md index 0c8be93183e..6ec78cf1837 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationMeRubric -EducationRubricId $educationRubricId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md index 3b1c41bff92..874f846eda4 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationSchool -EducationSchoolId $educationSchoolId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md index 1019b246d10..b9fa418cdaf 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Remove-MgEducationUser -EducationUserId $educationUserId ``` diff --git a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md index dae2116dabd..a1532732bc0 100644 --- a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/me/rubrics/ceb3863e-6912-4ea9-ac41-3c2bb7b6672d" diff --git a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md index a4c5c1baa94..78779d45f2d 100644 --- a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education Submit-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md index ef8e208021e..7943cf64b55 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ Description = "History - World History 1" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md index 0bccad3e4d8..3d1ce832ce9 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Reading and review test 09.03 #5" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md index 0e6e0bf4c0a..86e07efc7e6 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ AddedStudentAction = "assignIfOpen" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md index 83521834a40..ca32733fec1 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ SubmissionAnimationDisabled = $true diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md index 8428822867f..864d7723abb 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,13 +1,13 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationFeedbackOutcome" } Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationRubricOutcome" @@ -18,8 +18,8 @@ $params = @{ } Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationPointsOutcome" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md index 60b1a7342fd..42e487c3175 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Example Credit Rubric after display name patch" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md index 880e9a84990..a064593449a 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Fabrikam Arts High School" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md index 232b65a7856..87234708806 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Rogelio Cazares" diff --git a/src/Files/Files/examples/v1.0/Get-MgDrive.md b/src/Files/Files/examples/v1.0/Get-MgDrive.md index fab4aef6cab..6870a9d9b41 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgDrive.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgDrive -DriveId $driveId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md index be270ac3c54..ccbfe43f9e0 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md +++ b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgDriveItemChild -DriveId $driveId -DriveItemId $driveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md index 3e9c9f8f1df..81e08c6f5c5 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgGroupDefaultDrive -GroupId $groupId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md index b7d1650fca3..b3fbf105883 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgGroupDrive -GroupId $groupId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md index 9dece84510a..de5c64b264c 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId -ExpandProperty "children" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Files Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md index e9fbb0965a5..fb7bf79a199 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgShareSharedDriveItemSharedDriveItem -SharedDriveItemId $sharedDriveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md index 498ad5fb2fe..5a967968cec 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Get-MgUserDefaultDrive -UserId $userId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Files # A UPN can also be used as -UserId. Get-MgUserDefaultDrive -UserId $userId diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md index bb564bfecb9..769790a593a 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files # A UPN can also be used as -UserId. Get-MgUserDrive -UserId $userId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Files Get-MgUserDrive -UserId $userId ``` diff --git a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md index 658087df1d4..1934b9df4cd 100644 --- a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md +++ b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files $params = @{ Recipients = @( diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md index 85606061111..2f9632e1fdb 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files $params = @{ Comment = "Updating the latest guidelines" diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md index 0dc67e4adae..e567156d49b 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Invoke-MgCheckoutDriveItem -DriveId $driveId -DriveItemId $driveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md index d029216194e..6f7f6cd0e47 100644 --- a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md +++ b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Files Restore-MgDriveItemVersion -DriveId $driveId -DriveItemId $driveItemId -DriveItemVersionId $driveItemVersionId ``` diff --git a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md index 34527356592..e12d6ccd193 100644 --- a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Add-MgGroupFavorite -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md index 7644fd65823..3699c804d50 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupAcceptedSender -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md index 6e67784d7c9..4eba22bc88d 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md index 9aee00cc81c..abcc46f439f 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md index d812b8ecced..9c8ce98afaa 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupDelta ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md index e7c7119b5a8..d8369504bfd 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicy ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md index d82b10d4a09..72e24439c37 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicyByGroup -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md index 93dd64f3737..fcb1266ddb6 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupMemberOf -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md index 2583ff8356f..ed3e24bb0e7 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupPermissionGrant -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md index 213ebf358ff..3445c0fe94c 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupPhoto -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md index 24c1c1e0f40..c6dce036c0e 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupRejectedSender -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md index e94dc275224..749535c9985 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md index cd071dbc071..ee952b47501 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md index 452a7b9cc6c..1b329ad1ece 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPostAttachment -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md index 985a15bdb9c..f10f25a3cbc 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md index 3999affc1ce..4e36ba2e4f3 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupTransitiveMember -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md index 4654953a4b5..803a1de3e00 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Get-MgGroupTransitiveMemberOf -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md index c457653018c..8b806ce8ad0 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Comment = "comment-value" diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md index 18ddd979530..ecb8c11437d 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Invoke-MgGraphGroup -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md index dcd124925b9..09d7c9044af 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Invoke-MgRenewGroup -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md index 0513ce5b321..dc83003b135 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ @@ -11,8 +11,8 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ @@ -31,8 +31,8 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ @@ -54,8 +54,8 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md index d96389b7728..9598e6f1a51 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md index 2e460c73281..311524dcd25 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Invoke-MgSubscribeGroupByMail -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md index 1896d7c37b4..47be20ac9bc 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/alexd@contoso.com" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md index 8057629ac64..a8461f4e755 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Topic = "Take your wellness days and rest" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md index af7bd80bed2..5a099de6958 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Topic = "Take your wellness days and rest" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md index 1c5a0fe630a..672b7773f93 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ GroupLifetimeInDays = 100 diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md index efc0141f3ff..7e3e2e7c5c6 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md index c5af7343d75..3a41dc6df61 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/alexd@contoso.com" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md index b1355915b01..f9ea04d55d9 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ Topic = "New Conversation Thread Topic" diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md index abc66c2632c..66fbffecce4 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md index 07f74040a53..0dec0a542f5 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupFavorite -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md index b450c415ef8..c03a94a7d5d 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md index 97fe79427ff..b4929c5045c 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupMemberByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md index 0913c4c21a6..e219bc7bf38 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupOwnerByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md index 8aef64283b4..10b2c8ba2e7 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` diff --git a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md index 0ad2d1f4817..5c0a624455c 100644 --- a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md +++ b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups Reset-MgGroupUnseenCount -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md index 617f34fb048..9ee2ffd183e 100644 --- a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md +++ b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ AddLicenses = @( @@ -22,8 +22,8 @@ $params = @{ } Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ AddLicenses = @( diff --git a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md index 85f23366fa5..a2739b7bbdb 100644 --- a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md +++ b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ DisplayName = "Myprefix_test_mysuffix" diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md index 569d2b8d2ad..fbf29e22aa8 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ GroupLifetimeInDays = 180 diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md index f10d30c1ceb..e2a392d3be7 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ OriginalStartTimeZone = "originalStartTimeZone-value" diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md index 82de3695b66..2c481c6b70a 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.type" = "Microsoft.OutlookServices.OpenTypeExtension" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md index 1ee7d030d42..333e2912118 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Confirm-MgDomain -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md index 1c8540f1a83..b0959c6b286 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactDelta ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md index db6e6eb6974..8dbb53ee975 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactDirectReport -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md index 09e50fd660d..8b77227bb4e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactManager -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md index 9eab4f752b1..5b3de72fbf6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactMemberOf -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md index f44af50f390..956f668130c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactTransitiveMemberOf -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md index 4b0afd387b3..4d035db3146 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContract -ContractId $contractId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContract ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md index 4dad12cbcf6..9ea061c28aa 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md @@ -1,35 +1,35 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Search "displayName:Android" -CountVariable CountVar -ConsistencyLevel eventual ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -DeviceId $deviceId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -DeviceId $deviceId -Property "id,extensionAttributes" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Filter "extensionAttributes/extensionAttribute1 eq 'BYOD-Device'" -CountVariable CountVar -ConsistencyLevel eventual ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Property "id,extensionAttributes" ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Filter "startswith(displayName, 'a')" -CountVariable CountVar -Top 1 -Sort "displayName" -ConsistencyLevel eventual ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md index c78a81e4583..e7e77938dc6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceMemberOf -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md index c53147386bf..7b7e3ab4e94 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceRegisteredOwner -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md index 5d35fa550c0..0c13aa48955 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceRegisteredUser -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md index f766521fc61..d302cdb445d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceTransitiveMemberOf -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md index 6f346c1326d..be02bdc0d69 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnit ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md index 5dba57583dd..5201718f2b3 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitMember -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md index fdbeab6351d..b8ff1f6e9ef 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md index 55c08516566..749987644b4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md index e80ffb5a66e..14a4c00deeb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId -Filter "domains/any(x: x/id eq 'contoso.com')" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md index ce43e0f9ae4..2d1902ba9b2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleDelta ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md index 056b76dcd36..e2bd8c52d4d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleScopedMember -DirectoryRoleId $directoryRoleId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md index afc76cfb24a..b5cd1a94ef5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleTemplate -DirectoryRoleTemplateId $directoryRoleTemplateId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleTemplate ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md index d1be1ec8ed5..af1dbea3ff6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainNameReference -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md index 252a57b52cd..ac65b819f86 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainServiceConfigurationRecord -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md index db17d92164a..b809ae36ac5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainVerificationDnsRecord -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md index 888da5ceaa6..80768881c5d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganization -OrganizationId $organizationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganization ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md index f7f4bb2c131..c90e2436d0b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md index ee2bc998015..7a5a12789af 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md index 78dedf8b4ed..7af9390fdb2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -OutFile $outFileId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md index af2ca623e9c..b5b83a0435c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ DisableUserAccounts = $true diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md index 0227faad172..94d74c185bd 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ AccountEnabled = $false diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md index add6d5db9fb..50872763d7f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md index c4118303d6e..1a65697521a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md index d6ecde862be..423ffacbaa5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ DisplayName = "Seattle District Technical Schools" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md index 105f638fef8..2e3cf6f591a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/groups/{id}" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md index fe8f7007fe1..f24ac3bfc86 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ RoleId = "roleId-value" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md index 862b282661f..1e6f041d73c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.type" = "microsoft.graph.samlOrWsFedExternalDomainFederation" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md index ee0a63f81ba..6e3611cda4f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ RoleTemplateId = "fe930be7-5e62-47db-91af-98c3a49a38b1" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md index db69cded91d..d34f48ea7c4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ Id = "contoso.com" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md index bb39518dfc2..ffced58046e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ BackgroundColor = "#00000F" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md index 15a20f3db1c..5011401a3f9 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDevice -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md index c49a0e6a01b..0bc3013e80a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md index f089771ce80..dea1d746b37 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md index aa0751b6ec7..535eedffa8d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md index 52537432b3f..0ce3cf694df 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md index 4f7f08f2468..0b0bf1458b1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md index 08095e43324..a384339ad43 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md index 2c31e462dad..aff72b9dbb2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryRoleMemberByRef -DirectoryRoleId $directoryRoleId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md index a969eae3d08..56ec6f1a644 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDomain -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md index 1c66b7edbf9..97ed23aa0a8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md index c01fa812ef4..b0176d85346 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Restore-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md index 9271187289f..19745d3f18e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md @@ -1,12 +1,12 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ } Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ AccountEnabled = $false diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md index 6074593d50a..d8937a28605 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ DisplayName = "Greater Seattle District Technical Schools" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md index bca90a06da5..e69d257fa86 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ IsDefault = $true diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md index a0be74a473a..e93fbd6ae00 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ MarketingNotificationEmails = @( diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md index 31cdb393207..1d45db05b5e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ SignInPageText = "Default" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md index 9140f41b6a9..ef585cf14f4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ BackgroundColor = "#00000F" @@ -7,8 +7,8 @@ $params = @{ } Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ SignInPageText = "Welcome to Contoso France." diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 56d8a0e835e..f534d1a7f57 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md index 67e840de2ba..f0d27fa8dc4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md index d275618e370..e54690b019f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement -AccessPackageId $accessPackageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md index 3688d2a7122..9043fbabebb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId -ApprovalStageId $approvalStageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md index 51f3dda42dc..b5e93300fac 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md index 14df80010c5..e13f6a5881d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentPolicy ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md index 775739e3bf8..41dd292fdc4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md index 41582dfbca3..0fe385ace98 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementCatalog ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md index b5cbe463678..58a574d2e96 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementConnectedOrganization ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md index 193763c4990..eac63df616e 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementSetting ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md index bb042016330..d0cdecfa790 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -Filter "contains(scope/microsoft.graph.accessReviewQueryScope/query, './members')" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -Top 100 -Skip 0 ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 8b4685157f4..f3103e0d248 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md index 0e20a0b583c..ab40617d068 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 51ef4f61e97..45b072d7450 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 3ad77ece2c7..c3a9db88ef9 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 621b63f4bd2..073a29df038 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 02bca7f9354..6a419298ca2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinition -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinition ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md index 7908cbdfe75..00066239028 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md index 694a8c138ab..11af42188bf 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId -Filter "userConsentRequests/any(u:u/status eq 'InProgress')" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -Filter "userConsentRequests/any (u:u/status eq 'InProgress')" ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md index 3cb8c6a371f..044e428f72b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId -Filter " (status eq 'Completed')" ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md index 013806de090..0aba9b0f099 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md index 3e657fc38f2..945bc31f991 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreementFile -AgreementId $agreementId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md index a2935072333..e02182fcff0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance # A UPN can also be used as -UserId. Get-MgUserAgreementAcceptance -UserId $userId diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md index a99e291cf92..76e697936ce 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md index 7906af2cc19..3baf7de009b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md index 1df13792843..84be30c6e6d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "sales reps" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md index 90fd07ac578..87c28f8db9a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "policy for external access requests" @@ -116,8 +116,8 @@ $params = @{ } New-MgEntitlementManagementAssignmentPolicy -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "New Policy" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md index 443aa1da264..be6d6d71dda 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "AdminAdd" @@ -11,8 +11,8 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "AdminAdd" @@ -24,8 +24,8 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "AdminRemove" @@ -35,8 +35,8 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "userAdd" @@ -46,8 +46,8 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "userAdd" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md index e5950625563..69f4f870f64 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "sales" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md index 7da3f63e48b..c331095fb22 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Connected organization name" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index dd0cd3f6b7f..2d35f0a5d1c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/{id}" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 689353c75d3..37f5bf3e9be 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/{id}" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md index 7d89db4d2b9..256f0be7cbb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Review employee access to LinkedIn" @@ -61,8 +61,8 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Group Multi-stage Access Review" @@ -133,8 +133,8 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Review inactive guests on teams" @@ -187,8 +187,8 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Test create" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md index d3027417f12..b701ea1f26a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Last quarter's group reviews April 2021" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md index 08c396414b2..2cab5af9752 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId -AccessReviewHistoryInstanceId $accessReviewHistoryInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md index 31e7269ce2c..5db703ed208 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Contoso ToU for guest users" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md index 4579eb858c0..5aeb765cbee 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md index a55444c1b78..bcebcafeae3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md index 61c4848393b..727d1abb239 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md index 3007cf3ef8b..5f65ece4123 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md index a268127d5cd..ce18e12ed38 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index dc4a1a141a8..af31477811f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 2b93eb32048..348b87c18aa 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md index f5ddfa4f75d..91f85d45ede 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md index 56a875b0865..38c865be699 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 0f8abdf5165..80322bb4639 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md index 9b9354d6513..6f20653b577 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md index 3b368aadddc..c95d19d097b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md index c8e7346958a..1f03df5cc33 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 1d04471e2ef..721bc6f83b2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md index 3815c72f460..73e8365ac83 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Access Package New Name" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md index 38173d3e788..e29a591b854 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Catalog One" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md index 5df04d2fef2..eaf5b0dcda6 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Connected organization new name" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md index 8c698048e8c..09d12c8aad0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ ExternalUserLifecycleAction = "None" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 9889e1fae72..56659c50fe2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Scope = @{ diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 9bcc25487a1..05a1db9da07 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ "@odata.type" = "#microsoft.graph.accessReviewStage" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index df5b515f646..4f301cadbf4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" @@ -7,8 +7,8 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" @@ -16,8 +16,8 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md index 813710f4e90..274f6b3742b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "All Contoso volunteers - Terms of use" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md index 69adbdf3fcf..d7075154d90 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ UserIds = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md index dc3a42ef787..b950aa60866 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgDataPolicyOperation -DataPolicyOperationId $dataPolicyOperationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md index fd3677dc63a..ef20055d161 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityApiConnector ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md index bfadf561561..be4c80f6b8a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow -ExpandProperty "identityProviders" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md index 997c96fbef5..1ce1780eed9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowIdentityProvider -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md index 2c87b133661..371f3ec7569 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md index ab3e177a076..6170c996b0b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguageDefaultPageContent -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -OutFile $outFileId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md index ed4aa1c2473..b464fb12895 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguageOverridePage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md index 9c1f10ef96a..b779f2b9b38 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -ExpandProperty "userAttribute" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -ExpandProperty "userAttribute" ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 4dbaec97d32..c433b92fb6a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md index 7c88249b191..8c7a76989f6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md @@ -1,40 +1,40 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderId $identityProviderId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -OutFile $outFileId ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -###Example 8 -``` +### Example 8 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md index e566b69e27d..24fae7780ef 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityUserFlowAttribute ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md index d87f95914c2..6766990ddec 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId -Property "key" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -Filter "deviceId eq '1ab40ab2-32a8-4b00-b6b5-ba724e407de9'" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md index 1e204b6e7d7..1bd7c7319b9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md @@ -1,30 +1,30 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId -ExpandProperty "results" ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md index 7033006a142..17ee267ab5b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrant ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md index 54d401bf618..6fb180910df 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrantDelta ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md index 419f52e07e8..a5de0b630b5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId -CertificateBasedAuthConfigurationId $certificateBasedAuthConfigurationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md index 192636c4e97..9222ad25a83 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyActivityBasedTimeoutPolicy ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md index 79b6b5d09f9..bc65160e45b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAdminConsentRequestPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md index 841ea4f8ae0..e21422bf2f8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationFlowPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md index 6289d72822a..4a7924d6b37 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 367887abb0d..bcdd1d78511 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md index d81efff7b70..1dd6d634705 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyClaimMappingPolicy ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md index 7d214000834..6bb7a34c22b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md index eead1f543c6..d662c5a59f0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyDefault ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md index 7a6b1e8fba8..926ee1b747b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyPartner ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md index d4d9193c378..a60b143329e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -ExpandProperty "appliesTo" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md index a2c82698671..cc691ddece6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyHomeRealmDiscoveryPolicy ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 5905cbb9f48..f04672b4f69 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md index 960071b1149..cae50e7a734 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md index 5e1b7b5276a..af31615c408 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md index 52a4eddcc10..ec1740c8faa 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md index 71f96e08e44..ceb3487b80e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -ExpandProperty "effectiveRules,rules" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'Directory'" -ExpandProperty "rules" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole'" ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md index da12343aafd..976d3b80788 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId -ExpandProperty "policy(`$expand=rules)" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole' and roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "policy(`$expand=rules)" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'Directory'" ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md index 7a3deb8b757..fe42e59397a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md index 33c3d84bd6d..4ecba283513 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenIssuancePolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md index f4b034c3a8b..a4b9411aff4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenLifetimePolicy ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md index 55783ce891a..fe9425e208d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskDetection -RiskDetectionId $riskDetectionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskDetection ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md index c37372fd418..e2f03b57111 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUser -RiskyUserId $riskyUserId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUser ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md index a42477b9500..ece968596e9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md index c88128994f2..9414284cfb7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationEmailMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md index 86f65aa2a23..8b4e7b12459 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 2c6716a38fd..6198396516c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md index 2996a7ca8b8..0121dc717a6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationOperation -UserId $userId -LongRunningOperationId $longRunningOperationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md index e898d45d411..0c84dbcf482 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPasswordMethod -UserId $userId -PasswordAuthenticationMethodId $passwordAuthenticationMethodId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPasswordMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md index ae6758fb85b..4c71e5276ab 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPhoneMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md index bef21010fd6..342bcc950d3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md index fc1db8f3614..996c9b813df 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md index 48068da237f..3a21ff51437 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md index 681d9682ed5..dd238e022d3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType -OutFile $outFileId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md index 923b12d0559..093e06078cc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ UserIds = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md index aa8697369ab..f9cf48005ea 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md index e72f68bf822..c4a5b11235b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Test API" @@ -12,8 +12,8 @@ $params = @{ } New-MgIdentityApiConnector -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Test API" @@ -26,8 +26,8 @@ $params = @{ } New-MgIdentityApiConnector -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Test API" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md index df03dc036ba..0a9a5cfe82c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "UserFlowWithAPIConnector" @@ -16,8 +16,8 @@ $params = @{ } New-MgIdentityB2XUserFlow -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "Partner" @@ -33,8 +33,8 @@ $params = @{ } New-MgIdentityB2XUserFlow -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "Partner" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md index 401773c1a95..54b0bd11e87 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ IsOptional = $false diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md index 31d847fec29..dba51b443ab 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "microsoft.graph.appleManagedIdentityProvider" @@ -11,8 +11,8 @@ $params = @{ } New-MgIdentityProvider -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "microsoft.graph.socialIdentityProvider" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md index 3138064ddba..e49ac549cc1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Hobby" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md index 1ab159bd887..39a09bff64c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.emailFileAssessmentRequest" @@ -10,8 +10,8 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.fileAssessmentRequest" @@ -22,8 +22,8 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.mailAssessmentRequest" @@ -34,8 +34,8 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.urlAssessmentRequest" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md index 1f6418365a4..e20f6adcec9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ ClientId = "ef969797-201d-4f6b-960c-e9ed5f31dab5" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md index 32c4166085d..2ab9e0321c8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md index 0efe4cfe03b..7352db7acfe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md index f93685d5b0d..47ce8af5ba0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ TenantId = "3d0f5dec-5d3d-455c-8016-e2af1ae4d31a" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md index eee6fc109d1..e03bc5665ad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "PassthroughAuthentication rollout policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md index e7f1791495a..a9bfb6fbce7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/2441b489-4f12-4882-b039-8f6006bd66da" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md index 29e18975503..fe3e8ecf9cd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md index 8d737b6f889..ce1b434f9bb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "my-custom-consent-policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md index 54b70bd67fe..19760e67d2d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PermissionType = "delegated" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md index 0b09ed0492b..0fcb85af701 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PermissionType = "delegated" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md index 3eca66780e6..138d793e713 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md index d71491ed12b..5415f5ff656 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md index 225014a6398..1b58d931d5b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ EmailAddress = "kim@contoso.com" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md index 65b6e11d51c..794520cef38 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PhoneNumber = "+1 2065555555" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md index 1414cf82a48..aa54c1fd5d3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ StartDateTime = [System.DateTime]::Parse("2022-06-05T00:00:00.000Z") diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md index f25cf328070..f441e383f2b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md index dbef5d6cd12..a128b780187 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md index 2b1e497c6ad..a16ed6fe010 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md index 08d218d152c..9c5318d9e40 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md index 51f38ee9ef5..58d93e9ae4a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md index 33026a3c0da..07cb4f13f51 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md index 4733541ea1e..0a07a4e1283 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 7f829cf38fa..842f81363e8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md index 65faff6e3e3..2dc41b07875 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md index 48afedc4da9..9a805a74594 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md index 71dd3afdfd1..3f159e203cd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 9e8ad3300f9..3d3cda8f27b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md index cf3c5f05dc7..3435b7c5b1b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md index 42b7dbd7cd5..2b1c9ab0400 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md index c4101606bc3..912d0e8e4e9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md index 2277107f16b..62c808fa010 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md index 339c14580e8..e1526b82d47 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md index 6b8a01da40d..4190f828bc2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md index b957f5df910..32d2b7c92f8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md index 54e7a822a9e..c8501c5ad62 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index f8d6d015904..904d20b2b37 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId -MicrosoftAuthenticatorAuthenticationMethodId $microsoftAuthenticatorAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md index 045dd1edb0b..573e07cd4f5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Remove-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md index e2049be4223..310be3c721f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md index acd0d42b5ae..a7ff328f33d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md index 264c9e8ad21..049aca7545f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md index df50679d5c5..eee5a3f89ad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md index bd7410077b0..c279c85ed9e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ LocalizedStrings = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 35a480c4a29..2177a9167d6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ NewAssignmentOrder = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md index 5703b88fc37..976e367a37e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ AuthenticationConfiguration = @{ @@ -10,8 +10,8 @@ $params = @{ } Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "New Test API" @@ -24,8 +24,8 @@ $params = @{ } Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ AuthenticationConfiguration = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md index 0c156cc3a9d..316d4bef11c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ UserInputType = "textBox" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md index 77614c2355c..ba487d9c509 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.socialIdentityProvider" @@ -7,16 +7,16 @@ $params = @{ } Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ ClientSecret = "1111111111111" } Update-MgIdentityProvider -IdentityProviderId $identityProviderId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.socialIdentityProvider" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md index 6c16efb4f23..2fb92849746 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Description = "Your new hobby" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md index 4803ec2cd10..2351251d972 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Scope = "User.ReadBasic.All Group.ReadWrite.All" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md index ac1def269b9..559c2f5f54a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md index 926b0e6af33..e98d6cca8c0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ SelfServiceSignUp = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md index 08d527fbae2..394dc22893c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.context" = "https://graph.microsoft.com/v1.0/$metadata#authenticationMethodsPolicy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 0527fa974ee..5ea41be65bf 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.emailAuthenticationMethodConfiguration" @@ -7,8 +7,8 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.fido2AuthenticationMethodConfiguration" @@ -17,8 +17,8 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" @@ -26,8 +26,8 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md index 4e352117d63..b0765a611b4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "UpdateClaimsPolicy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md index bea6cbbc529..b8ac98af3ae 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "CrossTenantAccessPolicy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md index 866dd1e706b..c6a0c571c8e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ B2bCollaborationOutbound = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md index 09603654d0c..377bee39382 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ InboundTrust = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md index fe5c6fb6d27..3a4c6ea1410 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "PasswordHashSync Rollout Policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md index 9935d336517..ba41a93d1ce 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index dbc6649302b..37f4225a70d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ IsEnabled = $false diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md index ed589577b82..632343a64e5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Custom permission grant policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md index ea6e0396a53..ad2735afa02 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleManagementPolicyExpirationRule" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md index 0fcce2323aa..f1480824f40 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md index 4e69054a4ca..653208d70a9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md index 787adcf162c..fbe17de5237 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ EmailAddress = "kim@contoso.com" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md index 05c2865bd82..2af86b7fe12 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PhoneNumber = "+1 2065555554" diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md index dba7c7e8a2c..5b2e11edf56 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserInferenceClassificationOverride -UserId $userId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md index 9b8a0bad089..d4284255d15 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md @@ -1,17 +1,17 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md index e3c099fb352..3f82fe798f4 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md index 0a77b7c8cc3..9f8ac847c95 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md index 092387c76a4..7584487d170 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md index f87370a93d1..d0ec234b4ca 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md @@ -1,29 +1,29 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "internetMessageHeaders" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "subject,body,bodyPreview,uniqueBody" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -Property "sender,subject" diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md index d20fd122b5a..3a335b2e2f2 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md @@ -1,41 +1,41 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md index 59953d9adfb..cad8751b65a 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md index 0ed4d5c20b6..81373fc0b8f 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ ClassifyAs = "focused" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md index e7a9c5773ba..86428b05183 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "Clutter" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md index 858ed9e7bef..1e6bd43d9ba 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "displayName-value" @@ -8,8 +8,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "microsoft.graph.mailSearchFolder" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md index e5bb1205a81..cf469e90e30 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ ReceivedDateTime = [System.DateTime]::Parse("datetime-value") diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md index a733053b018..8d56de19ddd 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "From partner" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md index b53ba1c8c35..8f6c2d8c122 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ Subject = "Did you see last night's game?" @@ -19,8 +19,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessage -UserId $userId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ Subject = "9/8/2018: concert" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md index 99dd5df562a..8f34b7dc6a2 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "microsoft.graph.fileAttachment" @@ -12,8 +12,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "#microsoft.graph.fileAttachment" diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md index ed294bcdd39..7d66082cbe3 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md index ec6e8d57233..5a735e9b969 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md index a9cd2ed738d..7708ad05483 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md index 604829873e3..6fdb890c241 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessage -UserId $userId -MessageId $messageId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md index f1b19817b69..42ae5bf6c33 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md index 4f2ca514ca8..dd1b0310b36 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ ClassifyAs = "focused" diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md index d4bdbbad49d..bdf1316e581 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "displayName-value" @@ -7,8 +7,8 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "microsoft.graph.mailSearchFolder" diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md index cb8e3310ece..605f003e950 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "Important from partner" diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md index e4611e6302c..b11ce2d33fc 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ IsRead = $true @@ -7,8 +7,8 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Mail $params = @{ Subject = "subject-value" diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md index 832398fd235..05c1ab754b7 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md @@ -1,17 +1,17 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md index 24eedc7ea7d..31d46778861 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md index 8512235d96c..44daad71305 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md index c1412c058ea..38cdba5f8b3 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteOperation -UserId $userId -OnenoteOperationId $onenoteOperationId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md index 947f2ea7b6e..c6cdfe2ceb6 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSection -UserId $userId -OnenoteSectionId $onenoteSectionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSection -UserId $userId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md index 2660c80da98..05d799a901f 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSectionGroup -UserId $userId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md index 06fadf6f875..8186bb09d2a 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md index 31b74b8a1ee..eea843256b6 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "My Private notebook" diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md index b134aa6757a..d2477327e1e 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "Section name" diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md index d414b08ba7b..a895e33f346 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "Section group name" diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md index 61b698a4c10..ca20d69074c 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "Section name" diff --git a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md index 122974f0ba3..9e2eaeb93f1 100644 --- a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md +++ b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Remove-MgUserOnenotePage -UserId $userId -OnenotePageId $onenotePageId diff --git a/src/People/People/examples/v1.0/Get-MgUserPerson.md b/src/People/People/examples/v1.0/Get-MgUserPerson.md index d357857e615..9174033463b 100644 --- a/src/People/People/examples/v1.0/Get-MgUserPerson.md +++ b/src/People/People/examples/v1.0/Get-MgUserPerson.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserPerson -UserId $userId diff --git a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md index bd864a26326..f083d68161b 100644 --- a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md +++ b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserUsedInsight -UserId $userId -Sort "LastUsed/LastAccessedDateTime desc" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserUsedInsight -UserId $userId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md index 9c642f1504f..ee5f7efbb0b 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContact -UserId $userId -ContactId $contactId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContact -UserId $userId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md index 82123776fab..f2d0284baf1 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolder -UserId $userId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md index 4313c6e97eb..dc99ff6715a 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md index f0e476adf46..97d2545d40d 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md index 786a4f81cc1..8410ad0f243 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ GivenName = "Pavel" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md index ad1957f5874..c8ffb03b89d 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ ParentFolderId = "AQMkADIxYjJiYgEzLTFmNjYALTRjYTMtODA1NC0wZDkxZGNmOTcxNTQALgAAA8RJzXYaLKZPlmn0ge0edZkBADa3qi2IMXRNg6RwQSHe_F8AAAIBDgAAAA==" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md index a98f12f461d..40b12df6671 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ DisplayName = "Family" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md index eb6f8ebca6a..6708559bdc9 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ ParentFolderId = "parentFolderId-value" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md index 4d272501798..e076f8a8289 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Remove-MgUserContact -UserId $userId -ContactId $contactId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md index deb857260fb..148d3205dc8 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Remove-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md index 875b3be2bf2..3ab70f92d82 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ HomeAddress = @{ diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md index 2273cb95a91..3eef6f035de 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ ParentFolderId = "parentFolderId-value" diff --git a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md index 0f4cff71c16..a98ed179ad1 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgGroupPlannerPlan -GroupId $groupId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md index f0b5e60a9bc..0224144bd8b 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlanner ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md index 37154f4f0fd..dc477fd5cdf 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucket ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucket -PlannerBucketId $plannerBucketId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md index 8e500ea7667..1c663f51123 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucketTask -PlannerBucketId $plannerBucketId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md index fea21d72ec0..9991c60b5d7 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlan -PlannerPlanId $plannerPlanId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlan ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md index 999294be657..49bec75952a 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanBucket -PlannerPlanId $plannerPlanId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md index 543a75e3e48..210e561949e 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md index cecde547587..18f430d8011 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanTask -PlannerPlanId $plannerPlanId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md index 58dbed30ce4..8c096d04310 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTask -PlannerTaskId $plannerTaskId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTask ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md index 9e17fd2c51a..68df60e31af 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md index 8ebb6bcebfe..e0d88d31403 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md index 877689d4227..eeddf87decd 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md index 00661a0daa1..ec360648cee 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md index ec0504b5222..fc97294181e 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner # A UPN can also be used as -UserId. Get-MgUserPlannerPlan -UserId $userId diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md index 8dec8f81ae5..6a3808d068c 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner # A UPN can also be used as -UserId. Get-MgUserPlannerTask -UserId $userId diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md index 9519551e7c7..05dda00a05c 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ Name = "Advertising" diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md index 48c00e689ff..52cbacaed2a 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ Owner = "ebf3b108-5234-4e22-b93d-656d7dae5874" diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md index 2e30c4285fe..69c062bade2 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ PlanId = "xqQg5FS2LkCp935s-FIFm2QAFkHM" diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md index 2968ae85863..97060b273a3 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerBucket -PlannerBucketId $plannerBucketId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md index 3e6d17db0d5..8948cabd2c0 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerPlan -PlannerPlanId $plannerPlanId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md index d0e8b34b633..1ec81169e97 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerTask -PlannerTaskId $plannerTaskId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md index bbac40a4378..e0ff0844663 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ Name = "Development" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md index cd691e60a80..597926d6514 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ Title = "title-value" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md index 10d6caab661..68f7fb0b5b0 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ SharedWith = @{ diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md index 67ce75aac3c..52af9c33d08 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ Assignments = @{ diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md index bd8abcdc7ba..4c0b8c88fd7 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ OrderHintsByAssignee = @{ diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md index 13eb27399de..c948a794933 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ OrderHint = "A6673H Ejkl!" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md index 7775a8926d9..c60c06865fc 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ PreviewType = "noPreview" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md index 9867433abe3..c7a1b6d051a 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Planner $params = @{ OrderHint = "A6673H Ejkl!" diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md index 50d2c483b08..a53cd9d1933 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogDirectoryAudit -DirectoryAuditId $directoryAuditId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogDirectoryAudit ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md index 74d3d08a18d..1b5ab113835 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogProvisioning ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogProvisioning ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md index ec8816353dd..6e6b9956758 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn -SignInId $signInId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn -Filter "startsWith(appDisplayName,'Graph')" -Top 10 ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md index 0a9198ce115..c714d49e802 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByPrinter -PrintUsageByPrinterId $printUsageByPrinterId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByPrinter ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md index e23309320d6..2c915071165 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByUser -PrintUsageByUserId $printUsageByUserId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByUser ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md index f8eb4bad521..c5af1250780 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgReportMonthlyPrintUsageByPrinter ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md index 0006ea6859f..cd453d38d30 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Reports Get-MgReportMonthlyPrintUsageByUser ``` diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md index 25d93e5f3ba..1afdcdca6e2 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions Get-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions Get-MgSchemaExtension -Filter "id eq 'graphlearn_test'" ``` diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md index 3ca0130c65a..621712f6793 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Id = "graphlearn_courses" @@ -24,8 +24,8 @@ $params = @{ } New-MgSchemaExtension -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Id = "courses" @@ -50,8 +50,8 @@ $params = @{ } New-MgSchemaExtension -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Id = "courses" diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md index 71471d78f3c..06490fe5694 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions Remove-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md index 8b12ffcb251..50a5c2a5368 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" @@ -24,8 +24,8 @@ $params = @{ } Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md index a7684d25fce..a51608ad906 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnection ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md index 2b73c3c0666..33ea6a98318 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md index 167370591be..c195949ded4 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md index 0606de1d924..69162ecb857 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionOperation -ExternalConnectionId $externalConnectionId -ConnectionOperationId $connectionOperationId ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md index 9f9c28e076a..909a7715aec 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionSchema -ExternalConnectionId $externalConnectionId ``` diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md index 5f605e321cb..6419a6cb0de 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "contosohr" diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md index 214167830f4..75653ab7f39 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "31bea3d537902000" diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md index f9622def219..a55dda2589c 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "e5477431-1038-484e-bf69-1dfedb97a110" @@ -7,8 +7,8 @@ $params = @{ } New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "e811976d-83df-4cbd-8b9b-5215b18aa874" @@ -16,8 +16,8 @@ $params = @{ } New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "1431b9c38ee647f6a" diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md index f8e2ff5acd4..61fa06bfc6c 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md index 603b3882cd3..76118170771 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md index 5bd77ca08bd..e041359f8ed 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -IdentityId $identityId ``` diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md index 1518d7fcb42..f2502bd9870 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md index 77f9ceba958..4a3629d755e 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Name = "Contoso HR Service Tickets" diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md index 407231ba97e..71badded947 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ DisplayName = "Contoso Marketing" diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md index 82c04fde1c3..bfa6c384583 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Search $params = @{ Acl = @( diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 89f7e7ebfd3..2b9cf3c16b4 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index b8d304930a4..e18c297e3b5 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index 7c66d06c373..c2c5a48a8d2 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ TagsToAdd = @( diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index 313f635daac..3b0f8418e84 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ Search = @{ diff --git a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md index 66b123738c9..70f0a257c93 100644 --- a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Close-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md index a395fdcbd0e..099f86e789b 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityAlert -AlertId $alertId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityAlert ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md index d045fb8a3b8..f5b0a884e22 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCase ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md index 3dcf3a425de..deb8bb0dc23 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md index 107d1f1ee34..054d934fca5 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 2ee646bee1e..f16924a66bd 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 54530e8c91c..a55ad7e4a35 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 910e10232d9..047ca92e68a 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 3a0ac821f7d..b8b37734650 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" -OutFile $outFileId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -ExpandProperty "dataSource" ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md index 7e6046827b6..0b6f069bccc 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId -CaseOperationId $caseOperationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md index 3d72911400a..d8fc64a2e74 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index bffa2654397..becf267f19f 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md index c07f209fa58..c330bc76b68 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 3ace457162d..cf16513303c 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -OutFile $outFileId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md index 4ecef13e00f..799e222ba62 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md index 65159d17af7..469d82783c8 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md index 058e9bd76fc..406f721fa84 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md index dbd386724ec..8c9b9df5a2e 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md index 64fb3174a99..b614e74f7d4 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md index 2b344b21682..15f8c758ab3 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScore -SecureScoreId $secureScoreId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScore -Top 1 ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md index a723733cf14..33965f940dc 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScoreControlProfile ``` diff --git a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md index 340865ab8fe..e6d27df293b 100644 --- a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Initialize-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md index d3114a823fe..07e67503d62 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index 2cc263bdf39..02e16aa28c4 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md index 9bdeb1983c9..64ef4525245 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Invoke-MgReopenSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md index f3366f2c6ca..3adb979e55f 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "CONTOSO LITIGATION-005" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md index e37d0c78922..7392ef693e7 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ Email = "AdeleV@contoso.com" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 042ae545c72..d7e83425c65 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ Site = @{ diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 7214007081a..65152c41329 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ Group = @{ @@ -9,8 +9,8 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" @@ -18,8 +18,8 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 01bc610d8fb..57caf521d29 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DataSource = @{ diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md index 60dd5d15264..7a113a212cb 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My review set 2" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index e84c8d96cd9..4d651519dee 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My Query 1" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md index d469d41c407..c9479cb7c43 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My search 2" diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md index e9128aa2120..7c625fdf424 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Publish-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index cae371326cd..580fb2205b6 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md index eea2f54f644..8edb867a084 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md index d2bd47984cc..492a1bcdc2f 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index d0cfa1eb62e..46eddab98c1 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 8b4a56c073f..472ede3153e 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md index 1f136b1d8ff..4829d3dcffd 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md index ba2d8cc0d37..fe8fa3e369b 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` diff --git a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md index 7dc6023bd5d..af1feb0fb9b 100644 --- a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md index 29c93824fab..37f6b1f6368 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "String" @@ -19,8 +19,8 @@ $params = @{ } Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "String" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md index d910c3709a8..d1580828f14 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My Case 1 - Renamed" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md index 6f921592d1a..77dccd9866f 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Update-MgSecurityCaseEdiscoveryCaseCustodianIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index 410299c7c21..27bf9d0ed55 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 3b27d34cd72..fd6a3fd5e5f 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My Query 1 (update)" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md index 6c942baac3d..404a5a57095 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "Teams search" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md index 05759704908..8f657d1faed 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ "@odata.type" = "#microsoft.graph.security.ediscoveryCaseSettings" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md index cfdd82ceacc..1c2b5715d53 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "" @@ -14,8 +14,8 @@ $params = @{ } Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "" diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md index 7760ddb3749..dbca81af84b 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentType = "https://graph.microsoft.com/v1.0/sites/{site-id}/contentTypes/0x0101" diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md index 595909e1d44..a6d507c2e65 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md @@ -1,21 +1,21 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentTypeId = "0x0101" } Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentTypeId = "0x0101" } Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentTypeId = "0x0101" diff --git a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md index e25b00e2c5d..522493abb38 100644 --- a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md +++ b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ SourceFile = @{ diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSite.md index 115edb774ef..1fe9bc23960 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSite.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSite -SiteId $siteId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSite -Search "{query}" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSite -Search "{query}" -OutFile $outFileId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md index d96ff3ab847..0a566e41e4f 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteColumn -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md index ee642f6195f..b0548c7736c 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId -OutFile $outFileId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md index f6ae22c2c06..ddf248f6ee3 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md index 38b8973c43a..f43ecf68739 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteDefaultDrive -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md index 0d3b3f5136e..3d448ad9706 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteDrive -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md index 2295fe8b4d8..480cf7ffaa1 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md @@ -1,30 +1,30 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId -Property "id,name,lastModifiedDateTime" -ExpandProperty "columns(select=name,description),items)" ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md index 419462af2da..b01586ed665 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListColumn -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md index cb235b05033..8dd52485a92 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListContentType -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md index edfbf6a5450..df08f56cada 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListContentTypeCompatibleHubContentType -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md index 152b1184157..498cb5fcd07 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId -ExpandProperty "fields" ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md index 7838bc51584..8745b2e6916 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md index 0bb722a345f..0a88110d67b 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId -ExpandProperty "fields" ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md index 054adde64b3..07f016fae21 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSitePermission -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md index e3d2239eccb..584bb8a6b85 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStore -SiteId $siteId -OutFile $outFileId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md index 0f085e00b22..631f71241c9 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -OutFile $outFileId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId -Property "*,parentSiteId" ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md index b346c971ef1..a48437d4b96 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroupSet -SiteId $siteId -GroupId $groupId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md index 4e72436674b..0872e0a0eeb 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroupSetTerm -SiteId $siteId -GroupId $groupId -SetId $setId -TermId $termId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md index 48f95e21a59..4119a85e788 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md index 87224133f78..35e12b1de64 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md index 80acd3bc887..e45d6270493 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSetRelation -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md index 6a3a808ee9c..5d79d0b61bc 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Get-MgSubSite -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md index ec464f93a01..a46e0825c32 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites # A UPN can also be used as -UserId. Get-MgUserFollowedSite -UserId $userId diff --git a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md index 31c081a2221..2cb29fae941 100644 --- a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md +++ b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ HubSiteUrls = @( diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md index 6a6d06c3a5b..173d58cbd6f 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Description = "test" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md index 93c80afa0a5..817f191ee1c 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Name = "docSet" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md index 57b3ee39c90..853b9f57cb6 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ "SourceColumn@odata.bind" = "https://graph.microsoft.com/v1.0/sites/root/columns/99ddcf45-e2f7-4f17-82b0-6fba34445103" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md index 8200c2a654e..2ab69a16f53 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ DisplayName = "Books" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md index 8a475fa884d..0321438d88a 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Description = "test" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md index 5a2caafa6ea..3dfb6805baf 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Fields = @{ diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md index b8e06175e28..e39ff1b6152 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Comment = "v1" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md index 02e2b76cf6d..6a0ba332377 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Roles = @( diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md index 869453fee7f..10a9fed0bcf 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ DisplayName = "myGroup" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md index c90bd1c9df1..c72edaddc4a 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Labels = @( diff --git a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md index cb2fcd908f8..593afdd3460 100644 --- a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Publish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md index 81179f03694..9c13eac286c 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md index c9063990266..6d0b71a4130 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md index 0053edfd143..557b69c122f 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md index d2de8fed9a5..24c1b5ee959 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md index 9705b223617..861aa2ebb78 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md index b7fbb5ff453..753ab023046 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md index b28805fb328..1c794218884 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md index ec746c7826c..41d429a7e4a 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreSetTerm -SiteId $siteId -SetId $setId -TermId $termId ``` diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md index c121870c7c2..10ecb11b1d6 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Restore-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md index 03e41ae7af1..776aebbbbb2 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Restore-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md index 49c0c4b7dc1..acb06e5249f 100644 --- a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md +++ b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Test-MgSiteContentTypePublished -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md index a8b625d49f7..471602b1cb5 100644 --- a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites Unpublish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md index b32a2dd5a26..91f9654eb1f 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Name = "updatedCt" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md index 3328c8ebea1..12cf2c4261b 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Color = "Fuchsia" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md index f1705473133..22f8cddc7c7 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Roles = @( diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md index 32d96d89637..2184fff05b9 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ DefaultLanguageTag = "en-US" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md index 4aa196a3dec..9d4827ea692 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Description = "mySet" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md index 738f4d16d93..07de568b808 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Sites $params = @{ Labels = @( diff --git a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md index c4007741b61..cd51055899b 100644 --- a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Values = @( @@ -20,8 +20,8 @@ $params = @{ } Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Values = @( @@ -42,8 +42,8 @@ $params = @{ } Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Values = @( diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md index ffdb8f46faf..bcefc811e24 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Complete-MgTeamChannelMigration -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md index 8338e797fed..e50d9cbc1f0 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Complete-MgTeamMigration -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md index e39dfd8af99..2040b5c8856 100644 --- a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Library Assist" diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md index 54d5e98b314..2daae47c931 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md @@ -1,25 +1,25 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5'" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -ExpandProperty "appDefinitions(`$expand=bot)" -Filter "appDefinitions/any(a:a/bot ne null)" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "id eq '876df28f-2e78-423b-94a5-44181bd0e225'" -ExpandProperty "appDefinitions" ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "distributionMethod eq 'organization'" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md index b6d4929d0f7..b2a34536926 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamAppDefinitionBot -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChat.md b/src/Teams/Teams/examples/v1.0/Get-MgChat.md index 954db3db5ae..cdb8049d07d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChat.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId -ExpandProperty "members" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChat -Sort "lastMessagePreview/createdDateTime desc" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md index e154133c08c..56fe7e6b87c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsAppDefinition(`$expand=bot)" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md index bf35e5ca7de..c65a5af5d8c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatMember -ChatId $chatId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md index f038ea6eb04..8f034a85a5b 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessage -ChatId $chatId -Top 2 ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessage -ChatId $chatId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md index 3952f5e08eb..505ad86b3d6 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId -ChatMessageHostedContentId $chatMessageHostedContentId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md index e7d463d9a45..9b30fced93e 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -ExpandProperty "teamsApp" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.web'" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md index 34b07f8ace0..7afe9e4141d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeam -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md index f570952329f..0477f565852 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md @@ -1,25 +1,25 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'shared'" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'private'" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md index 30057564770..a56ea7f6076 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelFileFolder -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md index 4757920df66..890c0325656 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md index 74b7d0d1081..1ce3e304d5b 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -Filter "lastModifiedDateTime gt 2019-11-01T00:00:00Z and lastModifiedDateTime lt 2021-11-01T00:00:00Z" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -Top 3 ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md index 4c9d6a122d0..9a1d51f12ea 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md index 5ce4a07e5ce..c8f912f1e64 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md index 1a6d8fad2b1..a4a234fe1b9 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageReplyHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -ChatMessageId1 $chatMessageId1 ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md index 1eeac98d5fa..a79a0709590 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md index af69f8001d4..749b9153755 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeamAllowedMember -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md index 4d6377cfaac..7b4c38e2430 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.planner'" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md index 3122beb405b..cfc6c74b288 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamIncomingChannel -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md index 14ef7193f18..483194f6b7c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md @@ -1,25 +1,25 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId -ExpandProperty "teamsAppDefinition" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsAppDefinition" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md index 6e4468d5a58..ae0b6af428a 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/userId eq '73761f06-2ac9-469c-9f10-279a8cc267f9')" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/displayName eq 'Harry Johnson' or microsoft.graph.aadUserConversationMember/email eq 'admin@M365x987948.OnMicrosoft.com')" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md index 73bdd502f2c..00abb3de8a2 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamPrimaryChannel -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md index a64d69342cd..ec060b74d9c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamSchedule -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md index e8c5bbdec8d..c37958adfa4 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId -OfferShiftRequestId $offerShiftRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md index b1da6b80f67..9d978906033 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShift -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md index d31d0aea801..239575001c8 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -OpenShiftChangeRequestId $openShiftChangeRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md index 69d83b7a313..f68f790047d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSchedulingGroup -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md index 61e595d7a8f..310d1bb1ebb 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleShift -TeamId $teamId -Filter "sharedShift/startDateTime ge 2019-03-11T00:00:00.000Z and sharedShift/endDateTime le 2019-03-18T00:00:00.000Z and draftShift/startDateTime ge 2019-03-11T00:00:00.000Z and draftShift/endDateTime le 2019-03-18T00:00:00.000Z" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md index 2cd81fe4fd7..391ccae112c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -SwapShiftsChangeRequestId $swapShiftsChangeRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md index 0aa698bdf00..a70bf8e2e54 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOff -TeamId $teamId -Filter "sharedTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and sharedTimeOff/endDateTime le 2019-03-18T00:00:00.000Z and draftTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and draftTimeOff/endDateTime le 2019-03-18T00:00:00.000Z" ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md index fbe91f7da7f..e345150417e 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffReason -TeamId $teamId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md index 8665719ed14..ad8f6daaa4f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md index 2348d944408..d1dccc6f0f1 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md @@ -1,10 +1,10 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgTeamworkWorkforceIntegration ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md index 9be43251e53..f3d1672147f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md @@ -1,15 +1,15 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId -ChatId $chatId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId -ExpandProperty "members" ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md index b4cce8a5cc6..6a2547a35ec 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserChatMember -UserId $userId -ChatId $chatId diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md index d109a9dd4f2..8be81793df0 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserJoinedTeam -UserId $userId diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md index 0990e662d5e..e68cfda9923 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserTeamworkAssociatedTeam -UserId $userId diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md index 9cc10598e17..118a9a3db3c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md @@ -1,20 +1,20 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsAppDefinition" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md index e510a6a7469..4f44f7c31ee 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledAppChat -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md index 58a8dc06fb8..621f47573e4 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Invoke-MgArchiveTeam -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md index 781e65787bc..7f53d7d007a 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ NotifyTeam = $true diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md index f331aa8d746..a03a15a3379 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Invoke-MgUnarchiveTeam -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md index 820f0fbda9d..1ca7b331983 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams New-MgAppCatalogTeamApp -Requiresreview true ``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgChat.md b/src/Teams/Teams/examples/v1.0/New-MgChat.md index a338cab3631..6329b849aec 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "group" @@ -30,8 +30,8 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "group" @@ -62,8 +62,8 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "group" @@ -94,8 +94,8 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "oneOnOne" @@ -119,8 +119,8 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "oneOnOne" @@ -143,8 +143,8 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "oneOnOne" diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md index 8ce07a132c5..8dfc3f0cc87 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md index ed7ea1d9978..34406359f10 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -11,8 +11,8 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -24,8 +24,8 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -36,8 +36,8 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md index d7b659389c9..5b58a4fed82 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -20,8 +20,8 @@ $params = @{ } New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md index 830c7b69a58..070c9a7959b 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "My Contoso Tab" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeam.md b/src/Teams/Teams/examples/v1.0/New-MgTeam.md index b2072d7764c..64bf12ac32f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -32,8 +32,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('educationClass')" @@ -42,8 +42,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('educationClass')" @@ -77,8 +77,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -86,8 +86,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -167,8 +167,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -186,8 +186,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -196,8 +196,8 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -###Example 8 -``` +### Example 8 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md index 09015c9b8df..729ebc5e673 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@microsoft.graph.channelCreationMode" = "migration" @@ -9,8 +9,8 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Architecture Discussion" @@ -19,8 +19,8 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#Microsoft.Graph.channel" @@ -39,8 +39,8 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#Microsoft.Graph.channel" @@ -59,8 +59,8 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "My First Shared Channel" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md index d3fe9a47cc8..51a35b0412a 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams New-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md index bcf6b52d9dc..df921637fe2 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -10,13 +10,13 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -27,8 +27,8 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -38,8 +38,8 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -49,8 +49,8 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -60,8 +60,8 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md index 48a7d0f8822..6030a9cf22c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -8,8 +8,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -18,8 +18,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -42,8 +42,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Subject = $null @@ -77,8 +77,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -96,8 +96,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 6 -``` +### Example 6 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Subject = $null @@ -209,8 +209,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 7 -``` +### Example 7 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -233,8 +233,8 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -###Example 8 -``` +### Example 8 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md index fcd23465a73..c2942ba36b4 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -9,8 +9,8 @@ $params = @{ } New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md index 438721aa168..8486d7b0708 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md index ec8f32423d2..83869845686 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -10,8 +10,8 @@ $params = @{ } New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md index ba28b833165..bebbfd2991d 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ SenderShiftId = "SHFT_f7e484ed-fdd6-421c-92d9-0bc9e62e2c29" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md index cebb7b577a7..f804148345f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Id = "OPNSHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md index 7345ec87e9a..60c8595b832 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ SenderMessage = "Can I take this shift?" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md index f91bd7b7de1..5d08e75d7f7 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Cashiers" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md index a591f3044d3..488ee9354c6 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md index 8c9c91cd332..0b76be779a6 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ SenderShiftId = "5ad10161-6524-4c7c-9beb-4e8677ba2f6d" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md index bb1543a85e0..27323a8bfef 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md index 7085253e91c..2443e1bbcdb 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Vacation" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md index 3d7a0e1f5a6..ee765d2985e 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "displayName-value" diff --git a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md index 83caf422b73..4d9feebb926 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md index 73c651f9be9..b5d24d6e555 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgAppCatalogTeamApp -TeamsAppId $teamsAppId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md index 0359f02fc8f..d83fb02359e 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md index 4201a6a0e86..77227b8a071 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md index fd7d5a935f8..0bb9139b3f2 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md index 83331faaee5..e2874c0e21a 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md index bd0df9d4a73..5de2be566f9 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md index fddf64f1e05..ac57b62158e 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md index 01ec1f691ce..29078a92fc7 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md index 327a0529b2e..2696dd0fb6b 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md index c78a23e2aec..17d6371b851 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md index 36b8ef12a27..3319e680d91 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md index 4697852409b..3d6feaa6de8 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md index 19eccab348c..08009f2384d 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md index a4297ed4764..2f2a6a5cb03 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md index bf7ecf65d62..9e505cf5332 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md index 5735df30a74..1a80c99ae39 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md index 3c438a2ca4d..2683036ba82 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md index 05f793f5ed5..4ce04144b34 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Remove-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md index 557e9c76fd6..19ab840f46b 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -23,8 +23,8 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -48,8 +48,8 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -74,8 +74,8 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -100,8 +100,8 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -###Example 5 -``` +### Example 5 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ diff --git a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md index 0a379d72368..df46ce1bb00 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -24,8 +24,8 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -49,8 +49,8 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -78,8 +78,8 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` -###Example 4 -``` +### Example 4 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChat.md b/src/Teams/Teams/examples/v1.0/Update-MgChat.md index 0c32ab2e44b..79e84c3da35 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChat.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = "Group chat title update" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md index f4940b240ff..f56a79a1af5 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Update-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md index 267e8126746..cb24eaa60e3 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "My Contoso Tab - updated again" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md index 1438d44f962..827288fe1e5 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ MemberSettings = @{ diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md index 1f9c6e42c95..3104e0ffb5e 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Update-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md index 099696dea64..175fbfa0763 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md index 34e21182e73..9e8319bc654 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ PolicyViolation = @{ diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md index 5435191f7c7..9d662d2b358 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams Update-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md index 76714f308e9..e633d36c638 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md index 7a44c1fe9a3..19dcb8709b8 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md index e81fbe919f7..7d9240c8743 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md index 5cc5bbc9085..edb36d4eb0d 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "displayName-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md index ed7ba248149..ff4834ed310 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md index 943ba39155c..e4b7651372a 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ GroupIds = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md index 00dde5cbf7e..754ffe713cb 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Ids = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md index d82d9126547..073026ce0b9 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "destinationId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md index 0de1905d628..122601ecbce 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "destinationId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md index 8002b385926..6fc36353947 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ GroupId = "groupId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md index 9833f81831d..7831dbb74fb 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Id = "id-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md index 1173b6fdb53..f896791fae1 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Id = "id-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md index e664ecb227e..1267a2243c2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Id = "id-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md index 95308721a09..c740da88d47 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Disable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md index 3f3ee207e82..216df0d6d53 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Enable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md index 0eb2dbce0af..a44940dd905 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ StorageLocation = "storageLocation-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md index eb53345b6fb..eaf69ea3dfb 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Attendees = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md index 51f089193c0..1fd66a8b3d7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Schedules = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md index 0fc5b441e9d..096ce87c3d8 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ EmailAddresses = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md index f060fa73ee6..80508ab4e9f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ SecurityEnabledOnly = $true diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md index fe1d126da4f..9987579033b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ WebUrl = "webUrl value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md index 34b341b8a50..c6108ef3bb2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "comment-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md index 891a8e1955e..3c616877a2b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "I may not be able to make this week. How about next week?" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md index f49229f3861..6c99d8173a7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ StartDateTime = [System.DateTime]::Parse("2020-02-06T01:49:21.3524945+00:00") diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md index d361ceb93eb..cb37e1cce38 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "I won't be able to make this week. How about next week?" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md index d1862979920..897db4da632 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md index 769f015f845..8f9ead58a3f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ ToRecipients = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md index 45198a858f6..d2453c6e76c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "comment-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md index 8ff2f9d952d..2c13ab98515 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions Invoke-MgLicenseUser -UserId $userId ``` diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md index d957315a769..6a6bcc9fa34 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "comment-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md index 6929612efef..4b5a29ea8fd 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md index 58e5c64214d..c1cc74b852f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ NewReminderTime = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md index 6b85c5593ab..f38dea005f7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ InputIds = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md index 8fb24e1b429..2fcc9eb527d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "destinationId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md index cae471e97a9..7cbf788ecf7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "deleteditems" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md index 0f2f78f5bb6..c72044e7d35 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ AttachmentItem = @{ @@ -13,8 +13,8 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ AttachmentItem = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md index dfeb73fca06..5fc1ba0575c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageForward -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md index 60e603497e9..bd0a6a0bdf8 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageReply -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md index 208d2c71b38..e46896c5366 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageReplyAll -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md index e7ac1ac1e38..9e4a02841b1 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Revoke-MgUserSign -UserId $userId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md index 0c89a3d363e..12079677759 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ @@ -28,8 +28,8 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserMail -UserId $userId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ @@ -58,8 +58,8 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserMail -UserId $userId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md index 85abd4da7a6..f923112124f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Send-MgUserMessage -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md index 678677abed4..40347c49113 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Topic = @{ @@ -20,8 +20,8 @@ $params = @{ } Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Topic = @{ @@ -42,8 +42,8 @@ $params = @{ } Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` -###Example 3 -``` +### Example 3 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Topic = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md index 01b48131f27..f5302a486a2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md index ad812e27d2a..aca9485313f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "Cancelling for this week due to all hands" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md index a5e558baa4f..e9bf4aa5ec2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ CurrentPassword = "xWwvJ]6NMw+bWH-d" diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md index e1136990e93..fb21b9f395e 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Get-MgUserContactFolderDelta -UserId $userId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md index 5a29eec8bc5..91e73eb7ca8 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Functions Get-MgUserDelta ``` diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md index b3837fbe6c3..bc114672896 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageDelta -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md index 8d328c5b8e1..451b4cde90e 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgRecentUserActivity -UserId $userId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md index 390ce1d8bf1..c1d64dabfa7 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgSupportedUserOutlookLanguage -UserId $userId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md index 55026c9265e..1faddcfff8d 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgTimeUserOutlook -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md index 8945614553d..0670cdb1f9e 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users Get-MgUserMemberOf -UserId $userId ``` diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md index e0ff514bf4a..33cc562c3b4 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOutlookMasterCategory -UserId $userId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md index e2e77dc5dd1..eed58b72d2c 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOwnedDevice -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md index 17bdce75b56..1dd51e8aca8 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOwnedObject -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md index 447b0121907..fbde4525c8a 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserRegisteredDevice -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md index 27b57ef03c1..46e9ab6cb6a 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users Get-MgUserSettingShiftPreference -UserId $userId ``` diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md index 45629bd5790..8ae16887c88 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoList -UserId $userId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md index 900de52d5fa..ae99fb6c351 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md index 880debe0431..0b49bb7546c 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md index e80c01b7ec5..658c7ca3692 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md @@ -1,11 +1,11 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` -###Example 2 -``` +### Example 2 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md index 2965e9565f0..23b3cfec4bf 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users Get-MgUserTransitiveMemberOf -UserId $userId ``` diff --git a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md index 011d5f95aa4..ebc7fe34b16 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Project expenses" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md index 665abf92cdd..96db581da85 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Travel items" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md index 998cbcfc032..85be0ca05fc 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ Title = "A new task" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md index 672c2c8e032..0f6002e6959 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Final sign-off from the team" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md index 9fdca372f6e..3f5362adb73 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ WebUrl = "https://microsoft.com" diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md index 3819aa2c1b2..486c8e9ae0c 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md index 3b1abcba5cf..d996caf458d 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md index a410d50ce75..9e574df6634 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md index 200fc2a69a0..16c93074abe 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md index 4215654a373..c1a98d86581 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId diff --git a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md index 37fe114659d..857f842596b 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ Color = "preset15" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md index 0a8c5cfd1ff..f77a9f7ae41 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ Id = "SHPR_eeab4fb1-20e5-48ca-ad9b-98119d94bee7" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md index 622d57b361c..41ff107d646 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Vacation Plan" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md index 3a65d6632bb..d69ff9d87f4 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ DueDateTime = @{ diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md index 4e8992f4fdc..b27dc03338a 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "buy cake" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md index b0edeb7390d..af34d81a4f6 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md @@ -1,5 +1,5 @@ -###Example 1 -``` +### Example 1 +``` powershell Import-Module Microsoft.Graph.Users $params = @{ "@odata.type" = "#microsoft.graph.linkedResource" From c6b756c4c393bd267842c94455fc9305766269c7 Mon Sep 17 00:00:00 2001 From: SteveWilkins1123 Date: Wed, 14 Sep 2022 09:58:09 -0700 Subject: [PATCH 12/30] fixed another formatting issue --- .../examples/v1.0/Add-MgApplicationKey.md | 4 ++-- .../examples/v1.0/Add-MgServicePrincipalKey.md | 4 ++-- .../v1.0/Add-MgServicePrincipalPassword.md | 2 +- ...-MgServicePrincipalTokenSigningCertificate.md | 2 +- .../v1.0/Clear-MgApplicationVerifiedPublisher.md | 2 +- .../examples/v1.0/Get-MgApplicationDelta.md | 2 +- .../v1.0/Get-MgApplicationExtensionProperty.md | 4 ++-- ...t-MgApplicationFederatedIdentityCredential.md | 4 ++-- .../examples/v1.0/Get-MgApplicationOwner.md | 2 +- .../examples/v1.0/Get-MgApplicationTemplate.md | 4 ++-- .../v1.0/Get-MgApplicationTokenIssuancePolicy.md | 2 +- .../v1.0/Get-MgApplicationTokenLifetimePolicy.md | 2 +- .../Get-MgServicePrincipalAppRoleAssignedTo.md | 2 +- .../Get-MgServicePrincipalClaimMappingPolicy.md | 2 +- .../v1.0/Get-MgServicePrincipalCreatedObject.md | 2 +- ...PrincipalDelegatedPermissionClassification.md | 2 +- .../examples/v1.0/Get-MgServicePrincipalDelta.md | 2 +- ...MgServicePrincipalHomeRealmDiscoveryPolicy.md | 2 +- .../v1.0/Get-MgServicePrincipalMemberOf.md | 2 +- ...et-MgServicePrincipalOauth2PermissionGrant.md | 2 +- .../v1.0/Get-MgServicePrincipalOwnedObject.md | 2 +- .../Get-MgServicePrincipalTransitiveMemberOf.md | 2 +- .../Invoke-MgInstantiateApplicationTemplate.md | 2 +- .../v1.0/New-MgApplicationExtensionProperty.md | 2 +- ...w-MgApplicationFederatedIdentityCredential.md | 2 +- .../New-MgApplicationTokenIssuancePolicyByRef.md | 2 +- .../New-MgApplicationTokenLifetimePolicyByRef.md | 2 +- .../New-MgServicePrincipalAppRoleAssignedTo.md | 2 +- .../New-MgServicePrincipalAppRoleAssignment.md | 2 +- ...-MgServicePrincipalClaimMappingPolicyByRef.md | 2 +- ...PrincipalDelegatedPermissionClassification.md | 2 +- ...vicePrincipalHomeRealmDiscoveryPolicyByRef.md | 2 +- .../Remove-MgApplicationExtensionProperty.md | 2 +- ...e-MgApplicationFederatedIdentityCredential.md | 2 +- .../examples/v1.0/Remove-MgApplicationKey.md | 2 +- .../v1.0/Remove-MgApplicationOwnerByRef.md | 2 +- .../v1.0/Remove-MgApplicationPassword.md | 2 +- ...move-MgApplicationTokenIssuancePolicyByRef.md | 2 +- ...move-MgApplicationTokenLifetimePolicyByRef.md | 2 +- .../v1.0/Remove-MgGroupAppRoleAssignment.md | 2 +- .../examples/v1.0/Remove-MgServicePrincipal.md | 2 +- ...Remove-MgServicePrincipalAppRoleAssignedTo.md | 2 +- ...-MgServicePrincipalClaimMappingPolicyByRef.md | 2 +- ...PrincipalDelegatedPermissionClassification.md | 2 +- ...vicePrincipalHomeRealmDiscoveryPolicyByRef.md | 2 +- .../v1.0/Remove-MgServicePrincipalKey.md | 2 +- .../v1.0/Remove-MgServicePrincipalPassword.md | 2 +- .../v1.0/Set-MgApplicationVerifiedPublisher.md | 2 +- ...e-MgApplicationFederatedIdentityCredential.md | 2 +- .../examples/v1.0/Get-MgBookingBusiness.md | 6 +++--- .../v1.0/Get-MgBookingBusinessAppointment.md | 4 ++-- .../v1.0/Get-MgBookingBusinessCalendarView.md | 2 +- .../v1.0/Get-MgBookingBusinessCustomQuestion.md | 4 ++-- .../v1.0/Get-MgBookingBusinessCustomer.md | 4 ++-- .../v1.0/Get-MgBookingBusinessService.md | 4 ++-- .../v1.0/Get-MgBookingBusinessStaffMember.md | 4 ++-- .../examples/v1.0/Get-MgBookingCurrency.md | 4 ++-- .../examples/v1.0/New-MgBookingBusiness.md | 2 +- .../v1.0/New-MgBookingBusinessAppointment.md | 2 +- .../v1.0/New-MgBookingBusinessCustomQuestion.md | 2 +- .../v1.0/New-MgBookingBusinessCustomer.md | 2 +- .../v1.0/New-MgBookingBusinessService.md | 2 +- .../v1.0/New-MgBookingBusinessStaffMember.md | 2 +- .../examples/v1.0/Publish-MgBookingBusiness.md | 2 +- .../examples/v1.0/Remove-MgBookingBusiness.md | 2 +- .../v1.0/Remove-MgBookingBusinessAppointment.md | 2 +- .../Remove-MgBookingBusinessCustomQuestion.md | 2 +- .../v1.0/Remove-MgBookingBusinessCustomer.md | 2 +- .../v1.0/Remove-MgBookingBusinessService.md | 2 +- .../v1.0/Remove-MgBookingBusinessStaffMember.md | 2 +- .../v1.0/Stop-MgBookingBusinessAppointment.md | 2 +- .../examples/v1.0/Unpublish-MgBookingBusiness.md | 2 +- .../examples/v1.0/Update-MgBookingBusiness.md | 2 +- .../v1.0/Update-MgBookingBusinessAppointment.md | 2 +- .../Update-MgBookingBusinessCustomQuestion.md | 2 +- .../v1.0/Update-MgBookingBusinessCustomer.md | 2 +- .../v1.0/Update-MgBookingBusinessService.md | 2 +- .../v1.0/Update-MgBookingBusinessStaffMember.md | 2 +- .../Calendar/examples/v1.0/Get-MgGroupEvent.md | 4 ++-- .../examples/v1.0/Get-MgGroupEventExtension.md | 2 +- .../Calendar/examples/v1.0/Get-MgPlace.md | 8 ++++---- .../Calendar/examples/v1.0/Get-MgUserCalendar.md | 2 +- .../examples/v1.0/Get-MgUserCalendarGroup.md | 4 ++-- .../v1.0/Get-MgUserCalendarGroupCalendar.md | 2 +- .../v1.0/Get-MgUserCalendarPermission.md | 2 +- .../examples/v1.0/Get-MgUserCalendarView.md | 2 +- .../examples/v1.0/Get-MgUserDefaultCalendar.md | 2 +- .../Calendar/examples/v1.0/Get-MgUserEvent.md | 6 +++--- .../examples/v1.0/Get-MgUserEventAttachment.md | 2 +- .../examples/v1.0/Get-MgUserEventInstance.md | 2 +- .../Calendar/examples/v1.0/New-MgGroupEvent.md | 2 +- .../Calendar/examples/v1.0/New-MgUserCalendar.md | 2 +- .../examples/v1.0/New-MgUserCalendarEvent.md | 4 ++-- .../examples/v1.0/New-MgUserCalendarGroup.md | 2 +- .../v1.0/New-MgUserCalendarGroupCalendar.md | 2 +- .../Calendar/examples/v1.0/New-MgUserEvent.md | 8 ++++---- .../examples/v1.0/New-MgUserEventAttachment.md | 6 +++--- .../examples/v1.0/Remove-MgGroupEvent.md | 2 +- .../examples/v1.0/Remove-MgUserCalendarGroup.md | 2 +- .../v1.0/Remove-MgUserCalendarPermission.md | 2 +- .../Calendar/examples/v1.0/Remove-MgUserEvent.md | 2 +- .../v1.0/Remove-MgUserEventAttachment.md | 2 +- .../Calendar/examples/v1.0/Update-MgPlace.md | 4 ++-- .../examples/v1.0/Update-MgUserCalendarGroup.md | 2 +- .../v1.0/Update-MgUserCalendarPermission.md | 2 +- .../Calendar/examples/v1.0/Update-MgUserEvent.md | 2 +- .../examples/v1.0/Get-MgSubscription.md | 4 ++-- .../examples/v1.0/New-MgSubscription.md | 2 +- .../examples/v1.0/Remove-MgSubscription.md | 2 +- .../examples/v1.0/Update-MgSubscription.md | 2 +- .../examples/v1.0/Get-MgCommunicationCall.md | 4 ++-- .../v1.0/Get-MgCommunicationCallParticipant.md | 4 ++-- .../v1.0/Get-MgCommunicationCallRecord.md | 8 ++++---- .../v1.0/Get-MgCommunicationCallRecordSession.md | 4 ++-- .../v1.0/Get-MgCommunicationOnlineMeeting.md | 2 +- .../examples/v1.0/Get-MgCommunicationPresence.md | 2 +- .../v1.0/Get-MgCommunicationPresenceByUserId.md | 2 +- .../examples/v1.0/Get-MgUserOnlineMeeting.md | 4 ++-- .../Get-MgUserOnlineMeetingAttendanceReport.md | 4 ++-- ...ineMeetingAttendanceReportAttendanceRecord.md | 2 +- .../examples/v1.0/Get-MgUserPresence.md | 4 ++-- .../v1.0/Invoke-MgAnswerCommunicationCall.md | 6 +++--- ...nvoke-MgInviteCommunicationCallParticipant.md | 14 +++++++------- .../v1.0/Invoke-MgKeepCommunicationCallAlive.md | 2 +- ...mmunicationCallTeleconferenceDeviceQuality.md | 2 +- .../v1.0/Invoke-MgMuteCommunicationCall.md | 2 +- .../Invoke-MgMuteCommunicationCallParticipant.md | 2 +- .../v1.0/Invoke-MgPlayCommunicationCallPrompt.md | 2 +- .../Invoke-MgRecordCommunicationCallResponse.md | 2 +- .../v1.0/Invoke-MgRedirectCommunicationCall.md | 4 ++-- .../v1.0/Invoke-MgRejectCommunicationCall.md | 4 ++-- .../Invoke-MgSubscribeCommunicationCallToTone.md | 2 +- .../v1.0/Invoke-MgUnmuteCommunicationCall.md | 2 +- .../examples/v1.0/Move-MgCommunicationCall.md | 10 +++++----- .../examples/v1.0/New-MgCommunicationCall.md | 8 ++++---- .../examples/v1.0/New-MgUserOnlineMeeting.md | 2 +- .../examples/v1.0/Remove-MgCommunicationCall.md | 2 +- .../Remove-MgCommunicationCallParticipant.md | 6 +++--- .../examples/v1.0/Remove-MgUserOnlineMeeting.md | 2 +- ...ename-MgCommunicationCallScreenSharingRole.md | 2 +- ...rt-MgCommunicationCallParticipantHoldMusic.md | 2 +- .../Stop-MgCommunicationCallMediaProcessing.md | 2 +- ...op-MgCommunicationCallParticipantHoldMusic.md | 2 +- .../Update-MgCommunicationCallRecordingStatus.md | 2 +- .../examples/v1.0/Update-MgUserOnlineMeeting.md | 4 ++-- .../examples/v1.0/Remove-MgUserActivity.md | 2 +- ...et-MgRoleManagementDirectoryRoleAssignment.md | 10 +++++----- ...eManagementDirectoryRoleAssignmentSchedule.md | 6 +++--- ...entDirectoryRoleAssignmentScheduleInstance.md | 6 +++--- ...mentDirectoryRoleAssignmentScheduleRequest.md | 10 +++++----- ...et-MgRoleManagementDirectoryRoleDefinition.md | 8 ++++---- ...ManagementDirectoryRoleEligibilitySchedule.md | 6 +++--- ...ntDirectoryRoleEligibilityScheduleInstance.md | 6 +++--- ...entDirectoryRoleEligibilityScheduleRequest.md | 6 +++--- ...agementEntitlementManagementRoleAssignment.md | 2 +- ...agementEntitlementManagementRoleDefinition.md | 2 +- ...ew-MgRoleManagementDirectoryRoleAssignment.md | 6 +++--- ...mentDirectoryRoleAssignmentScheduleRequest.md | 4 ++-- ...ew-MgRoleManagementDirectoryRoleDefinition.md | 2 +- ...entDirectoryRoleEligibilityScheduleRequest.md | 4 ++-- ...agementEntitlementManagementRoleAssignment.md | 2 +- ...ve-MgRoleManagementDirectoryRoleAssignment.md | 2 +- ...ve-MgRoleManagementDirectoryRoleDefinition.md | 2 +- ...mentDirectoryRoleAssignmentScheduleRequest.md | 2 +- ...entDirectoryRoleEligibilityScheduleRequest.md | 2 +- ...te-MgRoleManagementDirectoryRoleDefinition.md | 2 +- .../examples/v1.0/Get-MgPrintConnector.md | 4 ++-- .../examples/v1.0/Get-MgPrintOperation.md | 2 +- .../examples/v1.0/Get-MgPrintPrinter.md | 6 +++--- .../examples/v1.0/Get-MgPrintPrinterConnector.md | 2 +- .../v1.0/Get-MgPrintPrinterTaskTrigger.md | 4 ++-- .../examples/v1.0/Get-MgPrintService.md | 4 ++-- .../examples/v1.0/Get-MgPrintServiceEndpoint.md | 4 ++-- .../examples/v1.0/Get-MgPrintShare.md | 6 +++--- .../v1.0/Get-MgPrintShareAllowedGroup.md | 2 +- .../examples/v1.0/Get-MgPrintShareAllowedUser.md | 2 +- .../examples/v1.0/Get-MgPrintTaskDefinition.md | 4 ++-- .../v1.0/Get-MgPrintTaskDefinitionTask.md | 4 ++-- .../v1.0/New-MgPrintPrinterTaskTrigger.md | 2 +- .../examples/v1.0/New-MgPrintShare.md | 2 +- .../v1.0/New-MgPrintShareAllowedGroupByRef.md | 2 +- .../v1.0/New-MgPrintShareAllowedUserByRef.md | 2 +- .../examples/v1.0/New-MgPrintTaskDefinition.md | 2 +- .../examples/v1.0/Remove-MgPrintConnector.md | 2 +- .../examples/v1.0/Remove-MgPrintPrinter.md | 2 +- .../v1.0/Remove-MgPrintPrinterTaskTrigger.md | 2 +- .../examples/v1.0/Remove-MgPrintShare.md | 2 +- .../v1.0/Remove-MgPrintShareAllowedGroupByRef.md | 2 +- .../v1.0/Remove-MgPrintShareAllowedUserByRef.md | 2 +- .../v1.0/Remove-MgPrintTaskDefinition.md | 2 +- .../v1.0/Restore-MgPrintPrinterFactoryDefault.md | 2 +- .../examples/v1.0/Update-MgPrintConnector.md | 2 +- .../examples/v1.0/Update-MgPrintPrinter.md | 2 +- .../examples/v1.0/Update-MgPrintShare.md | 2 +- .../v1.0/Update-MgPrintTaskDefinition.md | 2 +- .../v1.0/Update-MgPrintTaskDefinitionTask.md | 2 +- .../Get-MgServiceAnnouncementHealthOverview.md | 8 ++++---- .../v1.0/Get-MgServiceAnnouncementIssue.md | 4 ++-- .../v1.0/Get-MgServiceAnnouncementMessage.md | 4 ++-- ...Get-MgServiceAnnouncementMessageAttachment.md | 4 ++-- ...erviceAnnouncementMessageAttachmentArchive.md | 4 ++-- ...erviceAnnouncementMessageAttachmentContent.md | 4 ++-- ...Invoke-MgArchiveServiceAnnouncementMessage.md | 2 +- ...nvoke-MgFavoriteServiceAnnouncementMessage.md | 2 +- ...nvoke-MgMarkServiceAnnouncementMessageRead.md | 2 +- ...oke-MgMarkServiceAnnouncementMessageUnread.md | 2 +- ...e-MgReportServiceAnnouncementIssueIncident.md | 2 +- ...voke-MgUnarchiveServiceAnnouncementMessage.md | 2 +- ...oke-MgUnfavoriteServiceAnnouncementMessage.md | 2 +- .../v1.0/Confirm-MgDirectoryObjectMemberGroup.md | 2 +- .../examples/v1.0/Get-MgDirectoryObject.md | 2 +- ...gDirectoryObjectAvailableExtensionProperty.md | 2 +- .../examples/v1.0/Get-MgDirectoryObjectById.md | 2 +- .../v1.0/Get-MgDirectoryObjectMemberGroup.md | 2 +- .../v1.0/Get-MgDirectoryObjectMemberObject.md | 2 +- .../examples/v1.0/Remove-MgDirectoryObject.md | 2 +- .../v1.0/Test-MgDirectoryObjectProperty.md | 2 +- .../examples/v1.0/Get-MgEducationClass.md | 4 ++-- .../v1.0/Get-MgEducationClassAssignment.md | 6 +++--- .../Get-MgEducationClassAssignmentCategory.md | 4 ++-- ...et-MgEducationClassAssignmentCategoryDelta.md | 8 ++++---- .../Get-MgEducationClassAssignmentDefault.md | 2 +- .../v1.0/Get-MgEducationClassAssignmentDelta.md | 6 +++--- .../Get-MgEducationClassAssignmentResource.md | 14 +++++++------- .../v1.0/Get-MgEducationClassAssignmentRubric.md | 2 +- .../Get-MgEducationClassAssignmentSetting.md | 2 +- .../Get-MgEducationClassAssignmentSubmission.md | 8 ++++---- ...gEducationClassAssignmentSubmissionOutcome.md | 2 +- ...EducationClassAssignmentSubmissionResource.md | 14 +++++++------- ...ClassAssignmentSubmissionSubmittedResource.md | 2 +- .../examples/v1.0/Get-MgEducationClassDelta.md | 2 +- .../examples/v1.0/Get-MgEducationClassMember.md | 2 +- .../examples/v1.0/Get-MgEducationClassSchool.md | 2 +- .../examples/v1.0/Get-MgEducationClassTeacher.md | 2 +- .../examples/v1.0/Get-MgEducationMeAssignment.md | 2 +- .../examples/v1.0/Get-MgEducationMeClass.md | 2 +- .../examples/v1.0/Get-MgEducationMeRubric.md | 4 ++-- .../examples/v1.0/Get-MgEducationMeSchool.md | 2 +- .../examples/v1.0/Get-MgEducationSchool.md | 4 ++-- .../examples/v1.0/Get-MgEducationSchoolClass.md | 2 +- .../examples/v1.0/Get-MgEducationSchoolDelta.md | 2 +- .../examples/v1.0/Get-MgEducationSchoolUser.md | 2 +- .../examples/v1.0/Get-MgEducationUser.md | 4 ++-- .../v1.0/Get-MgEducationUserAssignment.md | 4 ++-- .../examples/v1.0/Get-MgEducationUserDelta.md | 2 +- .../v1.0/Get-MgEducationUserTaughtClass.md | 4 ++-- ...ReassignEducationClassAssignmentSubmission.md | 4 ++-- ...MgReturnEducationClassAssignmentSubmission.md | 2 +- ...UnsubmitEducationClassAssignmentSubmission.md | 2 +- .../examples/v1.0/New-MgEducationClass.md | 2 +- .../v1.0/New-MgEducationClassAssignment.md | 2 +- .../New-MgEducationClassAssignmentCategory.md | 2 +- ...ew-MgEducationClassAssignmentCategoryByRef.md | 4 ++-- .../New-MgEducationClassAssignmentResource.md | 12 ++++++------ ...EducationClassAssignmentSubmissionResource.md | 12 ++++++------ .../v1.0/New-MgEducationClassMemberByRef.md | 2 +- .../v1.0/New-MgEducationClassTeacherByRef.md | 2 +- .../examples/v1.0/New-MgEducationMeRubric.md | 4 ++-- .../examples/v1.0/New-MgEducationSchool.md | 2 +- .../v1.0/New-MgEducationSchoolClassByRef.md | 2 +- .../v1.0/New-MgEducationSchoolUserByRef.md | 2 +- .../examples/v1.0/New-MgEducationUser.md | 2 +- .../v1.0/Publish-MgEducationClassAssignment.md | 2 +- .../examples/v1.0/Remove-MgEducationClass.md | 2 +- .../v1.0/Remove-MgEducationClassAssignment.md | 2 +- .../Remove-MgEducationClassAssignmentCategory.md | 2 +- ...ve-MgEducationClassAssignmentCategoryByRef.md | 2 +- .../Remove-MgEducationClassAssignmentResource.md | 2 +- ...move-MgEducationClassAssignmentRubricByRef.md | 2 +- ...EducationClassAssignmentSubmissionResource.md | 2 +- .../examples/v1.0/Remove-MgEducationMeRubric.md | 2 +- .../examples/v1.0/Remove-MgEducationSchool.md | 2 +- .../examples/v1.0/Remove-MgEducationUser.md | 2 +- .../Set-MgEducationClassAssignmentRubricByRef.md | 2 +- ...ubmit-MgEducationClassAssignmentSubmission.md | 2 +- .../examples/v1.0/Update-MgEducationClass.md | 2 +- .../v1.0/Update-MgEducationClassAssignment.md | 2 +- .../Update-MgEducationClassAssignmentDefault.md | 2 +- .../Update-MgEducationClassAssignmentSetting.md | 2 +- ...gEducationClassAssignmentSubmissionOutcome.md | 6 +++--- .../examples/v1.0/Update-MgEducationMeRubric.md | 2 +- .../examples/v1.0/Update-MgEducationSchool.md | 2 +- .../examples/v1.0/Update-MgEducationUser.md | 2 +- src/Files/Files/examples/v1.0/Get-MgDrive.md | 2 +- .../Files/examples/v1.0/Get-MgDriveItemChild.md | 2 +- .../examples/v1.0/Get-MgGroupDefaultDrive.md | 2 +- .../Files/examples/v1.0/Get-MgGroupDrive.md | 2 +- .../Files/examples/v1.0/Get-MgShareDriveItem.md | 4 ++-- .../Get-MgShareSharedDriveItemSharedDriveItem.md | 2 +- .../examples/v1.0/Get-MgUserDefaultDrive.md | 4 ++-- src/Files/Files/examples/v1.0/Get-MgUserDrive.md | 4 ++-- .../examples/v1.0/Grant-MgSharePermission.md | 2 +- .../examples/v1.0/Invoke-MgCheckinDriveItem.md | 2 +- .../examples/v1.0/Invoke-MgCheckoutDriveItem.md | 2 +- .../examples/v1.0/Restore-MgDriveItemVersion.md | 2 +- .../Groups/examples/v1.0/Add-MgGroupFavorite.md | 2 +- .../examples/v1.0/Get-MgGroupAcceptedSender.md | 2 +- .../examples/v1.0/Get-MgGroupConversation.md | 6 +++--- .../v1.0/Get-MgGroupConversationThread.md | 2 +- .../Groups/examples/v1.0/Get-MgGroupDelta.md | 2 +- .../examples/v1.0/Get-MgGroupLifecyclePolicy.md | 4 ++-- .../v1.0/Get-MgGroupLifecyclePolicyByGroup.md | 2 +- .../Groups/examples/v1.0/Get-MgGroupMemberOf.md | 2 +- .../examples/v1.0/Get-MgGroupPermissionGrant.md | 2 +- .../Groups/examples/v1.0/Get-MgGroupPhoto.md | 2 +- .../examples/v1.0/Get-MgGroupRejectedSender.md | 2 +- .../Groups/examples/v1.0/Get-MgGroupThread.md | 6 +++--- .../examples/v1.0/Get-MgGroupThreadPost.md | 2 +- .../v1.0/Get-MgGroupThreadPostAttachment.md | 2 +- .../v1.0/Get-MgGroupThreadPostExtension.md | 2 +- .../examples/v1.0/Get-MgGroupTransitiveMember.md | 2 +- .../v1.0/Get-MgGroupTransitiveMemberOf.md | 2 +- .../v1.0/Invoke-MgForwardGroupThreadPost.md | 2 +- .../Groups/examples/v1.0/Invoke-MgGraphGroup.md | 2 +- .../Groups/examples/v1.0/Invoke-MgRenewGroup.md | 2 +- .../examples/v1.0/Invoke-MgReplyGroupThread.md | 8 ++++---- .../v1.0/Invoke-MgReplyGroupThreadPost.md | 2 +- .../v1.0/Invoke-MgSubscribeGroupByMail.md | 2 +- .../v1.0/New-MgGroupAcceptedSenderByRef.md | 2 +- .../examples/v1.0/New-MgGroupConversation.md | 2 +- .../v1.0/New-MgGroupConversationThread.md | 2 +- .../examples/v1.0/New-MgGroupLifecyclePolicy.md | 2 +- .../examples/v1.0/New-MgGroupMemberByRef.md | 2 +- .../v1.0/New-MgGroupRejectedSenderByRef.md | 2 +- .../Groups/examples/v1.0/New-MgGroupThread.md | 2 +- .../examples/v1.0/Remove-MgGroupConversation.md | 4 ++-- .../examples/v1.0/Remove-MgGroupFavorite.md | 2 +- .../v1.0/Remove-MgGroupLifecyclePolicy.md | 2 +- .../examples/v1.0/Remove-MgGroupMemberByRef.md | 2 +- .../examples/v1.0/Remove-MgGroupOwnerByRef.md | 2 +- .../Groups/examples/v1.0/Remove-MgGroupThread.md | 4 ++-- .../examples/v1.0/Reset-MgGroupUnseenCount.md | 2 +- .../Groups/examples/v1.0/Set-MgGroupLicense.md | 4 ++-- .../Groups/examples/v1.0/Test-MgGroupProperty.md | 2 +- .../v1.0/Update-MgGroupLifecyclePolicy.md | 2 +- .../Groups/examples/v1.0/Update-MgGroupThread.md | 2 +- .../v1.0/Update-MgGroupThreadPostExtension.md | 2 +- .../examples/v1.0/Confirm-MgDomain.md | 2 +- .../examples/v1.0/Get-MgContactDelta.md | 2 +- .../examples/v1.0/Get-MgContactDirectReport.md | 2 +- .../examples/v1.0/Get-MgContactManager.md | 2 +- .../examples/v1.0/Get-MgContactMemberOf.md | 2 +- .../v1.0/Get-MgContactTransitiveMemberOf.md | 2 +- .../examples/v1.0/Get-MgContract.md | 4 ++-- .../examples/v1.0/Get-MgDevice.md | 14 +++++++------- .../examples/v1.0/Get-MgDeviceMemberOf.md | 2 +- .../examples/v1.0/Get-MgDeviceRegisteredOwner.md | 2 +- .../examples/v1.0/Get-MgDeviceRegisteredUser.md | 2 +- .../v1.0/Get-MgDeviceTransitiveMemberOf.md | 2 +- .../v1.0/Get-MgDirectoryAdministrativeUnit.md | 4 ++-- .../Get-MgDirectoryAdministrativeUnitMember.md | 2 +- ...t-MgDirectoryAdministrativeUnitMemberByRef.md | 2 +- ...irectoryAdministrativeUnitScopedRoleMember.md | 4 ++-- .../Get-MgDirectoryFederationConfiguration.md | 4 ++-- .../examples/v1.0/Get-MgDirectoryRoleDelta.md | 2 +- .../v1.0/Get-MgDirectoryRoleScopedMember.md | 2 +- .../examples/v1.0/Get-MgDirectoryRoleTemplate.md | 4 ++-- .../examples/v1.0/Get-MgDomainNameReference.md | 2 +- .../Get-MgDomainServiceConfigurationRecord.md | 2 +- .../v1.0/Get-MgDomainVerificationDnsRecord.md | 2 +- .../examples/v1.0/Get-MgOrganization.md | 4 ++-- .../examples/v1.0/Get-MgOrganizationBranding.md | 6 +++--- .../Get-MgOrganizationBrandingLocalization.md | 4 ++-- ...OrganizationBrandingLocalizationBannerLogo.md | 6 +++--- .../examples/v1.0/Invoke-MgForceDomainDelete.md | 2 +- .../examples/v1.0/New-MgDevice.md | 2 +- .../v1.0/New-MgDeviceRegisteredOwnerByRef.md | 2 +- .../v1.0/New-MgDeviceRegisteredUserByRef.md | 2 +- .../v1.0/New-MgDirectoryAdministrativeUnit.md | 2 +- ...w-MgDirectoryAdministrativeUnitMemberByRef.md | 2 +- ...irectoryAdministrativeUnitScopedRoleMember.md | 2 +- .../New-MgDirectoryFederationConfiguration.md | 2 +- .../examples/v1.0/New-MgDirectoryRole.md | 2 +- .../examples/v1.0/New-MgDomain.md | 2 +- .../New-MgOrganizationBrandingLocalization.md | 2 +- .../examples/v1.0/Remove-MgDevice.md | 2 +- .../v1.0/Remove-MgDeviceRegisteredOwnerByRef.md | 2 +- .../v1.0/Remove-MgDirectoryAdministrativeUnit.md | 2 +- ...e-MgDirectoryAdministrativeUnitMemberByRef.md | 2 +- ...irectoryAdministrativeUnitScopedRoleMember.md | 2 +- .../v1.0/Remove-MgDirectoryDeletedItem.md | 2 +- .../Remove-MgDirectoryFederationConfiguration.md | 2 +- .../v1.0/Remove-MgDirectoryRoleMemberByRef.md | 2 +- .../examples/v1.0/Remove-MgDomain.md | 2 +- .../Remove-MgOrganizationBrandingLocalization.md | 2 +- .../v1.0/Restore-MgDirectoryDeletedItem.md | 2 +- .../examples/v1.0/Update-MgDevice.md | 4 ++-- .../v1.0/Update-MgDirectoryAdministrativeUnit.md | 2 +- .../examples/v1.0/Update-MgDomain.md | 2 +- .../examples/v1.0/Update-MgOrganization.md | 2 +- .../v1.0/Update-MgOrganizationBranding.md | 2 +- .../Update-MgOrganizationBrandingLocalization.md | 4 ++-- ...anceAccessReviewDefinitionInstanceDecision.md | 2 +- .../Get-MgEntitlementManagementAccessPackage.md | 6 +++--- ...ntAccessPackageApplicablePolicyRequirement.md | 2 +- ...gementAccessPackageAssignmentApprovalStage.md | 4 ++-- .../Get-MgEntitlementManagementAssignment.md | 6 +++--- ...et-MgEntitlementManagementAssignmentPolicy.md | 4 ++-- ...t-MgEntitlementManagementAssignmentRequest.md | 6 +++--- .../v1.0/Get-MgEntitlementManagementCatalog.md | 4 ++-- ...EntitlementManagementConnectedOrganization.md | 4 ++-- .../v1.0/Get-MgEntitlementManagementSetting.md | 2 +- ...MgIdentityGovernanceAccessReviewDefinition.md | 8 ++++---- ...tyGovernanceAccessReviewDefinitionInstance.md | 6 +++--- ...sReviewDefinitionInstanceContactedReviewer.md | 2 +- ...anceAccessReviewDefinitionInstanceDecision.md | 6 +++--- ...ernanceAccessReviewDefinitionInstanceStage.md | 6 +++--- ...ccessReviewDefinitionInstanceStageDecision.md | 6 +++--- ...ityGovernanceAccessReviewHistoryDefinition.md | 4 ++-- ...nanceAccessReviewHistoryDefinitionInstance.md | 2 +- .../Get-MgIdentityGovernanceAppConsentRequest.md | 8 ++++---- ...ernanceAppConsentRequestUserConsentRequest.md | 6 +++--- ...Get-MgIdentityGovernanceTermOfUseAgreement.md | 8 ++++---- ...MgIdentityGovernanceTermOfUseAgreementFile.md | 2 +- .../v1.0/Get-MgUserAgreementAcceptance.md | 2 +- ...cessReviewDefinitionInstanceRecommendation.md | 2 +- ...cessReviewDefinitionInstanceRecordDecision.md | 2 +- .../New-MgEntitlementManagementAccessPackage.md | 2 +- ...ew-MgEntitlementManagementAssignmentPolicy.md | 4 ++-- ...w-MgEntitlementManagementAssignmentRequest.md | 10 +++++----- .../v1.0/New-MgEntitlementManagementCatalog.md | 2 +- ...EntitlementManagementConnectedOrganization.md | 2 +- ...tConnectedOrganizationExternalSponsorByRef.md | 2 +- ...tConnectedOrganizationInternalSponsorByRef.md | 2 +- ...MgIdentityGovernanceAccessReviewDefinition.md | 8 ++++---- ...ityGovernanceAccessReviewHistoryDefinition.md | 2 +- ...ReviewHistoryDefinitionInstanceDownloadUri.md | 2 +- ...New-MgIdentityGovernanceTermOfUseAgreement.md | 2 +- ...emove-MgEntitlementManagementAccessPackage.md | 2 +- ...ve-MgEntitlementManagementAssignmentPolicy.md | 2 +- ...e-MgEntitlementManagementAssignmentRequest.md | 2 +- .../Remove-MgEntitlementManagementCatalog.md | 2 +- ...EntitlementManagementConnectedOrganization.md | 2 +- ...tConnectedOrganizationExternalSponsorByRef.md | 2 +- ...tConnectedOrganizationInternalSponsorByRef.md | 2 +- ...MgIdentityGovernanceAccessReviewDefinition.md | 2 +- ...ove-MgIdentityGovernanceTermOfUseAgreement.md | 2 +- ...anceAccessReviewDefinitionInstanceDecision.md | 2 +- ...anceAccessReviewDefinitionInstanceReminder.md | 2 +- ...p-MgEntitlementManagementAssignmentRequest.md | 2 +- ...tyGovernanceAccessReviewDefinitionInstance.md | 2 +- ...ernanceAccessReviewDefinitionInstanceStage.md | 2 +- ...pdate-MgEntitlementManagementAccessPackage.md | 2 +- .../Update-MgEntitlementManagementCatalog.md | 2 +- ...EntitlementManagementConnectedOrganization.md | 2 +- .../Update-MgEntitlementManagementSetting.md | 2 +- ...tyGovernanceAccessReviewDefinitionInstance.md | 2 +- ...ernanceAccessReviewDefinitionInstanceStage.md | 2 +- ...ccessReviewDefinitionInstanceStageDecision.md | 6 +++--- ...ate-MgIdentityGovernanceTermOfUseAgreement.md | 2 +- .../v1.0/Confirm-MgRiskyUserCompromised.md | 2 +- .../examples/v1.0/Get-MgDataPolicyOperation.md | 2 +- .../examples/v1.0/Get-MgIdentityApiConnector.md | 4 ++-- .../examples/v1.0/Get-MgIdentityB2XUserFlow.md | 6 +++--- .../Get-MgIdentityB2XUserFlowIdentityProvider.md | 2 +- .../v1.0/Get-MgIdentityB2XUserFlowLanguage.md | 4 ++-- ...ntityB2XUserFlowLanguageDefaultPageContent.md | 2 +- ...-MgIdentityB2XUserFlowLanguageOverridePage.md | 2 +- ...IdentityB2XUserFlowUserAttributeAssignment.md | 8 ++++---- ...ityB2XUserFlowUserAttributeAssignmentOrder.md | 2 +- .../examples/v1.0/Get-MgIdentityProvider.md | 16 ++++++++-------- .../v1.0/Get-MgIdentityUserFlowAttribute.md | 4 ++-- ...gInformationProtectionBitlockerRecoveryKey.md | 8 ++++---- ...formationProtectionThreatAssessmentRequest.md | 12 ++++++------ .../examples/v1.0/Get-MgOauth2PermissionGrant.md | 4 ++-- .../v1.0/Get-MgOauth2PermissionGrantDelta.md | 2 +- ...anizationCertificateBasedAuthConfiguration.md | 4 ++-- .../Get-MgPolicyActivityBasedTimeoutPolicy.md | 4 ++-- .../Get-MgPolicyAdminConsentRequestPolicy.md | 2 +- .../v1.0/Get-MgPolicyAuthenticationFlowPolicy.md | 2 +- .../Get-MgPolicyAuthenticationMethodPolicy.md | 2 +- ...hodPolicyAuthenticationMethodConfiguration.md | 8 ++++---- .../v1.0/Get-MgPolicyClaimMappingPolicy.md | 4 ++-- .../v1.0/Get-MgPolicyCrossTenantAccessPolicy.md | 2 +- ...Get-MgPolicyCrossTenantAccessPolicyDefault.md | 2 +- ...Get-MgPolicyCrossTenantAccessPolicyPartner.md | 4 ++-- .../v1.0/Get-MgPolicyFeatureRolloutPolicy.md | 6 +++--- .../v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md | 4 ++-- ...cyIdentitySecurityDefaultEnforcementPolicy.md | 2 +- .../v1.0/Get-MgPolicyPermissionGrantPolicy.md | 4 ++-- .../Get-MgPolicyPermissionGrantPolicyExclude.md | 2 +- .../Get-MgPolicyPermissionGrantPolicyInclude.md | 2 +- .../v1.0/Get-MgPolicyRoleManagementPolicy.md | 8 ++++---- ...Get-MgPolicyRoleManagementPolicyAssignment.md | 8 ++++---- .../v1.0/Get-MgPolicyRoleManagementPolicyRule.md | 4 ++-- .../v1.0/Get-MgPolicyTokenIssuancePolicy.md | 4 ++-- .../v1.0/Get-MgPolicyTokenLifetimePolicy.md | 4 ++-- .../examples/v1.0/Get-MgRiskDetection.md | 4 ++-- .../examples/v1.0/Get-MgRiskyUser.md | 4 ++-- .../examples/v1.0/Get-MgRiskyUserHistory.md | 4 ++-- .../v1.0/Get-MgUserAuthenticationEmailMethod.md | 4 ++-- .../v1.0/Get-MgUserAuthenticationFido2Method.md | 2 +- ...AuthenticationMicrosoftAuthenticatorMethod.md | 2 +- .../v1.0/Get-MgUserAuthenticationOperation.md | 2 +- .../Get-MgUserAuthenticationPasswordMethod.md | 4 ++-- .../v1.0/Get-MgUserAuthenticationPhoneMethod.md | 4 ++-- ...Get-MgUserAuthenticationSoftwareOathMethod.md | 4 ++-- ...serAuthenticationTemporaryAccessPassMethod.md | 4 ++-- ...AuthenticationWindowHelloForBusinessMethod.md | 4 ++-- .../Invoke-MgAvailableIdentityProviderType.md | 6 +++--- .../examples/v1.0/Invoke-MgDismissRiskyUser.md | 2 +- ...ploadIdentityApiConnectorClientCertificate.md | 2 +- .../examples/v1.0/New-MgIdentityApiConnector.md | 6 +++--- .../examples/v1.0/New-MgIdentityB2XUserFlow.md | 6 +++--- ...IdentityB2XUserFlowUserAttributeAssignment.md | 2 +- .../examples/v1.0/New-MgIdentityProvider.md | 4 ++-- .../v1.0/New-MgIdentityUserFlowAttribute.md | 2 +- ...formationProtectionThreatAssessmentRequest.md | 8 ++++---- .../examples/v1.0/New-MgOauth2PermissionGrant.md | 2 +- .../New-MgPolicyActivityBasedTimeoutPolicy.md | 2 +- .../v1.0/New-MgPolicyClaimMappingPolicy.md | 2 +- ...New-MgPolicyCrossTenantAccessPolicyPartner.md | 2 +- .../v1.0/New-MgPolicyFeatureRolloutPolicy.md | 2 +- ...w-MgPolicyFeatureRolloutPolicyApplyToByRef.md | 2 +- .../v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md | 2 +- .../v1.0/New-MgPolicyPermissionGrantPolicy.md | 2 +- .../New-MgPolicyPermissionGrantPolicyExclude.md | 2 +- .../New-MgPolicyPermissionGrantPolicyInclude.md | 2 +- .../v1.0/New-MgPolicyTokenIssuancePolicy.md | 2 +- .../v1.0/New-MgPolicyTokenLifetimePolicy.md | 2 +- .../v1.0/New-MgUserAuthenticationEmailMethod.md | 2 +- .../v1.0/New-MgUserAuthenticationPhoneMethod.md | 2 +- ...serAuthenticationTemporaryAccessPassMethod.md | 2 +- .../v1.0/Remove-MgIdentityApiConnector.md | 2 +- .../v1.0/Remove-MgIdentityB2XUserFlow.md | 2 +- ...IdentityB2XUserFlowUserAttributeAssignment.md | 2 +- .../examples/v1.0/Remove-MgIdentityProvider.md | 4 ++-- .../v1.0/Remove-MgIdentityUserFlowAttribute.md | 2 +- .../v1.0/Remove-MgOauth2PermissionGrant.md | 2 +- .../Remove-MgPolicyActivityBasedTimeoutPolicy.md | 2 +- ...hodPolicyAuthenticationMethodConfiguration.md | 8 ++++---- .../v1.0/Remove-MgPolicyClaimMappingPolicy.md | 2 +- ...ove-MgPolicyCrossTenantAccessPolicyPartner.md | 2 +- .../v1.0/Remove-MgPolicyFeatureRolloutPolicy.md | 2 +- ...e-MgPolicyFeatureRolloutPolicyApplyToByRef.md | 2 +- .../Remove-MgPolicyHomeRealmDiscoveryPolicy.md | 2 +- .../v1.0/Remove-MgPolicyPermissionGrantPolicy.md | 2 +- ...emove-MgPolicyPermissionGrantPolicyExclude.md | 2 +- ...emove-MgPolicyPermissionGrantPolicyInclude.md | 2 +- .../v1.0/Remove-MgPolicyTokenIssuancePolicy.md | 2 +- .../v1.0/Remove-MgPolicyTokenLifetimePolicy.md | 2 +- .../Remove-MgUserAuthenticationEmailMethod.md | 2 +- .../Remove-MgUserAuthenticationFido2Method.md | 2 +- ...AuthenticationMicrosoftAuthenticatorMethod.md | 2 +- .../Remove-MgUserAuthenticationPhoneMethod.md | 2 +- ...ove-MgUserAuthenticationSoftwareOathMethod.md | 2 +- ...serAuthenticationTemporaryAccessPassMethod.md | 2 +- ...AuthenticationWindowHelloForBusinessMethod.md | 2 +- ...ssTenantAccessPolicyDefaultToSystemDefault.md | 2 +- ...tityB2XUserFlowLanguageOverridePageContent.md | 2 +- ...ityB2XUserFlowUserAttributeAssignmentOrder.md | 2 +- .../v1.0/Update-MgIdentityApiConnector.md | 6 +++--- ...IdentityB2XUserFlowUserAttributeAssignment.md | 2 +- .../examples/v1.0/Update-MgIdentityProvider.md | 6 +++--- .../v1.0/Update-MgIdentityUserFlowAttribute.md | 2 +- .../v1.0/Update-MgOauth2PermissionGrant.md | 2 +- .../Update-MgPolicyActivityBasedTimeoutPolicy.md | 2 +- .../Update-MgPolicyAuthenticationFlowPolicy.md | 2 +- .../Update-MgPolicyAuthenticationMethodPolicy.md | 2 +- ...hodPolicyAuthenticationMethodConfiguration.md | 8 ++++---- .../v1.0/Update-MgPolicyClaimMappingPolicy.md | 2 +- .../Update-MgPolicyCrossTenantAccessPolicy.md | 2 +- ...ate-MgPolicyCrossTenantAccessPolicyDefault.md | 2 +- ...ate-MgPolicyCrossTenantAccessPolicyPartner.md | 2 +- .../v1.0/Update-MgPolicyFeatureRolloutPolicy.md | 2 +- .../Update-MgPolicyHomeRealmDiscoveryPolicy.md | 2 +- ...cyIdentitySecurityDefaultEnforcementPolicy.md | 2 +- .../v1.0/Update-MgPolicyPermissionGrantPolicy.md | 2 +- .../Update-MgPolicyRoleManagementPolicyRule.md | 2 +- .../v1.0/Update-MgPolicyTokenIssuancePolicy.md | 2 +- .../v1.0/Update-MgPolicyTokenLifetimePolicy.md | 2 +- .../Update-MgUserAuthenticationEmailMethod.md | 2 +- .../Update-MgUserAuthenticationPhoneMethod.md | 2 +- .../Get-MgUserInferenceClassificationOverride.md | 2 +- .../Mail/examples/v1.0/Get-MgUserMailFolder.md | 6 +++--- .../v1.0/Get-MgUserMailFolderChildFolder.md | 2 +- .../examples/v1.0/Get-MgUserMailFolderMessage.md | 2 +- .../v1.0/Get-MgUserMailFolderMessageRule.md | 4 ++-- src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md | 10 +++++----- .../examples/v1.0/Get-MgUserMessageAttachment.md | 14 +++++++------- .../examples/v1.0/Get-MgUserMessageExtension.md | 2 +- .../New-MgUserInferenceClassificationOverride.md | 2 +- .../Mail/examples/v1.0/New-MgUserMailFolder.md | 2 +- .../v1.0/New-MgUserMailFolderChildFolder.md | 4 ++-- .../examples/v1.0/New-MgUserMailFolderMessage.md | 2 +- .../v1.0/New-MgUserMailFolderMessageRule.md | 2 +- src/Mail/Mail/examples/v1.0/New-MgUserMessage.md | 4 ++-- .../examples/v1.0/New-MgUserMessageAttachment.md | 4 ++-- ...move-MgUserInferenceClassificationOverride.md | 2 +- .../examples/v1.0/Remove-MgUserMailFolder.md | 2 +- .../v1.0/Remove-MgUserMailFolderMessageRule.md | 2 +- .../Mail/examples/v1.0/Remove-MgUserMessage.md | 4 ++-- .../v1.0/Remove-MgUserMessageExtension.md | 2 +- ...date-MgUserInferenceClassificationOverride.md | 2 +- .../examples/v1.0/Update-MgUserMailFolder.md | 4 ++-- .../v1.0/Update-MgUserMailFolderMessageRule.md | 2 +- .../Mail/examples/v1.0/Update-MgUserMessage.md | 4 ++-- .../examples/v1.0/Get-MgUserOnenoteNotebook.md | 6 +++--- .../v1.0/Get-MgUserOnenoteNotebookSection.md | 2 +- .../Get-MgUserOnenoteNotebookSectionGroup.md | 2 +- .../examples/v1.0/Get-MgUserOnenoteOperation.md | 2 +- .../examples/v1.0/Get-MgUserOnenoteSection.md | 4 ++-- .../v1.0/Get-MgUserOnenoteSectionGroup.md | 2 +- .../v1.0/Get-MgUserOnenoteSectionGroupSection.md | 2 +- .../examples/v1.0/New-MgUserOnenoteNotebook.md | 2 +- .../v1.0/New-MgUserOnenoteNotebookSection.md | 2 +- .../New-MgUserOnenoteNotebookSectionGroup.md | 2 +- .../v1.0/New-MgUserOnenoteSectionGroupSection.md | 2 +- .../examples/v1.0/Remove-MgUserOnenotePage.md | 2 +- .../People/examples/v1.0/Get-MgUserPerson.md | 2 +- .../examples/v1.0/Get-MgUserUsedInsight.md | 4 ++-- .../examples/v1.0/Get-MgUserContact.md | 4 ++-- .../examples/v1.0/Get-MgUserContactFolder.md | 4 ++-- .../v1.0/Get-MgUserContactFolderChildFolder.md | 2 +- .../v1.0/Get-MgUserContactFolderContact.md | 2 +- .../examples/v1.0/New-MgUserContact.md | 2 +- .../examples/v1.0/New-MgUserContactFolder.md | 2 +- .../v1.0/New-MgUserContactFolderChildFolder.md | 2 +- .../v1.0/New-MgUserContactFolderContact.md | 2 +- .../examples/v1.0/Remove-MgUserContact.md | 2 +- .../examples/v1.0/Remove-MgUserContactFolder.md | 2 +- .../examples/v1.0/Update-MgUserContact.md | 2 +- .../examples/v1.0/Update-MgUserContactFolder.md | 2 +- .../examples/v1.0/Get-MgGroupPlannerPlan.md | 2 +- .../Planner/examples/v1.0/Get-MgPlanner.md | 2 +- .../Planner/examples/v1.0/Get-MgPlannerBucket.md | 4 ++-- .../examples/v1.0/Get-MgPlannerBucketTask.md | 2 +- .../Planner/examples/v1.0/Get-MgPlannerPlan.md | 4 ++-- .../examples/v1.0/Get-MgPlannerPlanBucket.md | 2 +- .../examples/v1.0/Get-MgPlannerPlanDetail.md | 2 +- .../examples/v1.0/Get-MgPlannerPlanTask.md | 2 +- .../Planner/examples/v1.0/Get-MgPlannerTask.md | 4 ++-- ...Get-MgPlannerTaskAssignedToTaskBoardFormat.md | 2 +- .../Get-MgPlannerTaskBucketTaskBoardFormat.md | 2 +- .../examples/v1.0/Get-MgPlannerTaskDetail.md | 2 +- .../Get-MgPlannerTaskProgressTaskBoardFormat.md | 2 +- .../examples/v1.0/Get-MgUserPlannerPlan.md | 2 +- .../examples/v1.0/Get-MgUserPlannerTask.md | 2 +- .../Planner/examples/v1.0/New-MgPlannerBucket.md | 2 +- .../Planner/examples/v1.0/New-MgPlannerPlan.md | 2 +- .../Planner/examples/v1.0/New-MgPlannerTask.md | 2 +- .../examples/v1.0/Remove-MgPlannerBucket.md | 2 +- .../examples/v1.0/Remove-MgPlannerPlan.md | 2 +- .../examples/v1.0/Remove-MgPlannerTask.md | 2 +- .../examples/v1.0/Update-MgPlannerBucket.md | 2 +- .../examples/v1.0/Update-MgPlannerPlan.md | 2 +- .../examples/v1.0/Update-MgPlannerPlanDetail.md | 2 +- .../examples/v1.0/Update-MgPlannerTask.md | 2 +- ...ate-MgPlannerTaskAssignedToTaskBoardFormat.md | 2 +- .../Update-MgPlannerTaskBucketTaskBoardFormat.md | 2 +- .../examples/v1.0/Update-MgPlannerTaskDetail.md | 2 +- ...pdate-MgPlannerTaskProgressTaskBoardFormat.md | 2 +- .../v1.0/Get-MgAuditLogDirectoryAudit.md | 4 ++-- .../examples/v1.0/Get-MgAuditLogProvisioning.md | 4 ++-- .../examples/v1.0/Get-MgAuditLogSignIn.md | 6 +++--- .../v1.0/Get-MgReportDailyPrintUsageByPrinter.md | 4 ++-- .../v1.0/Get-MgReportDailyPrintUsageByUser.md | 4 ++-- .../Get-MgReportMonthlyPrintUsageByPrinter.md | 2 +- .../v1.0/Get-MgReportMonthlyPrintUsageByUser.md | 2 +- .../examples/v1.0/Get-MgSchemaExtension.md | 4 ++-- .../examples/v1.0/New-MgSchemaExtension.md | 6 +++--- .../examples/v1.0/Remove-MgSchemaExtension.md | 2 +- .../examples/v1.0/Update-MgSchemaExtension.md | 4 ++-- .../examples/v1.0/Get-MgExternalConnection.md | 4 ++-- .../v1.0/Get-MgExternalConnectionGroup.md | 2 +- .../v1.0/Get-MgExternalConnectionItem.md | 2 +- .../v1.0/Get-MgExternalConnectionOperation.md | 2 +- .../v1.0/Get-MgExternalConnectionSchema.md | 2 +- .../examples/v1.0/New-MgExternalConnection.md | 2 +- .../v1.0/New-MgExternalConnectionGroup.md | 2 +- .../v1.0/New-MgExternalConnectionGroupMember.md | 6 +++--- .../examples/v1.0/Remove-MgExternalConnection.md | 2 +- .../v1.0/Remove-MgExternalConnectionGroup.md | 2 +- .../Remove-MgExternalConnectionGroupMember.md | 2 +- .../v1.0/Remove-MgExternalConnectionItem.md | 2 +- .../examples/v1.0/Update-MgExternalConnection.md | 2 +- .../v1.0/Update-MgExternalConnectionGroup.md | 2 +- .../v1.0/Update-MgExternalConnectionItem.md | 2 +- ...-MgSecurityCaseEdiscoveryCaseCustodianHold.md | 4 ++-- ...seEdiscoveryCaseNoncustodialDataSourceHold.md | 4 ++-- ...ecurityCaseEdiscoveryCaseReviewSetQueryTag.md | 2 +- ...rityCaseEdiscoveryCaseReviewSetToReviewSet.md | 2 +- .../v1.0/Close-MgSecurityCaseEdiscoveryCase.md | 2 +- .../examples/v1.0/Get-MgSecurityAlert.md | 4 ++-- .../v1.0/Get-MgSecurityCaseEdiscoveryCase.md | 4 ++-- .../Get-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 ++-- ...eEdiscoveryCaseCustodianLastIndexOperation.md | 2 +- ...urityCaseEdiscoveryCaseCustodianSiteSource.md | 2 +- ...eEdiscoveryCaseCustodianUnifiedGroupSource.md | 2 +- ...urityCaseEdiscoveryCaseCustodianUserSource.md | 2 +- ...tyCaseEdiscoveryCaseNoncustodialDataSource.md | 6 +++--- .../Get-MgSecurityCaseEdiscoveryCaseOperation.md | 4 ++-- .../Get-MgSecurityCaseEdiscoveryCaseReviewSet.md | 4 ++-- ...MgSecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 ++-- .../Get-MgSecurityCaseEdiscoveryCaseSearch.md | 4 ++-- ...tyCaseEdiscoveryCaseSearchAdditionalSource.md | 4 ++-- ...ityCaseEdiscoveryCaseSearchCustodianSource.md | 2 +- ...yCaseSearchLastEstimateStatisticsOperation.md | 2 +- ...CaseEdiscoveryCaseSearchNoncustodialSource.md | 2 +- .../Get-MgSecurityCaseEdiscoveryCaseSetting.md | 2 +- .../v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md | 4 ++-- .../examples/v1.0/Get-MgSecuritySecureScore.md | 4 ++-- .../Get-MgSecuritySecureScoreControlProfile.md | 4 ++-- ...lize-MgSecurityCaseEdiscoveryCaseCustodian.md | 2 +- ...MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md | 2 +- ...SecurityCaseEdiscoveryCaseSearchStatistics.md | 2 +- .../Invoke-MgReopenSecurityCaseEdiscoveryCase.md | 2 +- .../v1.0/New-MgSecurityCaseEdiscoveryCase.md | 2 +- .../New-MgSecurityCaseEdiscoveryCaseCustodian.md | 2 +- ...urityCaseEdiscoveryCaseCustodianSiteSource.md | 2 +- ...eEdiscoveryCaseCustodianUnifiedGroupSource.md | 6 +++--- ...tyCaseEdiscoveryCaseNoncustodialDataSource.md | 2 +- .../New-MgSecurityCaseEdiscoveryCaseReviewSet.md | 2 +- ...MgSecurityCaseEdiscoveryCaseReviewSetQuery.md | 2 +- .../New-MgSecurityCaseEdiscoveryCaseSearch.md | 2 +- ...lish-MgSecurityCaseEdiscoveryCaseCustodian.md | 2 +- ...tyCaseEdiscoveryCaseNoncustodialDataSource.md | 2 +- .../v1.0/Remove-MgSecurityCaseEdiscoveryCase.md | 2 +- ...-MgSecurityCaseEdiscoveryCaseCustodianHold.md | 2 +- ...seEdiscoveryCaseNoncustodialDataSourceHold.md | 4 ++-- ...MgSecurityCaseEdiscoveryCaseReviewSetQuery.md | 2 +- .../Remove-MgSecurityCaseEdiscoveryCaseSearch.md | 2 +- .../Remove-MgSecurityCaseEdiscoveryCaseTag.md | 2 +- ...SecurityCaseEdiscoveryCaseSettingToDefault.md | 2 +- .../examples/v1.0/Update-MgSecurityAlert.md | 4 ++-- .../v1.0/Update-MgSecurityCaseEdiscoveryCase.md | 2 +- ...MgSecurityCaseEdiscoveryCaseCustodianIndex.md | 2 +- ...eEdiscoveryCaseNoncustodialDataSourceIndex.md | 2 +- ...MgSecurityCaseEdiscoveryCaseReviewSetQuery.md | 2 +- .../Update-MgSecurityCaseEdiscoveryCaseSearch.md | 2 +- ...Update-MgSecurityCaseEdiscoveryCaseSetting.md | 2 +- ...Update-MgSecuritySecureScoreControlProfile.md | 4 ++-- .../v1.0/Add-MgSiteListContentTypeCopy.md | 2 +- ...gSiteListContentTypeCopyFromContentTypeHub.md | 6 +++--- ...-MgSiteContentTypeToDefaultContentLocation.md | 2 +- src/Sites/Sites/examples/v1.0/Get-MgSite.md | 6 +++--- .../Sites/examples/v1.0/Get-MgSiteColumn.md | 2 +- .../Sites/examples/v1.0/Get-MgSiteContentType.md | 6 +++--- .../examples/v1.0/Get-MgSiteContentTypeColumn.md | 4 ++-- .../examples/v1.0/Get-MgSiteDefaultDrive.md | 2 +- src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md | 2 +- src/Sites/Sites/examples/v1.0/Get-MgSiteList.md | 12 ++++++------ .../Sites/examples/v1.0/Get-MgSiteListColumn.md | 2 +- .../examples/v1.0/Get-MgSiteListContentType.md | 2 +- ...iteListContentTypeCompatibleHubContentType.md | 2 +- .../Sites/examples/v1.0/Get-MgSiteListItem.md | 2 +- .../v1.0/Get-MgSiteListItemDocumentSetVersion.md | 4 ++-- .../examples/v1.0/Get-MgSiteListItemVersion.md | 4 ++-- .../Sites/examples/v1.0/Get-MgSitePermission.md | 4 ++-- .../Sites/examples/v1.0/Get-MgSiteTermStore.md | 2 +- .../examples/v1.0/Get-MgSiteTermStoreGroup.md | 6 +++--- .../examples/v1.0/Get-MgSiteTermStoreGroupSet.md | 2 +- .../v1.0/Get-MgSiteTermStoreGroupSetTerm.md | 2 +- .../examples/v1.0/Get-MgSiteTermStoreSet.md | 2 +- .../examples/v1.0/Get-MgSiteTermStoreSetChild.md | 2 +- .../v1.0/Get-MgSiteTermStoreSetRelation.md | 2 +- src/Sites/Sites/examples/v1.0/Get-MgSubSite.md | 2 +- .../examples/v1.0/Get-MgUserFollowedSite.md | 2 +- .../v1.0/Join-MgSiteContentTypeWithHubSite.md | 2 +- .../Sites/examples/v1.0/New-MgSiteColumn.md | 2 +- .../Sites/examples/v1.0/New-MgSiteContentType.md | 2 +- .../examples/v1.0/New-MgSiteContentTypeColumn.md | 2 +- src/Sites/Sites/examples/v1.0/New-MgSiteList.md | 2 +- .../Sites/examples/v1.0/New-MgSiteListColumn.md | 2 +- .../Sites/examples/v1.0/New-MgSiteListItem.md | 2 +- .../v1.0/New-MgSiteListItemDocumentSetVersion.md | 2 +- .../Sites/examples/v1.0/New-MgSitePermission.md | 2 +- .../examples/v1.0/New-MgSiteTermStoreGroup.md | 2 +- .../examples/v1.0/New-MgSiteTermStoreSetChild.md | 2 +- .../examples/v1.0/Publish-MgSiteContentType.md | 2 +- .../examples/v1.0/Remove-MgSiteContentType.md | 2 +- .../v1.0/Remove-MgSiteContentTypeColumn.md | 2 +- .../Sites/examples/v1.0/Remove-MgSiteListItem.md | 2 +- .../Remove-MgSiteListItemDocumentSetVersion.md | 2 +- .../examples/v1.0/Remove-MgSitePermission.md | 2 +- .../examples/v1.0/Remove-MgSiteTermStoreGroup.md | 2 +- .../examples/v1.0/Remove-MgSiteTermStoreSet.md | 2 +- .../v1.0/Remove-MgSiteTermStoreSetTerm.md | 2 +- .../Restore-MgSiteListItemDocumentSetVersion.md | 2 +- .../v1.0/Restore-MgSiteListItemVersion.md | 2 +- .../v1.0/Test-MgSiteContentTypePublished.md | 2 +- .../examples/v1.0/Unpublish-MgSiteContentType.md | 2 +- .../examples/v1.0/Update-MgSiteContentType.md | 2 +- .../examples/v1.0/Update-MgSiteListItemField.md | 2 +- .../examples/v1.0/Update-MgSitePermission.md | 2 +- .../examples/v1.0/Update-MgSiteTermStore.md | 2 +- .../examples/v1.0/Update-MgSiteTermStoreSet.md | 2 +- .../v1.0/Update-MgSiteTermStoreSetTerm.md | 2 +- .../Teams/examples/v1.0/Add-MgTeamMember.md | 6 +++--- .../v1.0/Complete-MgTeamChannelMigration.md | 2 +- .../examples/v1.0/Complete-MgTeamMigration.md | 2 +- src/Teams/Teams/examples/v1.0/Copy-MgTeam.md | 2 +- .../examples/v1.0/Get-MgAppCatalogTeamApp.md | 10 +++++----- .../v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md | 2 +- src/Teams/Teams/examples/v1.0/Get-MgChat.md | 8 ++++---- .../examples/v1.0/Get-MgChatInstalledApp.md | 8 ++++---- .../Teams/examples/v1.0/Get-MgChatMember.md | 4 ++-- .../Teams/examples/v1.0/Get-MgChatMessage.md | 4 ++-- .../v1.0/Get-MgChatMessageHostedContent.md | 4 ++-- src/Teams/Teams/examples/v1.0/Get-MgChatTab.md | 6 +++--- src/Teams/Teams/examples/v1.0/Get-MgTeam.md | 2 +- .../Teams/examples/v1.0/Get-MgTeamChannel.md | 10 +++++----- .../examples/v1.0/Get-MgTeamChannelFileFolder.md | 2 +- .../examples/v1.0/Get-MgTeamChannelMember.md | 4 ++-- .../examples/v1.0/Get-MgTeamChannelMessage.md | 6 +++--- .../Get-MgTeamChannelMessageHostedContent.md | 2 +- .../v1.0/Get-MgTeamChannelMessageReply.md | 2 +- ...Get-MgTeamChannelMessageReplyHostedContent.md | 2 +- .../v1.0/Get-MgTeamChannelSharedWithTeam.md | 4 ++-- ...t-MgTeamChannelSharedWithTeamAllowedMember.md | 2 +- .../Teams/examples/v1.0/Get-MgTeamChannelTab.md | 4 ++-- .../examples/v1.0/Get-MgTeamIncomingChannel.md | 2 +- .../examples/v1.0/Get-MgTeamInstalledApp.md | 10 +++++----- .../Teams/examples/v1.0/Get-MgTeamMember.md | 8 ++++---- .../examples/v1.0/Get-MgTeamPrimaryChannel.md | 2 +- .../Teams/examples/v1.0/Get-MgTeamSchedule.md | 2 +- .../v1.0/Get-MgTeamScheduleOfferShiftRequest.md | 4 ++-- .../examples/v1.0/Get-MgTeamScheduleOpenShift.md | 4 ++-- .../Get-MgTeamScheduleOpenShiftChangeRequest.md | 4 ++-- .../v1.0/Get-MgTeamScheduleSchedulingGroup.md | 4 ++-- .../examples/v1.0/Get-MgTeamScheduleShift.md | 4 ++-- .../Get-MgTeamScheduleSwapShiftChangeRequest.md | 4 ++-- .../examples/v1.0/Get-MgTeamScheduleTimeOff.md | 4 ++-- .../v1.0/Get-MgTeamScheduleTimeOffReason.md | 4 ++-- .../v1.0/Get-MgTeamScheduleTimeOffRequest.md | 4 ++-- .../v1.0/Get-MgTeamworkWorkforceIntegration.md | 4 ++-- src/Teams/Teams/examples/v1.0/Get-MgUserChat.md | 6 +++--- .../Teams/examples/v1.0/Get-MgUserChatMember.md | 2 +- .../Teams/examples/v1.0/Get-MgUserJoinedTeam.md | 2 +- .../v1.0/Get-MgUserTeamworkAssociatedTeam.md | 2 +- .../v1.0/Get-MgUserTeamworkInstalledApp.md | 8 ++++---- .../v1.0/Get-MgUserTeamworkInstalledAppChat.md | 2 +- .../Teams/examples/v1.0/Invoke-MgArchiveTeam.md | 2 +- .../examples/v1.0/Invoke-MgShareTeamSchedule.md | 2 +- .../examples/v1.0/Invoke-MgUnarchiveTeam.md | 2 +- .../examples/v1.0/New-MgAppCatalogTeamApp.md | 2 +- src/Teams/Teams/examples/v1.0/New-MgChat.md | 12 ++++++------ .../examples/v1.0/New-MgChatInstalledApp.md | 2 +- .../Teams/examples/v1.0/New-MgChatMember.md | 8 ++++---- .../Teams/examples/v1.0/New-MgChatMessage.md | 4 ++-- src/Teams/Teams/examples/v1.0/New-MgChatTab.md | 2 +- src/Teams/Teams/examples/v1.0/New-MgTeam.md | 16 ++++++++-------- .../Teams/examples/v1.0/New-MgTeamChannel.md | 10 +++++----- .../examples/v1.0/New-MgTeamChannelEmail.md | 2 +- .../examples/v1.0/New-MgTeamChannelMember.md | 14 +++++++------- .../examples/v1.0/New-MgTeamChannelMessage.md | 16 ++++++++-------- .../v1.0/New-MgTeamChannelMessageReply.md | 4 ++-- .../examples/v1.0/New-MgTeamInstalledApp.md | 2 +- .../Teams/examples/v1.0/New-MgTeamMember.md | 4 ++-- .../v1.0/New-MgTeamScheduleOfferShiftRequest.md | 2 +- .../examples/v1.0/New-MgTeamScheduleOpenShift.md | 2 +- .../New-MgTeamScheduleOpenShiftChangeRequest.md | 2 +- .../v1.0/New-MgTeamScheduleSchedulingGroup.md | 2 +- .../examples/v1.0/New-MgTeamScheduleShift.md | 2 +- .../New-MgTeamScheduleSwapShiftChangeRequest.md | 2 +- .../examples/v1.0/New-MgTeamScheduleTimeOff.md | 2 +- .../v1.0/New-MgTeamScheduleTimeOffReason.md | 2 +- .../v1.0/New-MgTeamworkWorkforceIntegration.md | 2 +- .../v1.0/New-MgUserTeamworkInstalledApp.md | 2 +- .../examples/v1.0/Remove-MgAppCatalogTeamApp.md | 2 +- .../examples/v1.0/Remove-MgChatInstalledApp.md | 2 +- .../Teams/examples/v1.0/Remove-MgChatMember.md | 2 +- .../Teams/examples/v1.0/Remove-MgChatTab.md | 2 +- .../Teams/examples/v1.0/Remove-MgTeamChannel.md | 2 +- .../examples/v1.0/Remove-MgTeamChannelEmail.md | 2 +- .../examples/v1.0/Remove-MgTeamChannelMember.md | 2 +- .../v1.0/Remove-MgTeamChannelSharedWithTeam.md | 2 +- .../examples/v1.0/Remove-MgTeamInstalledApp.md | 2 +- .../Teams/examples/v1.0/Remove-MgTeamMember.md | 2 +- .../v1.0/Remove-MgTeamScheduleOpenShift.md | 2 +- .../v1.0/Remove-MgTeamScheduleSchedulingGroup.md | 2 +- .../examples/v1.0/Remove-MgTeamScheduleShift.md | 2 +- .../v1.0/Remove-MgTeamScheduleTimeOff.md | 2 +- .../v1.0/Remove-MgTeamScheduleTimeOffReason.md | 2 +- .../v1.0/Remove-MgTeamScheduleTimeOffRequest.md | 2 +- .../Remove-MgTeamworkWorkforceIntegration.md | 2 +- .../v1.0/Remove-MgUserTeamworkInstalledApp.md | 2 +- .../v1.0/Send-MgChatActivityNotification.md | 10 +++++----- .../v1.0/Send-MgTeamActivityNotification.md | 8 ++++---- src/Teams/Teams/examples/v1.0/Update-MgChat.md | 2 +- .../examples/v1.0/Update-MgChatInstalledApp.md | 2 +- .../Teams/examples/v1.0/Update-MgChatTab.md | 2 +- src/Teams/Teams/examples/v1.0/Update-MgTeam.md | 2 +- .../Teams/examples/v1.0/Update-MgTeamChannel.md | 2 +- .../examples/v1.0/Update-MgTeamChannelMember.md | 2 +- .../examples/v1.0/Update-MgTeamChannelMessage.md | 2 +- .../examples/v1.0/Update-MgTeamInstalledApp.md | 2 +- .../Teams/examples/v1.0/Update-MgTeamMember.md | 2 +- .../v1.0/Update-MgTeamScheduleOpenShift.md | 2 +- .../examples/v1.0/Update-MgTeamScheduleShift.md | 2 +- .../Update-MgTeamworkWorkforceIntegration.md | 2 +- .../examples/v1.0/Clear-MgUserPresence.md | 2 +- .../examples/v1.0/Confirm-MgUserMemberGroup.md | 2 +- .../examples/v1.0/Confirm-MgUserMemberObject.md | 2 +- .../examples/v1.0/Copy-MgUserMailFolder.md | 2 +- .../examples/v1.0/Copy-MgUserMessage.md | 2 +- .../examples/v1.0/Copy-MgUserOnenoteNotebook.md | 2 +- .../v1.0/Copy-MgUserOnenotePageToSection.md | 2 +- .../v1.0/Copy-MgUserOnenoteSectionToNotebook.md | 2 +- .../Copy-MgUserOnenoteSectionToSectionGroup.md | 2 +- ...able-MgUserAuthenticationPhoneMethodSmSign.md | 2 +- ...able-MgUserAuthenticationPhoneMethodSmSign.md | 2 +- .../examples/v1.0/Export-MgUserPersonalData.md | 2 +- .../examples/v1.0/Find-MgUserMeetingTime.md | 2 +- .../v1.0/Get-MgUserDefaultCalendarSchedule.md | 2 +- .../examples/v1.0/Get-MgUserMailTip.md | 2 +- .../examples/v1.0/Get-MgUserMemberGroup.md | 2 +- .../v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md | 2 +- .../examples/v1.0/Invoke-MgAcceptUserEvent.md | 2 +- .../v1.0/Invoke-MgAcceptUserEventTentatively.md | 2 +- .../Invoke-MgCreateOrGetUserOnlineMeeting.md | 2 +- .../examples/v1.0/Invoke-MgDeclineUserEvent.md | 2 +- .../v1.0/Invoke-MgDismissUserEventReminder.md | 2 +- .../examples/v1.0/Invoke-MgForwardUserEvent.md | 2 +- .../examples/v1.0/Invoke-MgForwardUserMessage.md | 2 +- .../examples/v1.0/Invoke-MgLicenseUser.md | 2 +- .../v1.0/Invoke-MgReplyAllUserMessage.md | 2 +- .../examples/v1.0/Invoke-MgReplyUserMessage.md | 2 +- .../v1.0/Invoke-MgSnoozeUserEventReminder.md | 2 +- .../v1.0/Invoke-MgTranslateUserExchangeId.md | 2 +- .../examples/v1.0/Move-MgUserMailFolder.md | 2 +- .../examples/v1.0/Move-MgUserMessage.md | 2 +- .../New-MgUserMessageAttachmentUploadSession.md | 4 ++-- .../examples/v1.0/New-MgUserMessageForward.md | 2 +- .../examples/v1.0/New-MgUserMessageReply.md | 2 +- .../examples/v1.0/New-MgUserMessageReplyAll.md | 2 +- .../examples/v1.0/Revoke-MgUserSign.md | 2 +- .../examples/v1.0/Send-MgUserMail.md | 6 +++--- .../examples/v1.0/Send-MgUserMessage.md | 2 +- .../Send-MgUserTeamworkActivityNotification.md | 6 +++--- .../examples/v1.0/Set-MgUserPresence.md | 2 +- .../examples/v1.0/Stop-MgUserEvent.md | 2 +- .../examples/v1.0/Update-MgUserPassword.md | 2 +- .../v1.0/Get-MgUserContactFolderDelta.md | 2 +- .../examples/v1.0/Get-MgUserDelta.md | 2 +- .../v1.0/Get-MgUserMailFolderMessageDelta.md | 2 +- .../examples/v1.0/Invoke-MgRecentUserActivity.md | 2 +- .../Invoke-MgSupportedUserOutlookLanguage.md | 2 +- .../examples/v1.0/Invoke-MgTimeUserOutlook.md | 2 +- .../Users/examples/v1.0/Get-MgUserMemberOf.md | 2 +- .../v1.0/Get-MgUserOutlookMasterCategory.md | 4 ++-- .../Users/examples/v1.0/Get-MgUserOwnedDevice.md | 2 +- .../Users/examples/v1.0/Get-MgUserOwnedObject.md | 2 +- .../examples/v1.0/Get-MgUserRegisteredDevice.md | 2 +- .../v1.0/Get-MgUserSettingShiftPreference.md | 2 +- .../Users/examples/v1.0/Get-MgUserTodoList.md | 4 ++-- .../examples/v1.0/Get-MgUserTodoListTask.md | 4 ++-- .../v1.0/Get-MgUserTodoListTaskChecklistItem.md | 4 ++-- .../v1.0/Get-MgUserTodoListTaskLinkedResource.md | 4 ++-- .../v1.0/Get-MgUserTransitiveMemberOf.md | 2 +- .../v1.0/New-MgUserOutlookMasterCategory.md | 2 +- .../Users/examples/v1.0/New-MgUserTodoList.md | 2 +- .../examples/v1.0/New-MgUserTodoListTask.md | 2 +- .../v1.0/New-MgUserTodoListTaskChecklistItem.md | 2 +- .../v1.0/New-MgUserTodoListTaskLinkedResource.md | 2 +- .../v1.0/Remove-MgUserOutlookMasterCategory.md | 2 +- .../Users/examples/v1.0/Remove-MgUserTodoList.md | 2 +- .../examples/v1.0/Remove-MgUserTodoListTask.md | 2 +- .../Remove-MgUserTodoListTaskChecklistItem.md | 2 +- .../Remove-MgUserTodoListTaskLinkedResource.md | 2 +- .../v1.0/Update-MgUserOutlookMasterCategory.md | 2 +- .../v1.0/Update-MgUserSettingShiftPreference.md | 2 +- .../Users/examples/v1.0/Update-MgUserTodoList.md | 2 +- .../examples/v1.0/Update-MgUserTodoListTask.md | 2 +- .../Update-MgUserTodoListTaskChecklistItem.md | 2 +- .../Update-MgUserTodoListTaskLinkedResource.md | 2 +- 966 files changed, 1435 insertions(+), 1435 deletions(-) diff --git a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md index 91a1eafe770..9bbd73fb228 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ @@ -13,7 +13,7 @@ $params = @{ Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md index 4f511d58784..f125a9d4e24 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ @@ -13,7 +13,7 @@ $params = @{ Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyCredential = @{ diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md index a117554ebeb..1546ed8f69e 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ PasswordCredential = @{ diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md index 386f321fa20..bd0f19b141f 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ DisplayName = "CN=customDisplayName" diff --git a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md index 52092130187..538f791cfd0 100644 --- a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md index 47288de616d..8d15f3bc642 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationDelta ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md index a67ccb5cb35..7d0b1a9356b 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md index ae51fea6708..08b8783612e 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md index cbc8d601426..3052c3fbbf2 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationOwner -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md index fca7ba75998..db2c7522e7a 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md index f7f3923448f..dd3ec5b38a8 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md index d9cea8e7127..db2054058fa 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md index 7b97bc2e6cd..7a8e9778e50 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md index 0a1bb4368df..071fa92177d 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md index b6368f72419..0edfd892d89 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md index 01b27e7f7b9..d52539c7271 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md index 4cbf55f435f..34d45233f5f 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelta ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md index eb52aa9fb2f..6591d1c46e6 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md index faa5bad47da..0897e4d5696 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md index 9169710fd1e..453c8c4ad98 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md index ff5cef2ee4a..7b9c5a3132f 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md index 9eee1c059e2..dbb913c1e85 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md index ef7e16cd78a..99f3f0563d5 100644 --- a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ DisplayName = "Azure AD SAML Toolkit" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md index 87270bfddcb..79a373937ee 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ Name = "jobGroup" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md index cdfc504765a..6cba8dc4fd5 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ Name = "testing02" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md index 574a0aa553b..0342edc8aa3 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/tokenIssuancePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md index 556c83ca5ef..91184dadbf4 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/tokenLifetimePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md index f77634c2886..0a1e38b33fe 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ PrincipalId = "33ad69f9-da99-4bed-acd0-3f24235cb296" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md index 07c13eb18fb..3e3484e8ae5 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ PrincipalId = "9028d19c-26a9-4809-8e3f-20ff73e2d75e" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md index 627c177b1a3..79604ece030 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/claimsMappingPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md index 66d96eb8573..dfeb07ddfd2 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ PermissionId = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 3bbdaea5544..a274ec9b013 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/policies/homeRealmDiscoveryPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md index 19d8a2f0471..8a55b7c42ba 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md index 3f9bc731079..468a5403f1f 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md index 2815ac73016..8471f61cb29 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md index 8e3761ec688..3a18049663c 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md index 7162ba1a537..ce4bd86f663 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md index c4a70ae4332..72ce95325db 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md index dc8e0309b87..f845b259c87 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md index b0da17640d5..e8f8985da06 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md index bd6c169d9a5..e213d390b70 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md index 52ecba967d5..5294cdb6b4d 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md index 8baf4dd80c1..8ee0400c918 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md index 62465105751..6981b6a8028 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 1646a530d38..2b8f26da662 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md index 4568eb8e90b..861ea0829ef 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md index 606b93d09f8..144d1974f8f 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" diff --git a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md index ee9011fe509..e91e10dcba2 100644 --- a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ VerifiedPublisherId = "1234567" diff --git a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md index 15fae20d092..d48c7926a00 100644 --- a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Applications $params = @{ Name = "testing02" diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md index 82a3bde40d8..c72d5c15b87 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -Query "Adventure" ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md index 648b7cffa7f..0659cc2d44d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md index 311dfb67721..498e9e125c2 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md index f8aa23e5d3a..0a1f7032b76 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md index 88a5af53931..e0a926f5b73 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md index 8181d81ada1..833b73de1ff 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md index bb78224a648..732911b0ed9 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md index 4bec3d73c93..c213a1b8078 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency -BookingCurrencyId $bookingCurrencyId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency ``` diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md index c04f87c9d63..b9081d37011 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ DisplayName = "Fourth Coffee" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md index 28b1464caa4..f79067ead9f 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingAppointment" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md index 16153915002..5f27bd4cfda 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomQuestion" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md index 0707cb8117d..cf7eff4628f 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomer" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md index 59cbd90ea3a..6f398f963b3 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingService" diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md index f5896858c61..73285a6db7d 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingStaffMember" diff --git a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md index 7a92e4cebee..bdac9c6ff7e 100644 --- a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md index 6396da37c7b..5161d90e3fe 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md index 714198c516f..32e2c998e67 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md index 5f2e0166323..aeb9b9c835b 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md index 367c0022974..bc84f9bce53 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md index f34f34d7f81..4dc626a77cf 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md index 9595e5a620d..4ea8a42cf3d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md index bb29fd4e044..ff825afda2c 100644 --- a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ CancellationMessage = "Your appointment has been successfully cancelled. Please call us again." diff --git a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md index 8695e0d9401..eff7bbf6c84 100644 --- a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md index d825cc8bc21..6cb8d0fcc7d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ Email = "admin@fabrikam.com" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md index 17bb24e0cd9..be41e5eb8a3 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingAppointment" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md index 91df2de6d1e..2242894ea42 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomQuestion" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md index 87d54ec6140..7c2cd3c11f2 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingCustomer" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md index 8e1901d2dee..4973a7105e2 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingService" diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md index 53ccc89ce56..30891e4a48a 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Bookings $params = @{ "@odata.type" = "#microsoft.graph.bookingStaffMember" diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md index ead5d17fa6d..e9d8df14716 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId -EventId $eventId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md index a332f5c3872..d4155158076 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md index 70ac7a35202..7c1d55f02b9 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md index 0e225174435..8535c349264 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendar -UserId $userId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md index fb627f3c378..449dd6ff0f0 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md index 1a20e999abd..4c3f33c657a 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md index 7d2aeb38115..a2556b8caf4 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Get-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md index 5f38b45d681..02ebf0c64e6 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md index 253aa62ff6c..5a632413e9c 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserDefaultCalendar -UserId $userId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md index b5d7c2741d3..f5c5c116a4d 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md @@ -1,17 +1,17 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location" diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md index adaf398b609..6093d3631a7 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventAttachment -UserId $userId -EventId $eventId diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md index e787d497d50..d597b77e2e7 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md index 7cd8d3f32e6..6b6e53d3acf 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md index 58fc2e5ac0a..0ea27280587 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "Volunteer" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md index 48ad01fc53a..99b2e88d801 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" @@ -33,7 +33,7 @@ $params = @{ New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md index ed52acc81b3..172870cad54 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "Personal events" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md index 4d5c1556356..dba9a69f2f1 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "Marketing calendar" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md index c2b47abe83f..1cae789aaed 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Plan summer company picnic" @@ -63,7 +63,7 @@ $params = @{ New-MgUserEvent -UserId $userId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" @@ -98,7 +98,7 @@ $params = @{ New-MgUserEvent -UserId $userId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" @@ -134,7 +134,7 @@ $params = @{ New-MgUserEvent -UserId $userId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Subject = "Let's go for lunch" diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md index d8e6c4a8f77..84bc969b626 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "#microsoft.graph.fileAttachment" @@ -10,7 +10,7 @@ $params = @{ New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "#microsoft.graph.itemAttachment" @@ -24,7 +24,7 @@ $params = @{ New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "#Microsoft.OutlookServices.ItemAttachment" diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md index b4edfece33c..18d89812bca 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgGroupEvent -GroupId $groupId -EventId $eventId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md index 925d2942748..4e987269782 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md index a52d95affe4..1264d185ada 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md index ea4d0fe0f56..e74cc9dabd9 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEvent -UserId $userId -EventId $eventId diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md index 48a334d53ee..40663478bd2 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md index cc53295aa2e..190fb9248ee 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "microsoft.graph.room" @@ -12,7 +12,7 @@ $params = @{ Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ "@odata.type" = "microsoft.graph.roomList" diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md index 6c60b664403..c1578468402 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Name = "name-value" diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md index e87bd435a7d..bb320fc95e6 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ Role = "write" diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md index a6fff025a48..8370ea1b5cf 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Calendar $params = @{ OriginalStartTimeZone = "originalStartTimeZone-value" diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md index 762aab13dee..2def9677f31 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.ChangeNotifications Get-MgSubscription -SubscriptionId $subscriptionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.ChangeNotifications Get-MgSubscription ``` diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md index f260dd1ed35..421d1111641 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.ChangeNotifications $params = @{ ChangeType = "created" diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md index cd6e605e30b..3c193f36954 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.ChangeNotifications Remove-MgSubscription -SubscriptionId $subscriptionId ``` diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md index c54a4fb8787..8e15e2a08c5 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.ChangeNotifications $params = @{ ExpirationDateTime = [System.DateTime]::Parse("2016-11-22T18:23:45.9356913Z") diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md index 4cc83921001..fc074559dd7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md index 37a54363977..9233de16117 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md index 130a2e4ca90..423aceb9871 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md index 64f8a94483d..a20feab43d4 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md index ba3572b25d1..f23dd9a5484 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md index 57c7dd1f252..e93e1926c53 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationPresence -PresenceId $presenceId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md index 67bc61b1773..11a96a584df 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Ids = @( diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md index 6d236a52273..06e026d47aa 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md index b7938f6971f..23b6ee5755a 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId -ExpandProperty "attendanceRecords" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 918af41d9cb..f7686ac895d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md index 81851941bca..ff31dfef7a4 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserPresence -UserId $userId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserPresence -UserId $userId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md index be3f5435e45..2c1a1638f63 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CallbackUri = "https://bot.contoso.com/api/calls" @@ -14,7 +14,7 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CallbackUri = "callbackUri-value" @@ -30,7 +30,7 @@ $params = @{ Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CallbackUri = "https://bot.contoso.com/api/calls" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md index d73757ab8be..b4fb7df245b 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -21,7 +21,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -41,7 +41,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -63,7 +63,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -86,7 +86,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -120,7 +120,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( @@ -142,7 +142,7 @@ $params = @{ Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Participants = @( diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md index ebcb2621260..66c52fa7485 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Invoke-MgKeepCommunicationCallAlive -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 8c5fc6c0a06..f0829098067 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Quality = @{ diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md index 859e5942f1c..178323e7e16 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md index 5d4cb0069ec..ac89826f0af 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md index 8d90d59ee2f..65f69f0377f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md index 1e19c382307..8f1b4b11e86 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ BargeInAllowed = $true diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md index 2ea25a79ddd..f86955325f3 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Targets = @( @@ -20,7 +20,7 @@ $params = @{ Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Targets = @( diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md index f7ee6fc05eb..7fb9f4340ed 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Reason = "none" @@ -7,7 +7,7 @@ $params = @{ Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Reason = "busy" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md index 2142bd5515e..2751aa684ba 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "fd1c7836-4d84-4e24-b6aa-23188688cc54" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md index 28e722b1a9e..0cce94ef892 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md index cad7e644d03..22a950aa02c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -15,7 +15,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -35,7 +35,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -54,7 +54,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ @@ -76,7 +76,7 @@ $params = @{ Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ TransferTarget = @{ diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md index a8e1a72c882..9415fbf9545 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" @@ -41,7 +41,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" @@ -69,7 +69,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" @@ -112,7 +112,7 @@ $params = @{ New-MgCommunicationCall -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ "@odata.type" = "#microsoft.graph.call" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md index 21674fd1f9f..f3ef1dea1ec 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ StartDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00") diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md index 4f4f8618bcd..a671f44d907 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCall -CallId $callId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md index 44e72f4e95c..dd78a1f832e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md index c622558760f..e35cfd60d98 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md index 2592dd61e18..0d66fbbaee2 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ Role = "viewer" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md index 5cc2725e43e..e306c331e25 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ CustomPrompt = @{ diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md index 2ffe9b6a427..5d6091d2bc7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md index 54ce81169c1..de3d156a0c7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md index 82908b1ead6..2907e41f5c9 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ ClientContext = "clientContext-value" diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md index 6c87cdfdd2f..803730f2fb5 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ LobbyBypassSettings = @{ @@ -10,7 +10,7 @@ $params = @{ Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ StartDateTime = [System.DateTime]::Parse("2020-09-09T14:33:30.8546353-07:00") diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md index be3d901bf47..e8f71f01312 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md index 89e0fd2235b..ceb7cc2f254 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md @@ -1,25 +1,25 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -Filter "roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "principal" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -Filter " principalId eq '5bde3e51-d13b-4db1-9948-fe4b109d11a7'" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md index f4196981d70..e30cc72c8d6 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md index 5181487e410..004f7cd1ae6 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index aedf47c99d9..1e4b638adbe 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,25 +1,25 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md index 642b4b86de9..145f84c8929 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -ExpandProperty "inheritsPermissionsFrom" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md index 4f3a46c62b0..48ab1d924aa 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md index 9eda1b9415c..7e008ae2c4b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 12c71cdbc65..a9778068e01 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md index bffba07f5e1..1b883ea48e2 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementEntitlementManagementRoleAssignment -Filter "appScopeId eq '/AccessPackageCatalog/4cee616b-fdf9-4890-9d10-955e0ccb12bc'" -ExpandProperty "principal" ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md index 3d68927dc57..a6ff855414a 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementEntitlementManagementRoleDefinition ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md index 46ea7a4ebbb..a708c1922fa 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" @@ -10,7 +10,7 @@ $params = @{ New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" @@ -21,7 +21,7 @@ $params = @{ New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index c0eb0b06338..9b26703861c 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "adminAssign" @@ -17,7 +17,7 @@ $params = @{ New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "selfActivate" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md index d26ebdb066e..fd0ac60aa28 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Description = "Update basic properties of application registrations" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index f121548a03d..5b65b927cfa 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "adminAssign" @@ -18,7 +18,7 @@ $params = @{ New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Action = "adminRemove" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md index a27867ace23..6bbe550cdea 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ PrincipalId = "679a9213-c497-48a4-830a-8d3d25d94ddc" diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md index 81ef44fea12..7e5ef710b93 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Remove-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md index ff1775a4e94..667c6abcc59 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Remove-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index f185537c46e..3ae858ebf03 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 8677fc3bdc4..3777364fd91 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md index 066e0e1d98d..4a48e80dc9f 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ Description = "Update basic properties of application registrations" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md index f953d0f90f4..4c38c0bc082 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintConnector -PrintConnectorId $printConnectorId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintConnector ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md index 0dc80dc12b5..654054d67e1 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintOperation -PrintOperationId $printOperationId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md index a605578e0c3..031a3da0894 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter -PrinterId $printerId -Property "id,displayName,capabilities" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter -PrinterId $printerId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md index 82a113c219c..1441e5d0171 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterConnector -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md index 7f749ca4aa0..86fd3efa356 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterTaskTrigger -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md index 38b506a7fb7..ea61dde021e 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintService -PrintServiceId $printServiceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintService ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md index 7e4100e2895..197ee9f059f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId -PrintServiceEndpointId $printServiceEndpointId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md index de2bca621a7..adf6f5bdc81 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare -PrinterShareId $printerShareId -Property "id,displayName,capabilities" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare -PrinterShareId $printerShareId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md index 5858445d3f6..8a0136523ac 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShareAllowedGroup -PrinterShareId $printerShareId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md index 7240a9485d8..5a81f2d4a1d 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShareAllowedUser -PrinterShareId $printerShareId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md index d1cbc8bb1f5..8205f866069 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinition ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md index a66b2c7d66a..2de3b1acb83 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md index c6eea7e5a00..f7663fc4b1c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ Event = "jobStarted" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md index 08a58da3fb0..aec818e1f05 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "ShareName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md index c2f891649ab..2cd74d80343 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/groups/{groupId}" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md index 918a47e2912..f91fa79da31 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/{userId}" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md index f3a9d79597f..1cad0619ff7 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "Test TaskDefinitionName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md index 0a0c6fd65e8..711e973d3be 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintConnector -PrintConnectorId $printConnectorId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md index 96f73f7dfb3..e668f49b077 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintPrinter -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md index 6d64058a748..7c1bfeeeb57 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md index 17ea7599727..e935112ba07 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShare -PrinterShareId $printerShareId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md index fc1e97c8f99..289d71d29e4 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -GroupId $groupId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md index b84f151cec7..f43df6c42a2 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -UserId $userId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md index 4e81d9bc7a0..1635f6ab7bf 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md index fa063388434..a59b247caae 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Restore-MgPrintPrinterFactoryDefault -PrinterId $printerId ``` diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md index 681999b7419..6d0a4dae012 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "ConnectorName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md index 7e5ce7234c6..47e46f158bf 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ Name = "PrinterName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md index 43b26922319..555c60800b0 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "PrinterShare Name" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md index 082b91a5924..ff2726a61db 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ DisplayName = "Test TaskDefinitionName" diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md index b278e07cccd..20bc02f8e89 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ Status = @{ diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md index 4e797d9ec23..e824190a622 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId -ExpandProperty "issues" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ExpandProperty "issues" ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md index 477215708a5..e7a08dd2d96 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementIssue -ServiceHealthIssueId $serviceHealthIssueId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementIssue ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md index a4c78d584f9..bd24fe75651 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessage -ServiceUpdateMessageId $serviceUpdateMessageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessage ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md index 719d2282bea..5fb75934157 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md index 1880dd9e7e9..2f3e3883ac4 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId -OutFile $outFileId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md index b81ae2d3eeb..21fcbd96085 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId -OutFile $outFileId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md index 990da59543e..70532db104b 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md index 33e956e36db..6ce9c79a0df 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md index 39d860c4f50..e1b8bb00d7a 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md index 5a25b36003e..6afd980fb7a 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md index 81e5182eca8..da5e56cce34 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Invoke-MgReportServiceAnnouncementIssueIncident -ServiceHealthIssueId $serviceHealthIssueId ``` diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md index 9197303b944..7878925303e 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md index d013108d786..5eabdadc72e 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ MessageIds = @( diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md index 9673276ad1c..f0d0f7ae804 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ GroupIds = @( diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md index 5e401e9f78b..d3075b25d87 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects Get-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md index 3783333a236..ee2aaef43e6 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects Get-MgDirectoryObjectAvailableExtensionProperty ``` diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md index a1cc54bd03a..001d5d0a1c6 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ Ids = @( diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md index f72897e46c9..a5939b6902a 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ SecurityEnabledOnly = $false diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md index 570d24b490a..af2708a84f9 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ SecurityEnabledOnly = $true diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md index d57c95d139b..bbb9f7fe6d7 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects Remove-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md index 8bdb66781c2..2f1b24b0362 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ EntityType = "Group" diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md index 6fece1201c1..12f1ab5b06c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClass -EducationClassId $educationClassId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClass ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md index 13ca9578d61..abe5cc3bf13 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId -ExpandProperty "resources" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md index be9f3c69ebb..c724d68c554 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md index 35af7c3c96b..d4b2b45fa85 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IVSFtBcXz0jxjIEihcR91dS3R7i8Z2IMtxIn9rKbK9Jvurj6jCH-lDbSNatdesrK0PJ5zpZ_-i8HyqkdtLhWD9tewXVArIqQWJA7gJz8z4paG2q0MU9rixrQOTe7WIXikPiBTUPilHuUW-o1k7cvqke3K7llJbU3G7z_O7WGoVGE.l8-2OcBi9ZWAhwhPnXvJ-kyyk8GNb6-H4o6qofP5YBY" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -OutFile $outFileId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Top 3 ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md index bdeb03595ed..fc32a8910e3 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDefault -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md index f349cd0f3a9..9b1e02e5fdd 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxROmLjac48n-iXm5j6n5aQwlsnC-2OvL3lI0Z8M4klERNmJQjnBn7MHqwXZ6L8GlI3VPnya3E-p1bisiZX97jLvQUAopseIYhvnD6v7fiYrk.fVsHempT6X2CiBh6aN9Ex5nVJ71adKdcf-mdke8OHKs" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IdHoweKQs1czM4Ry1LVsNqwIFXftTcRHvgSCbcszvbJHEWDCO3QO7K7zwCM8DdXNepZOa1gqldecjIUM0NFRbGQoQ5yR6RmGnMgtko8TDMOyMH_yg1my82PTXA_t4Nj-DhMDZWvuNTd_lbLeTngc7mIJPMCR2gHN9CSKsW_kw850.UM9tUqwOu5Ln1pnxaP6KdMmfJHszGqY3EKPlQkOiyGs" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2 ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md index 2230546aab2..30af2f38a5f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md @@ -1,35 +1,35 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md index 084839ee5bc..e3597effd46 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentRubric -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md index 7aaf0d0132f..f1e600b3162 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSetting -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md index 80d4845d6db..507043ebab6 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -ExpandProperty "*" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -ExpandProperty "outcomes" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md index 116b6e16c6c..1829880616c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md index 263c1f56070..eb5df2f3fc7 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md @@ -1,35 +1,35 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md index 50aaa7e795f..35af243cc22 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionSubmittedResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md index e93e0aa99e2..4fbb437ee4f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassDelta ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md index 6e948f1e75d..7bca76f2516 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassMember -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md index 2a0fc45ac4c..46e4a7becb7 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassSchool -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md index 3d39f3b2624..32629ada032 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassTeacher -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md index a6287623384..279b8657002 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeAssignment ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md index 6b8e6d4ebb3..8068a52ce2b 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeClass ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md index c059c13a1f8..d1c8989fada 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeRubric -EducationRubricId $educationRubricId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeRubric ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md index cf02332d30e..293ed1f2802 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeSchool ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md index 59a64f1b16b..b2430c52eaa 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchool -EducationSchoolId $educationSchoolId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchool ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md index e36c67bd3fe..0374ae850f0 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolClass -EducationSchoolId $educationSchoolId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md index 3325f8a805e..929cdb7dce8 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolDelta ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md index 9c1e2d47b62..c20bb8e1dd1 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolUser -EducationSchoolId $educationSchoolId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md index 67d44a65112..7130fc90427 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUser -EducationUserId $educationUserId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUser ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md index 0a23d642707..7280733a026 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserAssignment -EducationUserId $educationUserId -ExpandProperty "submissions" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserAssignment -EducationUserId $educationUserId ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md index a04cdde49b3..13679288a92 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserDelta ``` diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md index dab8b063e12..3895cfcfdb3 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserTaughtClass -EducationUserId $educationUserId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserTaughtClass -EducationUserId $educationUserId -OutFile $outFileId ``` diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md index ab741131192..448eba29c41 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md index e9572ac98bb..57848ba8e12 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Invoke-MgReturnEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md index ceb6caf4720..2f3f4d5d05c 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Invoke-MgUnsubmitEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClass.md b/src/Education/Education/examples/v1.0/New-MgEducationClass.md index ea80165b68d..ad6c283d431 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClass.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationClass" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md index 076decd0108..32ac286fe31 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DueDateTime = [System.DateTime]::Parse("2021-09-07T00:00:00Z") diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md index e9437a6114f..ec6100ef30a 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Quizzes" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md index d58ae7287ac..4d77c8097d1 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" @@ -7,7 +7,7 @@ $params = @{ New-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md index 9b3b75992da..ae34d60f513 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -12,7 +12,7 @@ $params = @{ New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -24,7 +24,7 @@ $params = @{ New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -38,7 +38,7 @@ $params = @{ New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -51,7 +51,7 @@ $params = @{ New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false @@ -64,7 +64,7 @@ $params = @{ New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DistributeForStudentWork = $false diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md index f7cfa188a20..a89dd62a554 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -11,7 +11,7 @@ $params = @{ New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -23,7 +23,7 @@ $params = @{ New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -35,7 +35,7 @@ $params = @{ New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -47,7 +47,7 @@ $params = @{ New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ @@ -59,7 +59,7 @@ $params = @{ New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Resource = @{ diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md index af40aabd56b..04e410ff407 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/13015" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md index a2277793d69..31e2847332e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/14011" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md index 990bbfeb56e..871dbe090f0 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Example Credit Rubric" @@ -69,7 +69,7 @@ $params = @{ New-MgEducationMeRubric -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Example Points Rubric" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md index f42b6d8d376..33c908614d6 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationSchool" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md index 7730998f02e..66b714ce19d 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/11006" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md index cbff41d3f34..2e5a5f8359b 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/users/14008" diff --git a/src/Education/Education/examples/v1.0/New-MgEducationUser.md b/src/Education/Education/examples/v1.0/New-MgEducationUser.md index c8ec57c7e0e..4b3836fbcb1 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationUser" diff --git a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md index 088efea9cfa..2d3c4cca650 100644 --- a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Publish-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md index 1f716e1152d..432ba299685 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClass -EducationClassId $educationClassId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md index 3201b2912ad..a8182463d1b 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md index 06a400b1a4d..2d6fd5ec79a 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md index 23ef8ed83d8..5d8cd0d5b46 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationCategoryId $educationCategoryId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md index 104d51149b2..5b33b01e625 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md index c354470239c..37dccfe3771 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md index 6850770cd95..6824e4c6e2e 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md index 6ec78cf1837..a2931f59f86 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationMeRubric -EducationRubricId $educationRubricId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md index 874f846eda4..ad59bc793f3 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationSchool -EducationSchoolId $educationSchoolId ``` diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md index b9fa418cdaf..8d0e9455470 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationUser -EducationUserId $educationUserId ``` diff --git a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md index a1532732bc0..bb311549051 100644 --- a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/education/me/rubrics/ceb3863e-6912-4ea9-ac41-3c2bb7b6672d" diff --git a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md index 78779d45f2d..4e4297253eb 100644 --- a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education Submit-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md index 7943cf64b55..df7dae988e0 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ Description = "History - World History 1" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md index 3d1ce832ce9..b72a0aa953c 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Reading and review test 09.03 #5" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md index 86e07efc7e6..bc84e6af1d2 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ AddedStudentAction = "assignIfOpen" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md index ca32733fec1..3add71e55b1 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ SubmissionAnimationDisabled = $true diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md index 864d7723abb..d66f1afbe2f 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationFeedbackOutcome" @@ -7,7 +7,7 @@ $params = @{ Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationRubricOutcome" @@ -19,7 +19,7 @@ $params = @{ Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ "@odata.type" = "#microsoft.graph.educationPointsOutcome" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md index 42e487c3175..12792d36e0d 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Example Credit Rubric after display name patch" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md index a064593449a..c747e9a6d07 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Fabrikam Arts High School" diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md index 87234708806..bdc4e4a6fda 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Education $params = @{ DisplayName = "Rogelio Cazares" diff --git a/src/Files/Files/examples/v1.0/Get-MgDrive.md b/src/Files/Files/examples/v1.0/Get-MgDrive.md index 6870a9d9b41..93b6d480055 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgDrive.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgDrive -DriveId $driveId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md index ccbfe43f9e0..7aafa4dc968 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md +++ b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgDriveItemChild -DriveId $driveId -DriveItemId $driveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md index 81e08c6f5c5..deee9d1a805 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgGroupDefaultDrive -GroupId $groupId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md index b3fbf105883..401125ae824 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgGroupDrive -GroupId $groupId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md index de5c64b264c..3fb8ce1b462 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId -ExpandProperty "children" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md index fb7bf79a199..3ded65b4129 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgShareSharedDriveItemSharedDriveItem -SharedDriveItemId $sharedDriveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md index 5a967968cec..2e8e03865f0 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgUserDefaultDrive -UserId $userId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Files # A UPN can also be used as -UserId. Get-MgUserDefaultDrive -UserId $userId diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md index 769790a593a..51c94c08495 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files # A UPN can also be used as -UserId. Get-MgUserDrive -UserId $userId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Get-MgUserDrive -UserId $userId ``` diff --git a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md index 1934b9df4cd..63555ba2664 100644 --- a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md +++ b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files $params = @{ Recipients = @( diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md index 2f9632e1fdb..ebfd7562098 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files $params = @{ Comment = "Updating the latest guidelines" diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md index e567156d49b..bae6a147257 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Invoke-MgCheckoutDriveItem -DriveId $driveId -DriveItemId $driveItemId ``` diff --git a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md index 6f7f6cd0e47..8a45306d33f 100644 --- a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md +++ b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Files Restore-MgDriveItemVersion -DriveId $driveId -DriveItemId $driveItemId -DriveItemVersionId $driveItemVersionId ``` diff --git a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md index e12d6ccd193..93ffc3ce8e5 100644 --- a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Add-MgGroupFavorite -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md index 3699c804d50..f8924586b23 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupAcceptedSender -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md index 4eba22bc88d..c221f9bd228 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md index abcc46f439f..487110e6fe7 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md index 9c8ce98afaa..3184cd929b3 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupDelta ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md index d8369504bfd..da42e7af79b 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicy ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md index 72e24439c37..2b4320e659f 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicyByGroup -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md index fcb1266ddb6..eba19f1aea2 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupMemberOf -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md index ed3e24bb0e7..2419daa4ea8 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupPermissionGrant -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md index 3445c0fe94c..9f7153c1e45 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupPhoto -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md index c6dce036c0e..466ec84e531 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupRejectedSender -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md index 749535c9985..76c0ba16a4b 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md index ee952b47501..e03e3b8151b 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md index 1b329ad1ece..9852ecbcc77 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPostAttachment -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md index f10f25a3cbc..9405fa8183f 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md index 4e36ba2e4f3..70d757b4a55 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupTransitiveMember -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md index 803a1de3e00..bc9164a1345 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupTransitiveMemberOf -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md index 8b806ce8ad0..096b0727aad 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Comment = "comment-value" diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md index ecb8c11437d..2a4971d8df4 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Invoke-MgGraphGroup -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md index 09d7c9044af..f7bd3836266 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Invoke-MgRenewGroup -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md index dc83003b135..35aa3994de4 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ @@ -12,7 +12,7 @@ $params = @{ Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ @@ -32,7 +32,7 @@ $params = @{ Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ @@ -55,7 +55,7 @@ $params = @{ Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md index 9598e6f1a51..6b9c8efaa7c 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Post = @{ diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md index 311524dcd25..f9551f9d1b5 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Invoke-MgSubscribeGroupByMail -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md index 47be20ac9bc..e32681d0bed 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/alexd@contoso.com" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md index a8461f4e755..dc149303111 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Topic = "Take your wellness days and rest" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md index 5a099de6958..9d50d4fe18e 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Topic = "Take your wellness days and rest" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md index 672b7773f93..2ff8ba11fe1 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ GroupLifetimeInDays = 100 diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md index 7e3e2e7c5c6..010302ab919 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md index 3a41dc6df61..739999691e0 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/alexd@contoso.com" diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md index f9ea04d55d9..b26a2d152ce 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ Topic = "New Conversation Thread Topic" diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md index 66fbffecce4..71f6b469b1d 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md index 0dec0a542f5..ba101afb543 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupFavorite -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md index c03a94a7d5d..e47e357278b 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md index b4929c5045c..0169b60e612 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupMemberByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md index e219bc7bf38..4f5faf5a49a 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupOwnerByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md index 10b2c8ba2e7..f163ba0e990 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` diff --git a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md index 5c0a624455c..26b816a4792 100644 --- a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md +++ b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups Reset-MgGroupUnseenCount -GroupId $groupId ``` diff --git a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md index 9ee2ffd183e..e07f605e0bd 100644 --- a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md +++ b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ AddLicenses = @( @@ -23,7 +23,7 @@ $params = @{ Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ AddLicenses = @( diff --git a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md index a2739b7bbdb..ae7a157d6cc 100644 --- a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md +++ b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ DisplayName = "Myprefix_test_mysuffix" diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md index fbf29e22aa8..523d6507d33 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ GroupLifetimeInDays = 180 diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md index e2a392d3be7..dd7b691ce62 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ OriginalStartTimeZone = "originalStartTimeZone-value" diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md index 2c481c6b70a..f2073990301 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Groups $params = @{ "@odata.type" = "Microsoft.OutlookServices.OpenTypeExtension" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md index 333e2912118..606470d37fa 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Confirm-MgDomain -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md index b0959c6b286..5654009400b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactDelta ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md index 8dbb53ee975..a9a73caa6ea 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactDirectReport -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md index 8b77227bb4e..1dafc8388b0 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactManager -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md index 5b3de72fbf6..726ea1bdad9 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactMemberOf -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md index 956f668130c..944d97cc019 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactTransitiveMemberOf -OrgContactId $orgContactId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md index 4d035db3146..7e5a9e665ff 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContract -ContractId $contractId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContract ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md index 9ea061c28aa..a8b544ac254 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md @@ -1,35 +1,35 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Search "displayName:Android" -CountVariable CountVar -ConsistencyLevel eventual ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -DeviceId $deviceId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -DeviceId $deviceId -Property "id,extensionAttributes" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Filter "extensionAttributes/extensionAttribute1 eq 'BYOD-Device'" -CountVariable CountVar -ConsistencyLevel eventual ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Property "id,extensionAttributes" ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Filter "startswith(displayName, 'a')" -CountVariable CountVar -Top 1 -Sort "displayName" -ConsistencyLevel eventual ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md index e7e77938dc6..65b2b5ae558 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceMemberOf -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md index 7b7e3ab4e94..60b6270efc6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceRegisteredOwner -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md index 0c13aa48955..52eb4c8c431 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceRegisteredUser -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md index d302cdb445d..fd9e3deb5d9 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceTransitiveMemberOf -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md index be02bdc0d69..38dc5f336d5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnit ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md index 5201718f2b3..17ceadbfb25 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitMember -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md index b8ff1f6e9ef..1734e44e850 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md index 749987644b4..7e13091f1f7 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md index 14a4c00deeb..f77a19dedde 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId -Filter "domains/any(x: x/id eq 'contoso.com')" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md index 2d1902ba9b2..546e0150f7a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleDelta ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md index e2bd8c52d4d..69eef37bf87 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleScopedMember -DirectoryRoleId $directoryRoleId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md index b5cd1a94ef5..311c409d55d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleTemplate -DirectoryRoleTemplateId $directoryRoleTemplateId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleTemplate ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md index af1dbea3ff6..2ef53aa351b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainNameReference -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md index ac65b819f86..12e121b1e60 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainServiceConfigurationRecord -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md index b809ae36ac5..a483d9ab0f2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainVerificationDnsRecord -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md index 80768881c5d..58afc7a29b6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganization -OrganizationId $organizationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganization ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md index c90e2436d0b..ddbbe3f52c8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md index 7a5a12789af..6174f4ce606 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md index 7af9390fdb2..01238c45c8c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -OutFile $outFileId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md index b5b83a0435c..d1e85e29381 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ DisableUserAccounts = $true diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md index 94d74c185bd..170b67a2b84 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ AccountEnabled = $false diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md index 50872763d7f..2ebe90eb22e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md index 1a65697521a..06e6b5f2827 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/{id}" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md index 423ffacbaa5..5fc149ba783 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ DisplayName = "Seattle District Technical Schools" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md index 2e3cf6f591a..84fd36785f1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/groups/{id}" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md index f24ac3bfc86..187a1c8d21c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ RoleId = "roleId-value" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md index 1e6f041d73c..a15d1170287 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ "@odata.type" = "microsoft.graph.samlOrWsFedExternalDomainFederation" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md index 6e3611cda4f..89d43ecffdc 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ RoleTemplateId = "fe930be7-5e62-47db-91af-98c3a49a38b1" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md index d34f48ea7c4..c1b3f3ca703 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ Id = "contoso.com" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md index ffced58046e..3fd169e1104 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ BackgroundColor = "#00000F" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md index 5011401a3f9..5c954676d20 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDevice -DeviceId $deviceId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md index 0bc3013e80a..9ee57901ea7 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md index dea1d746b37..574a0afd03c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md index 535eedffa8d..0c7e475423e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md index 0ce3cf694df..d6d041bd10e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md index 0b0bf1458b1..737959a973b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md index a384339ad43..114c7445897 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md index aff72b9dbb2..a66bc3a5d30 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryRoleMemberByRef -DirectoryRoleId $directoryRoleId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md index 56ec6f1a644..5d9f4389d39 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDomain -DomainId $domainId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md index 97ed23aa0a8..c4eef6360fb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md index b0176d85346..31a6ea139e6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Restore-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md index 19745d3f18e..941d483208f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md @@ -1,12 +1,12 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ } Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ AccountEnabled = $false diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md index d8937a28605..766ae239bef 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ DisplayName = "Greater Seattle District Technical Schools" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md index e69d257fa86..1a79ba174dc 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ IsDefault = $true diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md index e93fbd6ae00..9e77822f663 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ MarketingNotificationEmails = @( diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md index 1d45db05b5e..de9d27fcd3b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ SignInPageText = "Default" diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md index ef585cf14f4..4707902bf0d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ BackgroundColor = "#00000F" @@ -8,7 +8,7 @@ $params = @{ Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ SignInPageText = "Welcome to Contoso France." diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index f534d1a7f57..7d410e1c1a2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md index f0d27fa8dc4..a2ef9d71b20 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md index e54690b019f..321d6a57051 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement -AccessPackageId $accessPackageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md index 9043fbabebb..f08018df317 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId -ApprovalStageId $approvalStageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md index b5e93300fac..b323d15e0d1 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md index e13f6a5881d..6118c9e9fa0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentPolicy ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md index 41dd292fdc4..cdd4cc21314 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md index 0fe385ace98..215a09acdf8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementCatalog ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md index 58a574d2e96..cbc4370214d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementConnectedOrganization ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md index eac63df616e..cf7156ddd23 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementSetting ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md index d0cdecfa790..e8f42f5aa1c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -Filter "contains(scope/microsoft.graph.accessReviewQueryScope/query, './members')" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -Top 100 -Skip 0 ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md index f3103e0d248..2f949a49289 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md index ab40617d068..b8a381e3482 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 45b072d7450..e6fd1052b59 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index c3a9db88ef9..35f9c76731a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 073a29df038..350e098ace0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 6a419298ca2..0af243b12f7 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinition -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinition ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md index 00066239028..50426124db7 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md index 11af42188bf..079fc60524f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId -Filter "userConsentRequests/any(u:u/status eq 'InProgress')" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -Filter "userConsentRequests/any (u:u/status eq 'InProgress')" ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md index 044e428f72b..5c358acfc2f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId -Filter " (status eq 'Completed')" ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md index 0aba9b0f099..5f01ac05db3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md index 945bc31f991..fc828daa7a4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreementFile -AgreementId $agreementId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md index e02182fcff0..ccbe2772f0f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance # A UPN can also be used as -UserId. Get-MgUserAgreementAcceptance -UserId $userId diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md index 76e697936ce..95859aaf1bd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md index 3baf7de009b..3e40b8b7812 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md index 84be30c6e6d..59984e70498 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "sales reps" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md index 87c28f8db9a..3d845993319 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "policy for external access requests" @@ -117,7 +117,7 @@ $params = @{ New-MgEntitlementManagementAssignmentPolicy -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "New Policy" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md index be6d6d71dda..486847f1bd8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "AdminAdd" @@ -12,7 +12,7 @@ $params = @{ New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "AdminAdd" @@ -25,7 +25,7 @@ $params = @{ New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "AdminRemove" @@ -36,7 +36,7 @@ $params = @{ New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "userAdd" @@ -47,7 +47,7 @@ $params = @{ New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ RequestType = "userAdd" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md index 69f4f870f64..ceef55f6867 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "sales" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md index c331095fb22..aa3920ee24b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Connected organization name" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index 2d35f0a5d1c..b1b0dfa762f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/{id}" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 37f5bf3e9be..a2f711c1b33 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/users/{id}" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md index 256f0be7cbb..de225df6c20 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Review employee access to LinkedIn" @@ -62,7 +62,7 @@ $params = @{ New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Group Multi-stage Access Review" @@ -134,7 +134,7 @@ $params = @{ New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Review inactive guests on teams" @@ -188,7 +188,7 @@ $params = @{ New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Test create" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md index b701ea1f26a..8312aade5ad 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Last quarter's group reviews April 2021" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md index 2cab5af9752..ac411dcc585 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId -AccessReviewHistoryInstanceId $accessReviewHistoryInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md index 5db703ed208..bc0b060709b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Contoso ToU for guest users" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md index 5aeb765cbee..44387fc9efe 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md index bcebcafeae3..799537a74b8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md index 727d1abb239..caa98a6bee2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md index 5f65ece4123..6166a899fda 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md index ce18e12ed38..d53d0ca8cad 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index af31477811f..345d572a973 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 348b87c18aa..1f9ec17ac9a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md index 91f85d45ede..b9e89bf914c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md index 38c865be699..71fb04bbd67 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 80322bb4639..843f9be8da1 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md index 6f20653b577..551b513ff21 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md index c95d19d097b..4ca4ae16a52 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 1f03df5cc33..037410444ed 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 721bc6f83b2..eb67c20650c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md index 73e8365ac83..20f01907116 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Access Package New Name" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md index e29a591b854..882de977eca 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Catalog One" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md index eaf5b0dcda6..a78e73452c9 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "Connected organization new name" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md index 09d12c8aad0..ff0536acfc8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ ExternalUserLifecycleAction = "None" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 56659c50fe2..bd88e9fbae0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Scope = @{ diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 05a1db9da07..210122e2139 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ "@odata.type" = "#microsoft.graph.accessReviewStage" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 4f301cadbf4..e61e165091d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" @@ -8,7 +8,7 @@ $params = @{ Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" @@ -17,7 +17,7 @@ $params = @{ Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ Decision = "Approve" diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md index 274f6b3742b..8be48d5cb20 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ DisplayName = "All Contoso volunteers - Terms of use" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md index d7075154d90..a26f56f1e46 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ UserIds = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md index b950aa60866..ba95c252bde 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgDataPolicyOperation -DataPolicyOperationId $dataPolicyOperationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md index ef20055d161..3bf281da3d7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityApiConnector ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md index be4c80f6b8a..cd58bf1e82c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow -ExpandProperty "identityProviders" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md index 1ce1780eed9..d75d630c190 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowIdentityProvider -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md index 371f3ec7569..2e2819b37b3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md index 6170c996b0b..ad13acff2e2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguageDefaultPageContent -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -OutFile $outFileId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md index b464fb12895..268b2bc8055 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguageOverridePage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md index b779f2b9b38..1a20312e7ef 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -ExpandProperty "userAttribute" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -ExpandProperty "userAttribute" ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index c433b92fb6a..984ea111d95 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md index 8c7a76989f6..8d5693d43f6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md @@ -1,40 +1,40 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderId $identityProviderId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -OutFile $outFileId ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` ### Example 8 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md index 24fae7780ef..f8aae8f9ce5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityUserFlowAttribute ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md index 6766990ddec..5d9a2186457 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId -Property "key" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -Filter "deviceId eq '1ab40ab2-32a8-4b00-b6b5-ba724e407de9'" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md index 1bd7c7319b9..991e8feffc8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md @@ -1,30 +1,30 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId -ExpandProperty "results" ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md index 17ee267ab5b..831fe2ac595 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrant ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md index 6fb180910df..2c5dda36ad9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrantDelta ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md index a5de0b630b5..f13eb2c02c8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId -CertificateBasedAuthConfigurationId $certificateBasedAuthConfigurationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md index 9222ad25a83..b9ae26353ef 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyActivityBasedTimeoutPolicy ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md index bc65160e45b..340a78a3b92 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAdminConsentRequestPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md index e21422bf2f8..520e1b9d0bf 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationFlowPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md index 4a7924d6b37..cdd930e611c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index bcdd1d78511..1a856eb7ed7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md index 1dd6d634705..15728f650ef 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyClaimMappingPolicy ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md index 6bb7a34c22b..bcdd37e3839 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md index d662c5a59f0..142f1bef1c1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyDefault ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md index 926ee1b747b..567cb0a67b6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyPartner ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md index a60b143329e..45bced25fae 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -ExpandProperty "appliesTo" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md index cc691ddece6..272bdaaf1c2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyHomeRealmDiscoveryPolicy ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index f04672b4f69..593317ba3ca 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md index cae50e7a734..0ae5066eecb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md index af31615c408..dd4ba360124 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md index ec1740c8faa..73ac0083756 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md index ceb3487b80e..f5e332889da 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -ExpandProperty "effectiveRules,rules" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'Directory'" -ExpandProperty "rules" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole'" ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md index 976d3b80788..9e8faef9250 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId -ExpandProperty "policy(`$expand=rules)" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole' and roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "policy(`$expand=rules)" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'Directory'" ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md index fe42e59397a..940e9b857bd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md index 4ecba283513..25f37e2c39b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenIssuancePolicy ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md index a4b9411aff4..c639a4d2bc3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenLifetimePolicy ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md index fe9425e208d..b4546dbc301 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskDetection -RiskDetectionId $riskDetectionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskDetection ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md index e2f03b57111..fcabc5916c7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUser -RiskyUserId $riskyUserId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUser ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md index ece968596e9..cf17cb91b90 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md index 9414284cfb7..1f717916c2a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationEmailMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md index 8b4e7b12459..f805e58aef2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 6198396516c..8c6683fbc87 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md index 0121dc717a6..6a99e84f01a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationOperation -UserId $userId -LongRunningOperationId $longRunningOperationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md index 0c84dbcf482..290bab80c77 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPasswordMethod -UserId $userId -PasswordAuthenticationMethodId $passwordAuthenticationMethodId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPasswordMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md index 4c71e5276ab..638d34c5782 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPhoneMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md index 342bcc950d3..449124deb82 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md index 996c9b813df..2ac213afec5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md index 3a21ff51437..657eaef7804 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md index dd238e022d3..68d45fafed4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType -OutFile $outFileId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md index 093e06078cc..d780646579c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ UserIds = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md index f9cf48005ea..5d9fc04b1c7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md index c4a5b11235b..fe3a33d24ce 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Test API" @@ -13,7 +13,7 @@ $params = @{ New-MgIdentityApiConnector -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Test API" @@ -27,7 +27,7 @@ $params = @{ New-MgIdentityApiConnector -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Test API" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md index 0a9a5cfe82c..e46fee3a2e7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "UserFlowWithAPIConnector" @@ -17,7 +17,7 @@ $params = @{ New-MgIdentityB2XUserFlow -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "Partner" @@ -34,7 +34,7 @@ $params = @{ New-MgIdentityB2XUserFlow -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "Partner" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md index 54b0bd11e87..b85fb78473a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ IsOptional = $false diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md index dba51b443ab..570b76aba58 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "microsoft.graph.appleManagedIdentityProvider" @@ -12,7 +12,7 @@ $params = @{ New-MgIdentityProvider -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "microsoft.graph.socialIdentityProvider" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md index e49ac549cc1..ada5e5f86d6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Hobby" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md index 39a09bff64c..fd35e3e29f3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.emailFileAssessmentRequest" @@ -11,7 +11,7 @@ $params = @{ New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.fileAssessmentRequest" @@ -23,7 +23,7 @@ $params = @{ New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.mailAssessmentRequest" @@ -35,7 +35,7 @@ $params = @{ New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.urlAssessmentRequest" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md index e20f6adcec9..e102ac80673 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ ClientId = "ef969797-201d-4f6b-960c-e9ed5f31dab5" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md index 2ab9e0321c8..1adb903bbb9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md index 7352db7acfe..e73a6f89f8d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md index 47ce8af5ba0..83e1bf586e3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ TenantId = "3d0f5dec-5d3d-455c-8016-e2af1ae4d31a" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md index e03bc5665ad..d7869675802 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "PassthroughAuthentication rollout policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md index a9bfb6fbce7..b6b4ef25769 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.id" = "https://graph.microsoft.com/v1.0/directoryObjects/2441b489-4f12-4882-b039-8f6006bd66da" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md index fe3e8ecf9cd..46020bab5f4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md index ce1b434f9bb..c5e2d21d4df 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Id = "my-custom-consent-policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md index 19760e67d2d..7667f1cda6d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PermissionType = "delegated" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md index 0fcb85af701..d1ed196cf7c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PermissionType = "delegated" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md index 138d793e713..daffdf53fdc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md index 5415f5ff656..dcde45e6050 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md index 1b58d931d5b..6f54d561d6d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ EmailAddress = "kim@contoso.com" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md index 794520cef38..c491094dbb4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PhoneNumber = "+1 2065555555" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md index aa54c1fd5d3..eb7194bf047 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ StartDateTime = [System.DateTime]::Parse("2022-06-05T00:00:00.000Z") diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md index f441e383f2b..32e61a1c7c3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md index a128b780187..dff0a0e40d3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md index a16ed6fe010..b34f82f10f5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md index 9c5318d9e40..74386102608 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md index 58d93e9ae4a..7477c98d1aa 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md index 07cb4f13f51..186878776f0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md index 0a07a4e1283..f98367214d0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 842f81363e8..e0c8c7ba91d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md index 2dc41b07875..6c6ed0c13a7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md index 9a805a74594..54daa32654a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md index 3f159e203cd..2cda75a58ab 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 3d3cda8f27b..28edacc5c33 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -DirectoryObjectId $directoryObjectId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md index 3435b7c5b1b..d7fb3c12087 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md index 2b1c9ab0400..628f87a04a2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md index 912d0e8e4e9..b2ded98e9ce 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md index 62c808fa010..c5b9c98ec9d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md index e1526b82d47..32b7eb1dafc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md index 4190f828bc2..5074e84036b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md index 32d2b7c92f8..1c1936772a8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md index c8501c5ad62..1011b6aaeee 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 904d20b2b37..ff88d86debe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId -MicrosoftAuthenticatorAuthenticationMethodId $microsoftAuthenticatorAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md index 573e07cd4f5..dc67e4598eb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Remove-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md index 310be3c721f..95a7d59cab1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md index a7ff328f33d..08b72aed538 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md index 049aca7545f..01617bc0eaf 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md index eee5a3f89ad..16906c7b561 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault ``` diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md index c279c85ed9e..f607d2d7369 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ LocalizedStrings = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 2177a9167d6..39a7a1646e8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ NewAssignmentOrder = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md index 976e367a37e..15ceea0a39b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ AuthenticationConfiguration = @{ @@ -11,7 +11,7 @@ $params = @{ Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "New Test API" @@ -25,7 +25,7 @@ $params = @{ Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ AuthenticationConfiguration = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md index 316d4bef11c..c2f868837e5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ UserInputType = "textBox" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md index ba487d9c509..28f43034fb2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.socialIdentityProvider" @@ -8,7 +8,7 @@ $params = @{ Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ ClientSecret = "1111111111111" @@ -16,7 +16,7 @@ $params = @{ Update-MgIdentityProvider -IdentityProviderId $identityProviderId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.socialIdentityProvider" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md index 2fb92849746..5acc19aa1ad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Description = "Your new hobby" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md index 2351251d972..cf0efa32513 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Scope = "User.ReadBasic.All Group.ReadWrite.All" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md index 559c2f5f54a..2a41758531c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md index e98d6cca8c0..2f0dbc1d7dc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ SelfServiceSignUp = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md index 394dc22893c..59d31ae9b4c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.context" = "https://graph.microsoft.com/v1.0/$metadata#authenticationMethodsPolicy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 5ea41be65bf..e17b2a2bef8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.emailAuthenticationMethodConfiguration" @@ -8,7 +8,7 @@ $params = @{ Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.fido2AuthenticationMethodConfiguration" @@ -18,7 +18,7 @@ $params = @{ Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" @@ -27,7 +27,7 @@ $params = @{ Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md index b0765a611b4..ea5b4efceff 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "UpdateClaimsPolicy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md index b8ac98af3ae..4cd8ebb4f84 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "CrossTenantAccessPolicy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md index c6a0c571c8e..630526d0f06 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ B2bCollaborationOutbound = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md index 377bee39382..acede6a3384 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ InboundTrust = @{ diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md index 3a4c6ea1410..1635df117ba 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "PasswordHashSync Rollout Policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md index ba41a93d1ce..26e0daa2825 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 37f4225a70d..e8c83bda37c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ IsEnabled = $false diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md index 632343a64e5..a1668526158 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ DisplayName = "Custom permission grant policy" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md index ad2735afa02..68aadbaa1ad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ "@odata.type" = "#microsoft.graph.unifiedRoleManagementPolicyExpirationRule" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md index f1480824f40..29887e5a041 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md index 653208d70a9..cf99ac4252a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ Definition = @( diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md index fbe17de5237..9e3c96fbb2d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ EmailAddress = "kim@contoso.com" diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md index 2af86b7fe12..ef08ab1401c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ PhoneNumber = "+1 2065555554" diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md index 5b2e11edf56..09b2c7db8c1 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserInferenceClassificationOverride -UserId $userId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md index d4284255d15..de848b97c64 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md @@ -1,17 +1,17 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md index 3f82fe798f4..071f125f52f 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md index 9f8ac847c95..4386c1a6bc2 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md index 7584487d170..2daab704ef0 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md index d0ec234b4ca..b455cd8075f 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md @@ -1,29 +1,29 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "internetMessageHeaders" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "subject,body,bodyPreview,uniqueBody" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -Property "sender,subject" diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md index 3a335b2e2f2..6d071fe7e45 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md @@ -1,41 +1,41 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md index cad8751b65a..6836e4f401d 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md index 81373fc0b8f..83dbd1bc536 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ ClassifyAs = "focused" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md index 86428b05183..aec85f5293a 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "Clutter" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md index 1e6bd43d9ba..15f5e9908fd 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "displayName-value" @@ -9,7 +9,7 @@ $params = @{ New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "microsoft.graph.mailSearchFolder" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md index cf469e90e30..db4b2fc3fc1 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ ReceivedDateTime = [System.DateTime]::Parse("datetime-value") diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md index 8d56de19ddd..f325d4339de 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "From partner" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md index 8f6c2d8c122..1f69077c702 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ Subject = "Did you see last night's game?" @@ -20,7 +20,7 @@ $params = @{ New-MgUserMessage -UserId $userId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ Subject = "9/8/2018: concert" diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md index 8f34b7dc6a2..9646a505a5f 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "microsoft.graph.fileAttachment" @@ -13,7 +13,7 @@ $params = @{ New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "#microsoft.graph.fileAttachment" diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md index 7d66082cbe3..0a334e715ef 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md index 5a735e9b969..589b783a4d4 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md index 7708ad05483..360c5d39f98 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md index 6fdb890c241..c4751b3bb57 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessage -UserId $userId -MessageId $messageId diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md index 42ae5bf6c33..0eb829dadc9 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md index dd1b0310b36..96ab1b42c8f 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ ClassifyAs = "focused" diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md index bdf1316e581..bcbf2f8bfe6 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "displayName-value" @@ -8,7 +8,7 @@ $params = @{ Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ "@odata.type" = "microsoft.graph.mailSearchFolder" diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md index 605f003e950..1fec0c700db 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ DisplayName = "Important from partner" diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md index b11ce2d33fc..10e184c9799 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ IsRead = $true @@ -8,7 +8,7 @@ $params = @{ Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Mail $params = @{ Subject = "subject-value" diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md index 05c1ab754b7..99c91bff4b8 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md @@ -1,17 +1,17 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md index 31d46778861..dd1d412cb27 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md index 44daad71305..ceff548e6a9 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md index 38cdba5f8b3..b65550c1f0f 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteOperation -UserId $userId -OnenoteOperationId $onenoteOperationId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md index c6cdfe2ceb6..2b54f582860 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSection -UserId $userId -OnenoteSectionId $onenoteSectionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSection -UserId $userId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md index 05d799a901f..19b8a8c6c67 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSectionGroup -UserId $userId diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md index 8186bb09d2a..db07955a518 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md index eea843256b6..6fa7d7c84f6 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "My Private notebook" diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md index d2477327e1e..303950047de 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "Section name" diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md index a895e33f346..69733e7ceb7 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "Section group name" diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md index ca20d69074c..b106f9b3fe9 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes $params = @{ DisplayName = "Section name" diff --git a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md index 9e2eaeb93f1..38180c8b3fa 100644 --- a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md +++ b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Remove-MgUserOnenotePage -UserId $userId -OnenotePageId $onenotePageId diff --git a/src/People/People/examples/v1.0/Get-MgUserPerson.md b/src/People/People/examples/v1.0/Get-MgUserPerson.md index 9174033463b..7de9339cb8c 100644 --- a/src/People/People/examples/v1.0/Get-MgUserPerson.md +++ b/src/People/People/examples/v1.0/Get-MgUserPerson.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserPerson -UserId $userId diff --git a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md index f083d68161b..2734f0d0630 100644 --- a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md +++ b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserUsedInsight -UserId $userId -Sort "LastUsed/LastAccessedDateTime desc" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserUsedInsight -UserId $userId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md index ee5f7efbb0b..8bbcb5cf72e 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContact -UserId $userId -ContactId $contactId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContact -UserId $userId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md index f2d0284baf1..6b3a0528aa8 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolder -UserId $userId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md index dc99ff6715a..2986883153c 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md index 97d2545d40d..bfa8b0d531d 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md index 8410ad0f243..e4b155d2590 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ GivenName = "Pavel" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md index c8ffb03b89d..2aa943b1c23 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ ParentFolderId = "AQMkADIxYjJiYgEzLTFmNjYALTRjYTMtODA1NC0wZDkxZGNmOTcxNTQALgAAA8RJzXYaLKZPlmn0ge0edZkBADa3qi2IMXRNg6RwQSHe_F8AAAIBDgAAAA==" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md index 40b12df6671..da7f5bd83f7 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ DisplayName = "Family" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md index 6708559bdc9..ebfcacef34a 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ ParentFolderId = "parentFolderId-value" diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md index e076f8a8289..3e8b3ca1804 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Remove-MgUserContact -UserId $userId -ContactId $contactId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md index 148d3205dc8..af28c84d221 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Remove-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md index 3ab70f92d82..0b9480b25fb 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ HomeAddress = @{ diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md index 3eef6f035de..19e76238c5b 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ ParentFolderId = "parentFolderId-value" diff --git a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md index a98ed179ad1..22dd6e3d15b 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgGroupPlannerPlan -GroupId $groupId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md index 0224144bd8b..713ee09ed31 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlanner ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md index dc477fd5cdf..53660263266 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucket ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucket -PlannerBucketId $plannerBucketId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md index 1c663f51123..982a483bdaa 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucketTask -PlannerBucketId $plannerBucketId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md index 9991c60b5d7..c9b54db0db3 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlan -PlannerPlanId $plannerPlanId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlan ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md index 49bec75952a..1a3b8da4e1f 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanBucket -PlannerPlanId $plannerPlanId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md index 210e561949e..fffbbfc3237 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md index 18f430d8011..3b9f65432bc 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanTask -PlannerPlanId $plannerPlanId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md index 8c096d04310..0a1a591f7b9 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTask -PlannerTaskId $plannerTaskId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTask ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md index 68df60e31af..d2ea0ebcf04 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md index e0d88d31403..ea7a4414202 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md index eeddf87decd..36d4e1300d4 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md index ec360648cee..73ee527ce92 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId ``` diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md index fc97294181e..593d898cf9e 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner # A UPN can also be used as -UserId. Get-MgUserPlannerPlan -UserId $userId diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md index 6a3808d068c..66e8fdf6400 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner # A UPN can also be used as -UserId. Get-MgUserPlannerTask -UserId $userId diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md index 05dda00a05c..ab2eabd4283 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ Name = "Advertising" diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md index 52cbacaed2a..3a20581ad83 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ Owner = "ebf3b108-5234-4e22-b93d-656d7dae5874" diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md index 69c062bade2..881cc621916 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ PlanId = "xqQg5FS2LkCp935s-FIFm2QAFkHM" diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md index 97060b273a3..cefe18482ae 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerBucket -PlannerBucketId $plannerBucketId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md index 8948cabd2c0..0c78ca23263 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerPlan -PlannerPlanId $plannerPlanId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md index 1ec81169e97..c8c6064fddc 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerTask -PlannerTaskId $plannerTaskId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md index e0ff0844663..4cdc762db8c 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ Name = "Development" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md index 597926d6514..5eb99c5578c 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ Title = "title-value" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md index 68f7fb0b5b0..83e46acfe38 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ SharedWith = @{ diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md index 52af9c33d08..19d5f5975cd 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ Assignments = @{ diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md index 4c0b8c88fd7..5c40826904a 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ OrderHintsByAssignee = @{ diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md index c948a794933..dd7237a1ffa 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ OrderHint = "A6673H Ejkl!" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md index c60c06865fc..0b46afa4008 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ PreviewType = "noPreview" diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md index c7a1b6d051a..6c347812d4a 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Planner $params = @{ OrderHint = "A6673H Ejkl!" diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md index a53cd9d1933..0d8bd19e69b 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogDirectoryAudit -DirectoryAuditId $directoryAuditId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogDirectoryAudit ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md index 1b5ab113835..520dd00faeb 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogProvisioning ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogProvisioning ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md index 6e6b9956758..751b8f46b16 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn -SignInId $signInId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn -Filter "startsWith(appDisplayName,'Graph')" -Top 10 ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md index c714d49e802..c5ba5fa586d 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByPrinter -PrintUsageByPrinterId $printUsageByPrinterId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByPrinter ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md index 2c915071165..0ae385cc5f1 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByUser -PrintUsageByUserId $printUsageByUserId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByUser ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md index c5af1250780..f19f605f27c 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgReportMonthlyPrintUsageByPrinter ``` diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md index cd453d38d30..2e4165d3f4d 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Reports Get-MgReportMonthlyPrintUsageByUser ``` diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md index 1afdcdca6e2..60e80f05d4b 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions Get-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions Get-MgSchemaExtension -Filter "id eq 'graphlearn_test'" ``` diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md index 621712f6793..8ee08f44815 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Id = "graphlearn_courses" @@ -25,7 +25,7 @@ $params = @{ New-MgSchemaExtension -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Id = "courses" @@ -51,7 +51,7 @@ $params = @{ New-MgSchemaExtension -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Id = "courses" diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md index 06490fe5694..78b5b2dbd2f 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions Remove-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md index 50a5c2a5368..f78257ff2dc 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" @@ -25,7 +25,7 @@ $params = @{ Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md index a51608ad906..b90e294d292 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnection ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md index 33ea6a98318..625d0f8fa88 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md index c195949ded4..ccab4044713 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md index 69162ecb857..0ea7547c811 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionOperation -ExternalConnectionId $externalConnectionId -ConnectionOperationId $connectionOperationId ``` diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md index 909a7715aec..e09659af1e8 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionSchema -ExternalConnectionId $externalConnectionId ``` diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md index 6419a6cb0de..773972673ed 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "contosohr" diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md index 75653ab7f39..3ce20940f54 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "31bea3d537902000" diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md index a55dda2589c..34d560a9d10 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "e5477431-1038-484e-bf69-1dfedb97a110" @@ -8,7 +8,7 @@ $params = @{ New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "e811976d-83df-4cbd-8b9b-5215b18aa874" @@ -17,7 +17,7 @@ $params = @{ New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Id = "1431b9c38ee647f6a" diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md index 61fa06bfc6c..37f49c496c1 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md index 76118170771..ae271f9df9c 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md index e041359f8ed..f13eb1f9f5c 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -IdentityId $identityId ``` diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md index f2502bd9870..82927357365 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md index 4a3629d755e..3e7058af164 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Name = "Contoso HR Service Tickets" diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md index 71badded947..bd8144399e6 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ DisplayName = "Contoso Marketing" diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md index bfa6c384583..40c0b3e507b 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Search $params = @{ Acl = @( diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 2b9cf3c16b4..80f0412d3a3 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index e18c297e3b5..2e0e8a94c9d 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index c2c5a48a8d2..f3b521541a3 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ TagsToAdd = @( diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index 3b0f8418e84..b1594a89319 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ Search = @{ diff --git a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md index 70f0a257c93..35c20a1cc76 100644 --- a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Close-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md index 099f86e789b..7979802a2e5 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityAlert -AlertId $alertId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityAlert ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md index f5b0a884e22..5ecd041f14f 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCase ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md index deb8bb0dc23..343af34d913 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md index 054d934fca5..c74e95bed6e 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index f16924a66bd..d501e914189 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index a55ad7e4a35..8cbd3cd8278 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 047ca92e68a..70df5202271 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index b8b37734650..e6fd6468e29 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" -OutFile $outFileId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -ExpandProperty "dataSource" ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md index 0b6f069bccc..5f1d042bb65 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId -CaseOperationId $caseOperationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md index d8fc64a2e74..17345fdce02 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index becf267f19f..87edebf3741 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md index c330bc76b68..c768db77f31 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index cf16513303c..b0e3f5ef54f 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -OutFile $outFileId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md index 799e222ba62..a94e0213dd2 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md index 469d82783c8..8ce9f1104e1 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md index 406f721fa84..16b3afebe91 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md index 8c9b9df5a2e..09ea2e78c13 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md index b614e74f7d4..248c476e687 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md index 15f8c758ab3..cb976dd98d6 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScore -SecureScoreId $secureScoreId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScore -Top 1 ``` diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md index 33965f940dc..e276a01647d 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScoreControlProfile ``` diff --git a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md index e6d27df293b..ebec0a5f883 100644 --- a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Initialize-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md index 07e67503d62..f6c39fe3082 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index 02e16aa28c4..afdbd2e8a29 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md index 64ef4525245..506b5c3e0aa 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Invoke-MgReopenSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md index 3adb979e55f..934645f5060 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "CONTOSO LITIGATION-005" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md index 7392ef693e7..472724e53ae 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ Email = "AdeleV@contoso.com" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index d7e83425c65..cdc95e04675 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ Site = @{ diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 65152c41329..84760272330 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ Group = @{ @@ -10,7 +10,7 @@ $params = @{ New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" @@ -19,7 +19,7 @@ $params = @{ New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 57caf521d29..ea197bd1726 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DataSource = @{ diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md index 7a113a212cb..9bd5d77b904 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My review set 2" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 4d651519dee..6f197291dbb 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My Query 1" diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md index c9479cb7c43..70869fd2ec3 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My search 2" diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md index 7c625fdf424..25e9b45b067 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Publish-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 580fb2205b6..a1b12b8f6f2 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md index 8edb867a084..659f0032058 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 492a1bcdc2f..b0fdf8d7a81 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 46eddab98c1..0e76320f500 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 472ede3153e..77c7e705bd7 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md index 4829d3dcffd..50cf9a1395b 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md index fe8fa3e369b..074fccd6bd9 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` diff --git a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md index af1feb0fb9b..1c478ae6e80 100644 --- a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId ``` diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md index 37f6b1f6368..2109a359300 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "String" @@ -20,7 +20,7 @@ $params = @{ Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "String" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md index d1580828f14..2f0ee079c05 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My Case 1 - Renamed" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md index 77dccd9866f..8cd2a2128ba 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Update-MgSecurityCaseEdiscoveryCaseCustodianIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index 27bf9d0ed55..ceeb93964f4 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index fd6a3fd5e5f..97797e02385 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "My Query 1 (update)" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md index 404a5a57095..ffed2bb600b 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ DisplayName = "Teams search" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md index 8f657d1faed..1330208ecdd 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ "@odata.type" = "#microsoft.graph.security.ediscoveryCaseSettings" diff --git a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md index 1c2b5715d53..f28b84b649f 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "" @@ -15,7 +15,7 @@ $params = @{ Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Security $params = @{ AssignedTo = "" diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md index dbca81af84b..e6f18471a7f 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentType = "https://graph.microsoft.com/v1.0/sites/{site-id}/contentTypes/0x0101" diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md index a6d507c2e65..8da14cad5f1 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentTypeId = "0x0101" @@ -7,7 +7,7 @@ $params = @{ Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentTypeId = "0x0101" @@ -15,7 +15,7 @@ $params = @{ Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ ContentTypeId = "0x0101" diff --git a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md index 522493abb38..9d4b217a7f8 100644 --- a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md +++ b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ SourceFile = @{ diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSite.md index 1fe9bc23960..ee8f4d58b71 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSite.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSite -SiteId $siteId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSite -Search "{query}" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSite -Search "{query}" -OutFile $outFileId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md index 0a566e41e4f..a17bd6a1f66 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteColumn -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md index b0548c7736c..ef9609d2181 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId -OutFile $outFileId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md index ddf248f6ee3..cb4f69a0634 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md index f43ecf68739..0654804431f 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteDefaultDrive -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md index 3d448ad9706..e7b543a2fd7 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteDrive -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md index 480cf7ffaa1..391edae102f 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md @@ -1,30 +1,30 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId -Property "id,name,lastModifiedDateTime" -ExpandProperty "columns(select=name,description),items)" ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md index b01586ed665..d1a888522d4 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListColumn -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md index 8dd52485a92..049e2dbb4e5 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListContentType -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md index df08f56cada..6b87d0a1f4e 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListContentTypeCompatibleHubContentType -SiteId $siteId -ListId $listId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md index 498cb5fcd07..d6ad319efdf 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId -ExpandProperty "fields" ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md index 8745b2e6916..bd81be791d5 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md index 0a88110d67b..322047f245e 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId -ExpandProperty "fields" ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md index 07f016fae21..c9b5794b762 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSitePermission -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md index 584bb8a6b85..3ca2cad6442 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStore -SiteId $siteId -OutFile $outFileId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md index 631f71241c9..f6caea29dff 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -OutFile $outFileId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId -Property "*,parentSiteId" ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md index a48437d4b96..3c6184a2210 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroupSet -SiteId $siteId -GroupId $groupId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md index 0872e0a0eeb..01d37687d2d 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroupSetTerm -SiteId $siteId -GroupId $groupId -SetId $setId -TermId $termId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md index 4119a85e788..d0de88d1c83 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md index 35e12b1de64..a9b143956de 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md index e45d6270493..5455fc896f1 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSetRelation -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md index 5d79d0b61bc..0dd3e4f140e 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Get-MgSubSite -SiteId $siteId ``` diff --git a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md index a46e0825c32..ed0288099cf 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites # A UPN can also be used as -UserId. Get-MgUserFollowedSite -UserId $userId diff --git a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md index 2cb29fae941..9970a30e971 100644 --- a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md +++ b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ HubSiteUrls = @( diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md index 173d58cbd6f..33ca4a7d6db 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Description = "test" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md index 817f191ee1c..852f77ebed5 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Name = "docSet" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md index 853b9f57cb6..b98e1c3ed44 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ "SourceColumn@odata.bind" = "https://graph.microsoft.com/v1.0/sites/root/columns/99ddcf45-e2f7-4f17-82b0-6fba34445103" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md index 2ab69a16f53..3c5eb8e8994 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ DisplayName = "Books" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md index 0321438d88a..51ac572cbcc 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Description = "test" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md index 3dfb6805baf..a71c08b328e 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Fields = @{ diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md index e39ff1b6152..f4aae23160b 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Comment = "v1" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md index 6a0ba332377..b0b38cfe544 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Roles = @( diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md index 10a9fed0bcf..8764bb73f19 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ DisplayName = "myGroup" diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md index c72edaddc4a..b75aaaf9706 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Labels = @( diff --git a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md index 593afdd3460..fb99d209f40 100644 --- a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Publish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md index 9c13eac286c..58dae877f0f 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md index 6d0b71a4130..90575599bdc 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md index 557b69c122f..a48246db81b 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md index 24c1b5ee959..e828298f042 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md index 861aa2ebb78..8237c853d2e 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md index 753ab023046..cdeb5b84cc3 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md index 1c794218884..834560cfc11 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md index 41d429a7e4a..d2758014626 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreSetTerm -SiteId $siteId -SetId $setId -TermId $termId ``` diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md index 10ecb11b1d6..a9567d5a88c 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Restore-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md index 776aebbbbb2..d25d115e09c 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Restore-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId ``` diff --git a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md index acb06e5249f..02fb6eb74be 100644 --- a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md +++ b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Test-MgSiteContentTypePublished -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md index 471602b1cb5..83823f2624b 100644 --- a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites Unpublish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md index 91f9654eb1f..f14246f1e6b 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Name = "updatedCt" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md index 12cf2c4261b..08b53978506 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Color = "Fuchsia" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md index 22f8cddc7c7..38a6a74faaf 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Roles = @( diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md index 2184fff05b9..2534822bad4 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ DefaultLanguageTag = "en-US" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md index 9d4827ea692..7c55fc957d6 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Description = "mySet" diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md index 07de568b808..a24bf1a070c 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Sites $params = @{ Labels = @( diff --git a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md index cd51055899b..c894bbb7dfc 100644 --- a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Values = @( @@ -21,7 +21,7 @@ $params = @{ Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Values = @( @@ -43,7 +43,7 @@ $params = @{ Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Values = @( diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md index bcefc811e24..14d597f233e 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Complete-MgTeamChannelMigration -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md index e50d9cbc1f0..3d4dfa65392 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Complete-MgTeamMigration -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md index 2040b5c8856..e82ffd5ce73 100644 --- a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Library Assist" diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md index 2daae47c931..636e96fb1ee 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md @@ -1,25 +1,25 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5'" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -ExpandProperty "appDefinitions(`$expand=bot)" -Filter "appDefinitions/any(a:a/bot ne null)" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "id eq '876df28f-2e78-423b-94a5-44181bd0e225'" -ExpandProperty "appDefinitions" ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "distributionMethod eq 'organization'" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md index b2a34536926..8204be87855 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamAppDefinitionBot -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChat.md b/src/Teams/Teams/examples/v1.0/Get-MgChat.md index cdb8049d07d..224f490b31b 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChat.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId -ExpandProperty "members" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -Sort "lastMessagePreview/createdDateTime desc" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md index 56fe7e6b87c..9d3acb0468c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsAppDefinition(`$expand=bot)" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md index c65a5af5d8c..596d37ffca6 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMember -ChatId $chatId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md index 8f034a85a5b..2235cf0358f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessage -ChatId $chatId -Top 2 ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessage -ChatId $chatId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md index 505ad86b3d6..ad4da7dfae5 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId -ChatMessageHostedContentId $chatMessageHostedContentId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md index 9b30fced93e..6b703caf613 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -ExpandProperty "teamsApp" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.web'" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md index 7afe9e4141d..6a46c254303 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeam -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md index 0477f565852..515d3a90af6 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md @@ -1,25 +1,25 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'shared'" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'private'" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md index a56ea7f6076..ebf2742c62c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelFileFolder -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md index 890c0325656..72a3f7895f4 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md index 1ce3e304d5b..45a0cf19b49 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -Filter "lastModifiedDateTime gt 2019-11-01T00:00:00Z and lastModifiedDateTime lt 2021-11-01T00:00:00Z" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -Top 3 ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md index 9a1d51f12ea..1c09ea30037 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md index c8f912f1e64..1a321041f1c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md index a4a234fe1b9..4216f0efa5a 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageReplyHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -ChatMessageId1 $chatMessageId1 ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md index a79a0709590..16ff399c184 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md index 749b9153755..86cea2237ad 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeamAllowedMember -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md index 7b4c38e2430..86dd415be27 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.planner'" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md index cfc6c74b288..e937bd7a8c0 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamIncomingChannel -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md index 483194f6b7c..60a66535301 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md @@ -1,25 +1,25 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId -ExpandProperty "teamsAppDefinition" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsAppDefinition" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md index ae0b6af428a..3e4f36fe5a3 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/userId eq '73761f06-2ac9-469c-9f10-279a8cc267f9')" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/displayName eq 'Harry Johnson' or microsoft.graph.aadUserConversationMember/email eq 'admin@M365x987948.OnMicrosoft.com')" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md index 00abb3de8a2..94f10c1f613 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamPrimaryChannel -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md index ec060b74d9c..e39cb38c0cf 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamSchedule -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md index c37958adfa4..826e3264d5b 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId -OfferShiftRequestId $offerShiftRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md index 9d978906033..2ecda0c9907 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShift -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md index 239575001c8..18e2c3ec7cc 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -OpenShiftChangeRequestId $openShiftChangeRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md index f68f790047d..bf938150534 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSchedulingGroup -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md index 310d1bb1ebb..6720124ebe6 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleShift -TeamId $teamId -Filter "sharedShift/startDateTime ge 2019-03-11T00:00:00.000Z and sharedShift/endDateTime le 2019-03-18T00:00:00.000Z and draftShift/startDateTime ge 2019-03-11T00:00:00.000Z and draftShift/endDateTime le 2019-03-18T00:00:00.000Z" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md index 391ccae112c..e7524240e7d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -SwapShiftsChangeRequestId $swapShiftsChangeRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md index a70bf8e2e54..d16792722ba 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOff -TeamId $teamId -Filter "sharedTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and sharedTimeOff/endDateTime le 2019-03-18T00:00:00.000Z and draftTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and draftTimeOff/endDateTime le 2019-03-18T00:00:00.000Z" ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md index e345150417e..926fff8446b 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffReason -TeamId $teamId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md index ad8f6daaa4f..c14a7b7d261 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffRequest -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md index d1dccc6f0f1..fd602c8b0d7 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md @@ -1,10 +1,10 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamworkWorkforceIntegration ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md index f3d1672147f..e74a7ea5b21 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md @@ -1,15 +1,15 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId -ChatId $chatId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId -ExpandProperty "members" ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md index 6a2547a35ec..d30629ea6e1 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserChatMember -UserId $userId -ChatId $chatId diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md index 8be81793df0..bba9a39e5e3 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserJoinedTeam -UserId $userId diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md index e68cfda9923..789388e4865 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserTeamworkAssociatedTeam -UserId $userId diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md index 118a9a3db3c..f4dbef07d90 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md @@ -1,20 +1,20 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsAppDefinition" ``` diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md index 4f44f7c31ee..e99adebaa13 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledAppChat -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md index 621f47573e4..2f56f2c71d5 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Invoke-MgArchiveTeam -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md index 7f53d7d007a..8ca39474385 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ NotifyTeam = $true diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md index a03a15a3379..12e8a20d0ce 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Invoke-MgUnarchiveTeam -TeamId $teamId ``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md index 1ca7b331983..775441c7106 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams New-MgAppCatalogTeamApp -Requiresreview true ``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgChat.md b/src/Teams/Teams/examples/v1.0/New-MgChat.md index 6329b849aec..3758d8401f8 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "group" @@ -31,7 +31,7 @@ $params = @{ New-MgChat -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "group" @@ -63,7 +63,7 @@ $params = @{ New-MgChat -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "group" @@ -95,7 +95,7 @@ $params = @{ New-MgChat -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "oneOnOne" @@ -120,7 +120,7 @@ $params = @{ New-MgChat -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "oneOnOne" @@ -144,7 +144,7 @@ $params = @{ New-MgChat -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ ChatType = "oneOnOne" diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md index 8dfc3f0cc87..b9afd8cd676 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md index 34406359f10..49f70fe8c28 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -12,7 +12,7 @@ $params = @{ New-MgChatMember -ChatId $chatId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -25,7 +25,7 @@ $params = @{ New-MgChatMember -ChatId $chatId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -37,7 +37,7 @@ $params = @{ New-MgChatMember -ChatId $chatId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md index 5b58a4fed82..e0119df695a 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -21,7 +21,7 @@ $params = @{ New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md index 070c9a7959b..4302937d1ad 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "My Contoso Tab" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeam.md b/src/Teams/Teams/examples/v1.0/New-MgTeam.md index 64bf12ac32f..74c57519553 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -33,7 +33,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('educationClass')" @@ -43,7 +43,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('educationClass')" @@ -78,7 +78,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -87,7 +87,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -168,7 +168,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -187,7 +187,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" @@ -197,7 +197,7 @@ $params = @{ New-MgTeam -BodyParameter $params ``` ### Example 8 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "Template@odata.bind" = "https://graph.microsoft.com/v1.0/teamsTemplates('standard')" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md index 729ebc5e673..a9292b65eb3 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@microsoft.graph.channelCreationMode" = "migration" @@ -10,7 +10,7 @@ $params = @{ New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Architecture Discussion" @@ -20,7 +20,7 @@ $params = @{ New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#Microsoft.Graph.channel" @@ -40,7 +40,7 @@ $params = @{ New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#Microsoft.Graph.channel" @@ -60,7 +60,7 @@ $params = @{ New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "My First Shared Channel" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md index 51a35b0412a..3a42d6432bb 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams New-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md index df921637fe2..8ac9576561c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -11,12 +11,12 @@ $params = @{ New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -28,7 +28,7 @@ $params = @{ New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -39,7 +39,7 @@ $params = @{ New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -50,7 +50,7 @@ $params = @{ New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -61,7 +61,7 @@ $params = @{ New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md index 6030a9cf22c..a801dd9a72d 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -9,7 +9,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -19,7 +19,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -43,7 +43,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Subject = $null @@ -78,7 +78,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -97,7 +97,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 6 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Subject = $null @@ -210,7 +210,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 7 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -234,7 +234,7 @@ $params = @{ New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` ### Example 8 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md index c2942ba36b4..95e1e61404c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ @@ -10,7 +10,7 @@ $params = @{ New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Body = @{ diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md index 8486d7b0708..1112956070a 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md index 83869845686..d7cca129aa2 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" @@ -11,7 +11,7 @@ $params = @{ New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md index bebbfd2991d..daebca6206e 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ SenderShiftId = "SHFT_f7e484ed-fdd6-421c-92d9-0bc9e62e2c29" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md index f804148345f..d3abb18d6c2 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Id = "OPNSHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md index 60c8595b832..25b091b9656 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ SenderMessage = "Can I take this shift?" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md index 5d08e75d7f7..24aa2b9eb51 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Cashiers" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md index 488ee9354c6..78419774054 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md index 0b76be779a6..1fcfcf9953c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ SenderShiftId = "5ad10161-6524-4c7c-9beb-4e8677ba2f6d" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md index 27323a8bfef..4daff183729 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md index 2443e1bbcdb..50fb9cc697f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "Vacation" diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md index ee765d2985e..c2c2d99d700 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "displayName-value" diff --git a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md index 4d9feebb926..764ee28d72f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md index b5d24d6e555..1b57568a44c 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgAppCatalogTeamApp -TeamsAppId $teamsAppId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md index d83fb02359e..3ffe37f14f9 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md index 77227b8a071..5ce5e49ce6f 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md index 0bb9139b3f2..b8596e7a4bf 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md index e2874c0e21a..85a25440d8e 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md index 5de2be566f9..0b66f0f1ed3 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md index ac57b62158e..47b38825993 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md index 29078a92fc7..766c5ff904a 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md index 2696dd0fb6b..9e010218361 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md index 17d6371b851..5ec52db5e36 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md index 3319e680d91..820d7c648ca 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md index 3d6feaa6de8..b44031dba05 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md index 08009f2384d..103003f2342 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md index 2f2a6a5cb03..3e2a17bae8b 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md index 9e505cf5332..72d430ab2d4 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md index 1a80c99ae39..41523a79610 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md index 2683036ba82..0406f22f521 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md index 4ce04144b34..dfd4b71f74a 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Remove-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md index 19ab840f46b..0bd15ba99c9 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -24,7 +24,7 @@ $params = @{ Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -49,7 +49,7 @@ $params = @{ Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -75,7 +75,7 @@ $params = @{ Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -101,7 +101,7 @@ $params = @{ Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` ### Example 5 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ diff --git a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md index df46ce1bb00..af08be3a38d 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -25,7 +25,7 @@ $params = @{ Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -50,7 +50,7 @@ $params = @{ Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ @@ -79,7 +79,7 @@ $params = @{ Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` ### Example 4 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = @{ diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChat.md b/src/Teams/Teams/examples/v1.0/Update-MgChat.md index 79e84c3da35..635f05ef288 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChat.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Topic = "Group chat title update" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md index f56a79a1af5..321fdbbf55c 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Update-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md index cb24eaa60e3..91b213756bd 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "My Contoso Tab - updated again" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md index 827288fe1e5..86d9c6293d6 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ MemberSettings = @{ diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md index 3104e0ffb5e..0449d11a47a 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Update-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md index 175fbfa0763..69048045abd 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md index 9e8319bc654..ace62533047 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ PolicyViolation = @{ diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md index 9d662d2b358..46fb7cf299b 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams Update-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md index e633d36c638..6a53451aeec 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ "@odata.type" = "#microsoft.graph.aadUserConversationMember" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md index 19dcb8709b8..826e741d4f6 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md index 7d9240c8743..1c12f3b4618 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md index edb36d4eb0d..e70cc178cb1 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Teams $params = @{ DisplayName = "displayName-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md index ff4834ed310..18ba179fce9 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md index e4b7651372a..405d65dc541 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ GroupIds = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md index 754ffe713cb..d9567c5ee78 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Ids = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md index 073026ce0b9..1c8a8de2fb0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "destinationId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md index 122601ecbce..07fda129d8f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "destinationId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md index 6fc36353947..d31841acdf5 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ GroupId = "groupId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md index 7831dbb74fb..7d8fc478c84 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Id = "id-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md index f896791fae1..6ee52f28fe1 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Id = "id-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md index 1267a2243c2..1db0bde3e6b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Id = "id-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md index c740da88d47..b9386f56e13 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Disable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md index 216df0d6d53..9a28954e70d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Enable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md index a44940dd905..7a8de3e4183 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ StorageLocation = "storageLocation-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md index eaf69ea3dfb..b91a890b2fd 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Attendees = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md index 1fd66a8b3d7..762e908310f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Schedules = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md index 096ce87c3d8..c99731b5ecb 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ EmailAddresses = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md index 80508ab4e9f..b62f4db7c8b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ SecurityEnabledOnly = $true diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md index 9987579033b..5a9bd6943a4 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ WebUrl = "webUrl value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md index c6108ef3bb2..71e581f1a3b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "comment-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md index 3c616877a2b..3e687bdcbce 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "I may not be able to make this week. How about next week?" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md index 6c99d8173a7..eeb0c219d94 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ StartDateTime = [System.DateTime]::Parse("2020-02-06T01:49:21.3524945+00:00") diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md index cb37e1cce38..29b754e9a82 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "I won't be able to make this week. How about next week?" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md index 897db4da632..73b430c06d6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md index 8f9ead58a3f..a1a5820d96f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ ToRecipients = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md index d2453c6e76c..1e2d5ef4d81 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "comment-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md index 2c13ab98515..8af40cfa972 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions Invoke-MgLicenseUser -UserId $userId ``` diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md index 6a6bcc9fa34..6cc6e3072c7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "comment-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md index 4b5a29ea8fd..79d2e9ebe4b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md index c1cc74b852f..d6d1342aa03 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ NewReminderTime = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md index f38dea005f7..fc81537def9 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ InputIds = @( diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md index 2fcc9eb527d..bf2d8dab10f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "destinationId-value" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md index 7cbf788ecf7..8de569d5dde 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ DestinationId = "deleteditems" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md index c72044e7d35..d236a97ed89 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ AttachmentItem = @{ @@ -14,7 +14,7 @@ $params = @{ New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ AttachmentItem = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md index 5fc1ba0575c..d6639476f62 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageForward -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md index bd0a6a0bdf8..ed7ac9ccbf2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageReply -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md index e46896c5366..d48b4044bd3 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageReplyAll -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md index 9e4a02841b1..86c406664e7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Revoke-MgUserSign -UserId $userId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md index 12079677759..4151f3da089 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ @@ -29,7 +29,7 @@ $params = @{ Send-MgUserMail -UserId $userId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ @@ -59,7 +59,7 @@ $params = @{ Send-MgUserMail -UserId $userId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Message = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md index f923112124f..1b38db96321 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Send-MgUserMessage -UserId $userId -MessageId $messageId diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md index 40347c49113..e1a7fe2299d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Topic = @{ @@ -21,7 +21,7 @@ $params = @{ Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Topic = @{ @@ -43,7 +43,7 @@ $params = @{ Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` ### Example 3 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Topic = @{ diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md index f5302a486a2..21d7ac00d53 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md index aca9485313f..eb1aefabfa9 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ Comment = "Cancelling for this week due to all hands" diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md index e9bf4aa5ec2..685ba36d0f8 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ CurrentPassword = "xWwvJ]6NMw+bWH-d" diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md index fb21b9f395e..d683305e1c8 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Get-MgUserContactFolderDelta -UserId $userId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md index 91e73eb7ca8..c8f1bd0d15f 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Functions Get-MgUserDelta ``` diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md index bc114672896..6a84d4dc3bd 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageDelta -UserId $userId -MailFolderId $mailFolderId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md index 451b4cde90e..3855a06a7ba 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgRecentUserActivity -UserId $userId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md index c1d64dabfa7..af662804568 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgSupportedUserOutlookLanguage -UserId $userId diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md index 1faddcfff8d..12dd8594b58 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgTimeUserOutlook -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md index 0670cdb1f9e..21cdb6b5da8 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users Get-MgUserMemberOf -UserId $userId ``` diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md index 33cc562c3b4..2ff9abcc6f7 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOutlookMasterCategory -UserId $userId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md index eed58b72d2c..29fdd8568c8 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOwnedDevice -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md index 1dd51e8aca8..9daa25f5629 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOwnedObject -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md index fbde4525c8a..20bfefc1ea4 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserRegisteredDevice -UserId $userId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md index 46e9ab6cb6a..85c2169a387 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users Get-MgUserSettingShiftPreference -UserId $userId ``` diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md index 8ae16887c88..a248b167011 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoList -UserId $userId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md index ae99fb6c351..5d62dc76731 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md index 0b49bb7546c..1b58d63a04f 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md index 658c7ca3692..d0e63db2849 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md @@ -1,11 +1,11 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` ### Example 2 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md index 23b3cfec4bf..396a9bb5a66 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users Get-MgUserTransitiveMemberOf -UserId $userId ``` diff --git a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md index ebc7fe34b16..1dfed7824fc 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Project expenses" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md index 96db581da85..84ab802382a 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Travel items" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md index 85be0ca05fc..5e1150a423b 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ Title = "A new task" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md index 0f6002e6959..ff5cdd03b24 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Final sign-off from the team" diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md index 3f5362adb73..c03d380a206 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ WebUrl = "https://microsoft.com" diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md index 486c8e9ae0c..795d502f7d6 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md index d996caf458d..ac221c4541d 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md index 9e574df6634..c0085472bc9 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md index 16c93074abe..c0dd9909d93 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md index c1a98d86581..274f3d8bbbd 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId diff --git a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md index 857f842596b..359fbdde7b5 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ Color = "preset15" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md index f77a9f7ae41..244772f1b77 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ Id = "SHPR_eeab4fb1-20e5-48ca-ad9b-98119d94bee7" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md index 41ff107d646..9b7b5363021 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "Vacation Plan" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md index d69ff9d87f4..181a9ca8030 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ DueDateTime = @{ diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md index b27dc03338a..37f9da69fec 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ DisplayName = "buy cake" diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md index af34d81a4f6..6c8f77388c5 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md @@ -1,5 +1,5 @@ ### Example 1 -``` powershell +```powershell Import-Module Microsoft.Graph.Users $params = @{ "@odata.type" = "#microsoft.graph.linkedResource" From 4681d64c48ac0d6b56bfb9d61c43ce69509317e8 Mon Sep 17 00:00:00 2001 From: Peter Ombwa Date: Wed, 14 Sep 2022 10:25:47 -0700 Subject: [PATCH 13/30] Lock autorest version. --- .../test/Microsoft.Graph.Applications.Tests.ps1 | 14 -------------- .../test/CloudCommunications.Tests.ps1 | 14 -------------- src/Users/Users/test/Users.Tests.ps1 | 14 -------------- 3 files changed, 42 deletions(-) diff --git a/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 b/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 index 8eff87bc56b..ae328decd77 100644 --- a/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 +++ b/src/Applications/Applications/test/Microsoft.Graph.Applications.Tests.ps1 @@ -43,19 +43,5 @@ Describe "Microsoft.Graph.Applications Module" { $ps.Dispose() } - - It "Module import should write to streams when debug preference is set" { - $ps = [powershell]::Create() - $ps.AddScript("`$DebugPreference = 'Inquire'; Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() - - $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 2 - $ps.Streams.Error.Count | Should -Be 0 - $ps.Streams.Verbose.Count | Should -Be 0 - $ps.Streams.Warning.Count | Should -Be 0 - $ps.Streams.Progress.Count | Should -Be 0 - - $ps.Dispose() - } } } \ No newline at end of file diff --git a/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 b/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 index 833decfb0a9..ec34e4431b6 100644 --- a/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 +++ b/src/CloudCommunications/CloudCommunications/test/CloudCommunications.Tests.ps1 @@ -25,18 +25,4 @@ Describe "CloudCommunications Module" { $ps.Dispose() } - - It "Module import should write to streams when debug preference is set" { - $ps = [powershell]::Create() - $ps.AddScript("`$DebugPreference = 'Inquire'; Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() - - $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 2 - $ps.Streams.Error.Count | Should -Be 0 - $ps.Streams.Verbose.Count | Should -Be 0 - $ps.Streams.Warning.Count | Should -Be 0 - $ps.Streams.Progress.Count | Should -Be 0 - - $ps.Dispose() - } } \ No newline at end of file diff --git a/src/Users/Users/test/Users.Tests.ps1 b/src/Users/Users/test/Users.Tests.ps1 index 9e3413453b1..46de4a3444b 100644 --- a/src/Users/Users/test/Users.Tests.ps1 +++ b/src/Users/Users/test/Users.Tests.ps1 @@ -25,18 +25,4 @@ Describe "Users Module" { $ps.Dispose() } - - It "Module import should write to streams when debug preference is set" { - $ps = [powershell]::Create() - $ps.AddScript("`$DebugPreference = 'Inquire'; Import-Module $ModulePath -ErrorAction SilentlyContinue").Invoke() - - $ps.Streams.Information.Count | Should -Be 0 - $ps.Streams.Debug.Count | Should -Be 2 - $ps.Streams.Error.Count | Should -Be 0 - $ps.Streams.Verbose.Count | Should -Be 0 - $ps.Streams.Warning.Count | Should -Be 0 - $ps.Streams.Progress.Count | Should -Be 0 - - $ps.Dispose() - } } \ No newline at end of file From 5d29cc42d0206cb05e85863874d79a31230d6cb3 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Wed, 14 Sep 2022 21:32:15 +0300 Subject: [PATCH 14/30] Updated GraphUri.ps script to handle find commands with parenthesis --- .../Authentication/custom/common/GraphUri.ps1 | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Authentication/Authentication/custom/common/GraphUri.ps1 b/src/Authentication/Authentication/custom/common/GraphUri.ps1 index 04395b53798..83e6c664bfa 100644 --- a/src/Authentication/Authentication/custom/common/GraphUri.ps1 +++ b/src/Authentication/Authentication/custom/common/GraphUri.ps1 @@ -48,11 +48,21 @@ function GraphUri_TokenizeIds { ) $TokenizedUri = $Uri.GetComponents([System.UriComponents]::SchemeAndServer, [System.UriFormat]::SafeUnescaped) + $LastSegment = $Uri.Segments[$Uri.Segments.length - 1] + $UnescapedUri = $Uri.ToString() for ($i = 0 ; $i -lt $Uri.Segments.length; $i++) { # Segment contains an integer/id and is not API version. if ($Uri.Segments[$i] -match "[^v1.0|beta]\d") { + #For Uris whose last segments match the regex '(?<={)(.*?)(?=})', all characters from the first '(' are substituted with '.*' + if($i -eq $Uri.Segments.length - 1){ + if($UnescapedUri -match '(?<={)(.*?)(?=})'){ + $UpdatedLastSegment = $LastSegment.Substring(0,$LastSegment.IndexOf("(")) + $TokenizedUri += $UpdatedLastSegment + } + }else{ # Substitute integers/ids with {id} tokens, e.g, /users/289ee2a5-9450-4837-aa87-6bd8d8e72891 -> users/{id}. $TokenizedUri += "{id}/" + } } else { $TokenizedUri += $Uri.Segments[$i] From 832cc7955eecdab5b4177457e5a51deb36bef588 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Wed, 14 Sep 2022 21:40:05 +0300 Subject: [PATCH 15/30] Updated file --- src/Authentication/Authentication/custom/common/GraphUri.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Authentication/Authentication/custom/common/GraphUri.ps1 b/src/Authentication/Authentication/custom/common/GraphUri.ps1 index 83e6c664bfa..8b23c38585f 100644 --- a/src/Authentication/Authentication/custom/common/GraphUri.ps1 +++ b/src/Authentication/Authentication/custom/common/GraphUri.ps1 @@ -57,7 +57,7 @@ function GraphUri_TokenizeIds { if($i -eq $Uri.Segments.length - 1){ if($UnescapedUri -match '(?<={)(.*?)(?=})'){ $UpdatedLastSegment = $LastSegment.Substring(0,$LastSegment.IndexOf("(")) - $TokenizedUri += $UpdatedLastSegment + $TokenizedUri += $UpdatedLastSegment + ".*" } }else{ # Substitute integers/ids with {id} tokens, e.g, /users/289ee2a5-9450-4837-aa87-6bd8d8e72891 -> users/{id}. From 89ea8531f265d3a253883af2326980990c9a4128 Mon Sep 17 00:00:00 2001 From: SteveWilkins1123 Date: Wed, 14 Sep 2022 14:09:19 -0700 Subject: [PATCH 16/30] Added descriptions --- .../examples/v1.0/Add-MgApplicationKey.md | 8 +++-- .../v1.0/Add-MgServicePrincipalKey.md | 8 +++-- .../v1.0/Add-MgServicePrincipalPassword.md | 4 ++- ...ServicePrincipalTokenSigningCertificate.md | 4 ++- .../Clear-MgApplicationVerifiedPublisher.md | 4 ++- .../examples/v1.0/Get-MgApplicationDelta.md | 4 ++- .../Get-MgApplicationExtensionProperty.md | 8 +++-- ...gApplicationFederatedIdentityCredential.md | 8 +++-- .../examples/v1.0/Get-MgApplicationOwner.md | 4 ++- .../v1.0/Get-MgApplicationTemplate.md | 8 +++-- .../Get-MgApplicationTokenIssuancePolicy.md | 4 ++- .../Get-MgApplicationTokenLifetimePolicy.md | 4 ++- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 4 ++- ...et-MgServicePrincipalClaimMappingPolicy.md | 4 ++- .../Get-MgServicePrincipalCreatedObject.md | 4 ++- ...ncipalDelegatedPermissionClassification.md | 4 ++- .../v1.0/Get-MgServicePrincipalDelta.md | 4 ++- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 4 ++- .../v1.0/Get-MgServicePrincipalMemberOf.md | 4 ++- ...MgServicePrincipalOauth2PermissionGrant.md | 4 ++- .../v1.0/Get-MgServicePrincipalOwnedObject.md | 4 ++- ...et-MgServicePrincipalTransitiveMemberOf.md | 4 ++- ...Invoke-MgInstantiateApplicationTemplate.md | 4 ++- .../New-MgApplicationExtensionProperty.md | 4 ++- ...gApplicationFederatedIdentityCredential.md | 4 ++- ...w-MgApplicationTokenIssuancePolicyByRef.md | 4 ++- ...w-MgApplicationTokenLifetimePolicyByRef.md | 4 ++- ...New-MgServicePrincipalAppRoleAssignedTo.md | 4 ++- ...New-MgServicePrincipalAppRoleAssignment.md | 4 ++- ...ServicePrincipalClaimMappingPolicyByRef.md | 4 ++- ...ncipalDelegatedPermissionClassification.md | 4 ++- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 4 ++- .../Remove-MgApplicationExtensionProperty.md | 4 ++- ...gApplicationFederatedIdentityCredential.md | 4 ++- .../examples/v1.0/Remove-MgApplicationKey.md | 4 ++- .../v1.0/Remove-MgApplicationOwnerByRef.md | 4 ++- .../v1.0/Remove-MgApplicationPassword.md | 4 ++- ...e-MgApplicationTokenIssuancePolicyByRef.md | 4 ++- ...e-MgApplicationTokenLifetimePolicyByRef.md | 4 ++- .../v1.0/Remove-MgGroupAppRoleAssignment.md | 4 ++- .../v1.0/Remove-MgServicePrincipal.md | 4 ++- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 4 ++- ...ServicePrincipalClaimMappingPolicyByRef.md | 4 ++- ...ncipalDelegatedPermissionClassification.md | 4 ++- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 4 ++- .../v1.0/Remove-MgServicePrincipalKey.md | 4 ++- .../v1.0/Remove-MgServicePrincipalPassword.md | 4 ++- .../Set-MgApplicationVerifiedPublisher.md | 4 ++- ...gApplicationFederatedIdentityCredential.md | 4 ++- .../examples/v1.0/Get-MgBookingBusiness.md | 12 +++++-- .../v1.0/Get-MgBookingBusinessAppointment.md | 8 +++-- .../v1.0/Get-MgBookingBusinessCalendarView.md | 4 ++- .../Get-MgBookingBusinessCustomQuestion.md | 8 +++-- .../v1.0/Get-MgBookingBusinessCustomer.md | 8 +++-- .../v1.0/Get-MgBookingBusinessService.md | 8 +++-- .../v1.0/Get-MgBookingBusinessStaffMember.md | 8 +++-- .../examples/v1.0/Get-MgBookingCurrency.md | 8 +++-- .../examples/v1.0/New-MgBookingBusiness.md | 4 ++- .../v1.0/New-MgBookingBusinessAppointment.md | 4 ++- .../New-MgBookingBusinessCustomQuestion.md | 4 ++- .../v1.0/New-MgBookingBusinessCustomer.md | 4 ++- .../v1.0/New-MgBookingBusinessService.md | 4 ++- .../v1.0/New-MgBookingBusinessStaffMember.md | 4 ++- .../v1.0/Publish-MgBookingBusiness.md | 4 ++- .../examples/v1.0/Remove-MgBookingBusiness.md | 4 ++- .../Remove-MgBookingBusinessAppointment.md | 4 ++- .../Remove-MgBookingBusinessCustomQuestion.md | 4 ++- .../v1.0/Remove-MgBookingBusinessCustomer.md | 4 ++- .../v1.0/Remove-MgBookingBusinessService.md | 4 ++- .../Remove-MgBookingBusinessStaffMember.md | 4 ++- .../v1.0/Stop-MgBookingBusinessAppointment.md | 4 ++- .../v1.0/Unpublish-MgBookingBusiness.md | 4 ++- .../examples/v1.0/Update-MgBookingBusiness.md | 4 ++- .../Update-MgBookingBusinessAppointment.md | 4 ++- .../Update-MgBookingBusinessCustomQuestion.md | 4 ++- .../v1.0/Update-MgBookingBusinessCustomer.md | 4 ++- .../v1.0/Update-MgBookingBusinessService.md | 4 ++- .../Update-MgBookingBusinessStaffMember.md | 4 ++- .../examples/v1.0/Get-MgGroupEvent.md | 8 +++-- .../v1.0/Get-MgGroupEventExtension.md | 4 ++- .../Calendar/examples/v1.0/Get-MgPlace.md | 16 +++++++--- .../examples/v1.0/Get-MgUserCalendar.md | 4 ++- .../examples/v1.0/Get-MgUserCalendarGroup.md | 8 +++-- .../v1.0/Get-MgUserCalendarGroupCalendar.md | 4 ++- .../v1.0/Get-MgUserCalendarPermission.md | 4 ++- .../examples/v1.0/Get-MgUserCalendarView.md | 4 ++- .../v1.0/Get-MgUserDefaultCalendar.md | 4 ++- .../Calendar/examples/v1.0/Get-MgUserEvent.md | 12 +++++-- .../v1.0/Get-MgUserEventAttachment.md | 4 ++- .../examples/v1.0/Get-MgUserEventInstance.md | 4 ++- .../examples/v1.0/New-MgGroupEvent.md | 4 ++- .../examples/v1.0/New-MgUserCalendar.md | 4 ++- .../examples/v1.0/New-MgUserCalendarEvent.md | 8 +++-- .../examples/v1.0/New-MgUserCalendarGroup.md | 4 ++- .../v1.0/New-MgUserCalendarGroupCalendar.md | 4 ++- .../Calendar/examples/v1.0/New-MgUserEvent.md | 16 +++++++--- .../v1.0/New-MgUserEventAttachment.md | 12 +++++-- .../examples/v1.0/Remove-MgGroupEvent.md | 4 ++- .../v1.0/Remove-MgUserCalendarGroup.md | 4 ++- .../v1.0/Remove-MgUserCalendarPermission.md | 4 ++- .../examples/v1.0/Remove-MgUserEvent.md | 4 ++- .../v1.0/Remove-MgUserEventAttachment.md | 4 ++- .../Calendar/examples/v1.0/Update-MgPlace.md | 8 +++-- .../v1.0/Update-MgUserCalendarGroup.md | 4 ++- .../v1.0/Update-MgUserCalendarPermission.md | 4 ++- .../examples/v1.0/Update-MgUserEvent.md | 4 ++- .../examples/v1.0/Get-MgSubscription.md | 8 +++-- .../examples/v1.0/New-MgSubscription.md | 4 ++- .../examples/v1.0/Remove-MgSubscription.md | 4 ++- .../examples/v1.0/Update-MgSubscription.md | 4 ++- .../examples/v1.0/Get-MgCommunicationCall.md | 8 +++-- .../Get-MgCommunicationCallParticipant.md | 8 +++-- .../v1.0/Get-MgCommunicationCallRecord.md | 16 +++++++--- .../Get-MgCommunicationCallRecordSession.md | 8 +++-- .../v1.0/Get-MgCommunicationOnlineMeeting.md | 4 ++- .../v1.0/Get-MgCommunicationPresence.md | 4 ++- .../Get-MgCommunicationPresenceByUserId.md | 4 ++- .../examples/v1.0/Get-MgUserOnlineMeeting.md | 8 +++-- ...Get-MgUserOnlineMeetingAttendanceReport.md | 8 +++-- ...MeetingAttendanceReportAttendanceRecord.md | 4 ++- .../examples/v1.0/Get-MgUserPresence.md | 8 +++-- .../v1.0/Invoke-MgAnswerCommunicationCall.md | 12 +++++-- ...ke-MgInviteCommunicationCallParticipant.md | 28 ++++++++++++---- .../Invoke-MgKeepCommunicationCallAlive.md | 4 ++- ...nicationCallTeleconferenceDeviceQuality.md | 4 ++- .../v1.0/Invoke-MgMuteCommunicationCall.md | 4 ++- ...voke-MgMuteCommunicationCallParticipant.md | 4 ++- .../Invoke-MgPlayCommunicationCallPrompt.md | 4 ++- ...nvoke-MgRecordCommunicationCallResponse.md | 4 ++- .../Invoke-MgRedirectCommunicationCall.md | 8 +++-- .../v1.0/Invoke-MgRejectCommunicationCall.md | 8 +++-- ...voke-MgSubscribeCommunicationCallToTone.md | 4 ++- .../v1.0/Invoke-MgUnmuteCommunicationCall.md | 4 ++- .../examples/v1.0/Move-MgCommunicationCall.md | 20 +++++++++--- .../examples/v1.0/New-MgCommunicationCall.md | 16 +++++++--- .../examples/v1.0/New-MgUserOnlineMeeting.md | 4 ++- .../v1.0/Remove-MgCommunicationCall.md | 4 ++- .../Remove-MgCommunicationCallParticipant.md | 12 +++++-- .../v1.0/Remove-MgUserOnlineMeeting.md | 4 ++- ...me-MgCommunicationCallScreenSharingRole.md | 4 ++- ...MgCommunicationCallParticipantHoldMusic.md | 4 ++- ...Stop-MgCommunicationCallMediaProcessing.md | 4 ++- ...MgCommunicationCallParticipantHoldMusic.md | 4 ++- ...date-MgCommunicationCallRecordingStatus.md | 4 ++- .../v1.0/Update-MgUserOnlineMeeting.md | 8 +++-- .../examples/v1.0/Remove-MgUserActivity.md | 4 ++- ...MgRoleManagementDirectoryRoleAssignment.md | 20 +++++++++--- ...nagementDirectoryRoleAssignmentSchedule.md | 12 +++++-- ...DirectoryRoleAssignmentScheduleInstance.md | 12 +++++-- ...tDirectoryRoleAssignmentScheduleRequest.md | 20 +++++++++--- ...MgRoleManagementDirectoryRoleDefinition.md | 16 +++++++--- ...agementDirectoryRoleEligibilitySchedule.md | 12 +++++-- ...irectoryRoleEligibilityScheduleInstance.md | 12 +++++-- ...DirectoryRoleEligibilityScheduleRequest.md | 12 +++++-- ...mentEntitlementManagementRoleAssignment.md | 4 ++- ...mentEntitlementManagementRoleDefinition.md | 4 ++- ...MgRoleManagementDirectoryRoleAssignment.md | 12 +++++-- ...tDirectoryRoleAssignmentScheduleRequest.md | 8 +++-- ...MgRoleManagementDirectoryRoleDefinition.md | 4 ++- ...DirectoryRoleEligibilityScheduleRequest.md | 8 +++-- ...mentEntitlementManagementRoleAssignment.md | 4 ++- ...MgRoleManagementDirectoryRoleAssignment.md | 4 ++- ...MgRoleManagementDirectoryRoleDefinition.md | 4 ++- ...tDirectoryRoleAssignmentScheduleRequest.md | 4 ++- ...DirectoryRoleEligibilityScheduleRequest.md | 4 ++- ...MgRoleManagementDirectoryRoleDefinition.md | 4 ++- .../examples/v1.0/Get-MgPrintConnector.md | 8 +++-- .../examples/v1.0/Get-MgPrintOperation.md | 4 ++- .../examples/v1.0/Get-MgPrintPrinter.md | 12 +++++-- .../v1.0/Get-MgPrintPrinterConnector.md | 4 ++- .../v1.0/Get-MgPrintPrinterTaskTrigger.md | 8 +++-- .../examples/v1.0/Get-MgPrintService.md | 8 +++-- .../v1.0/Get-MgPrintServiceEndpoint.md | 8 +++-- .../examples/v1.0/Get-MgPrintShare.md | 12 +++++-- .../v1.0/Get-MgPrintShareAllowedGroup.md | 4 ++- .../v1.0/Get-MgPrintShareAllowedUser.md | 4 ++- .../v1.0/Get-MgPrintTaskDefinition.md | 8 +++-- .../v1.0/Get-MgPrintTaskDefinitionTask.md | 8 +++-- .../v1.0/New-MgPrintPrinterTaskTrigger.md | 4 ++- .../examples/v1.0/New-MgPrintShare.md | 4 ++- .../v1.0/New-MgPrintShareAllowedGroupByRef.md | 4 ++- .../v1.0/New-MgPrintShareAllowedUserByRef.md | 4 ++- .../v1.0/New-MgPrintTaskDefinition.md | 4 ++- .../examples/v1.0/Remove-MgPrintConnector.md | 4 ++- .../examples/v1.0/Remove-MgPrintPrinter.md | 4 ++- .../v1.0/Remove-MgPrintPrinterTaskTrigger.md | 4 ++- .../examples/v1.0/Remove-MgPrintShare.md | 4 ++- .../Remove-MgPrintShareAllowedGroupByRef.md | 4 ++- .../Remove-MgPrintShareAllowedUserByRef.md | 4 ++- .../v1.0/Remove-MgPrintTaskDefinition.md | 4 ++- .../Restore-MgPrintPrinterFactoryDefault.md | 4 ++- .../examples/v1.0/Update-MgPrintConnector.md | 4 ++- .../examples/v1.0/Update-MgPrintPrinter.md | 4 ++- .../examples/v1.0/Update-MgPrintShare.md | 4 ++- .../v1.0/Update-MgPrintTaskDefinition.md | 4 ++- .../v1.0/Update-MgPrintTaskDefinitionTask.md | 4 ++- ...Get-MgServiceAnnouncementHealthOverview.md | 16 +++++++--- .../v1.0/Get-MgServiceAnnouncementIssue.md | 8 +++-- .../v1.0/Get-MgServiceAnnouncementMessage.md | 8 +++-- ...-MgServiceAnnouncementMessageAttachment.md | 8 +++-- ...iceAnnouncementMessageAttachmentArchive.md | 8 +++-- ...iceAnnouncementMessageAttachmentContent.md | 8 +++-- ...oke-MgArchiveServiceAnnouncementMessage.md | 4 ++- ...ke-MgFavoriteServiceAnnouncementMessage.md | 4 ++- ...ke-MgMarkServiceAnnouncementMessageRead.md | 4 ++- ...-MgMarkServiceAnnouncementMessageUnread.md | 4 ++- ...gReportServiceAnnouncementIssueIncident.md | 4 ++- ...e-MgUnarchiveServiceAnnouncementMessage.md | 4 ++- ...-MgUnfavoriteServiceAnnouncementMessage.md | 4 ++- .../Confirm-MgDirectoryObjectMemberGroup.md | 4 ++- .../examples/v1.0/Get-MgDirectoryObject.md | 4 ++- ...rectoryObjectAvailableExtensionProperty.md | 4 ++- .../v1.0/Get-MgDirectoryObjectById.md | 4 ++- .../v1.0/Get-MgDirectoryObjectMemberGroup.md | 4 ++- .../v1.0/Get-MgDirectoryObjectMemberObject.md | 4 ++- .../examples/v1.0/Remove-MgDirectoryObject.md | 4 ++- .../v1.0/Test-MgDirectoryObjectProperty.md | 4 ++- .../examples/v1.0/Get-MgEducationClass.md | 8 +++-- .../v1.0/Get-MgEducationClassAssignment.md | 12 +++++-- .../Get-MgEducationClassAssignmentCategory.md | 8 +++-- ...MgEducationClassAssignmentCategoryDelta.md | 16 +++++++--- .../Get-MgEducationClassAssignmentDefault.md | 4 ++- .../Get-MgEducationClassAssignmentDelta.md | 12 +++++-- .../Get-MgEducationClassAssignmentResource.md | 28 ++++++++++++---- .../Get-MgEducationClassAssignmentRubric.md | 4 ++- .../Get-MgEducationClassAssignmentSetting.md | 4 ++- ...et-MgEducationClassAssignmentSubmission.md | 16 +++++++--- ...ucationClassAssignmentSubmissionOutcome.md | 4 ++- ...cationClassAssignmentSubmissionResource.md | 28 ++++++++++++---- ...ssAssignmentSubmissionSubmittedResource.md | 4 ++- .../v1.0/Get-MgEducationClassDelta.md | 4 ++- .../v1.0/Get-MgEducationClassMember.md | 4 ++- .../v1.0/Get-MgEducationClassSchool.md | 4 ++- .../v1.0/Get-MgEducationClassTeacher.md | 4 ++- .../v1.0/Get-MgEducationMeAssignment.md | 4 ++- .../examples/v1.0/Get-MgEducationMeClass.md | 4 ++- .../examples/v1.0/Get-MgEducationMeRubric.md | 8 +++-- .../examples/v1.0/Get-MgEducationMeSchool.md | 4 ++- .../examples/v1.0/Get-MgEducationSchool.md | 8 +++-- .../v1.0/Get-MgEducationSchoolClass.md | 4 ++- .../v1.0/Get-MgEducationSchoolDelta.md | 4 ++- .../v1.0/Get-MgEducationSchoolUser.md | 4 ++- .../examples/v1.0/Get-MgEducationUser.md | 8 +++-- .../v1.0/Get-MgEducationUserAssignment.md | 8 +++-- .../examples/v1.0/Get-MgEducationUserDelta.md | 4 ++- .../v1.0/Get-MgEducationUserTaughtClass.md | 8 +++-- ...ssignEducationClassAssignmentSubmission.md | 8 +++-- ...eturnEducationClassAssignmentSubmission.md | 4 ++- ...ubmitEducationClassAssignmentSubmission.md | 4 ++- .../examples/v1.0/New-MgEducationClass.md | 4 ++- .../v1.0/New-MgEducationClassAssignment.md | 4 ++- .../New-MgEducationClassAssignmentCategory.md | 4 ++- ...MgEducationClassAssignmentCategoryByRef.md | 8 +++-- .../New-MgEducationClassAssignmentResource.md | 24 ++++++++++---- ...cationClassAssignmentSubmissionResource.md | 24 ++++++++++---- .../v1.0/New-MgEducationClassMemberByRef.md | 4 ++- .../v1.0/New-MgEducationClassTeacherByRef.md | 4 ++- .../examples/v1.0/New-MgEducationMeRubric.md | 8 +++-- .../examples/v1.0/New-MgEducationSchool.md | 4 ++- .../v1.0/New-MgEducationSchoolClassByRef.md | 4 ++- .../v1.0/New-MgEducationSchoolUserByRef.md | 4 ++- .../examples/v1.0/New-MgEducationUser.md | 4 ++- .../Publish-MgEducationClassAssignment.md | 4 ++- .../examples/v1.0/Remove-MgEducationClass.md | 4 ++- .../v1.0/Remove-MgEducationClassAssignment.md | 4 ++- ...move-MgEducationClassAssignmentCategory.md | 4 ++- ...MgEducationClassAssignmentCategoryByRef.md | 4 ++- ...move-MgEducationClassAssignmentResource.md | 4 ++- ...e-MgEducationClassAssignmentRubricByRef.md | 4 ++- ...cationClassAssignmentSubmissionResource.md | 4 ++- .../v1.0/Remove-MgEducationMeRubric.md | 4 ++- .../examples/v1.0/Remove-MgEducationSchool.md | 4 ++- .../examples/v1.0/Remove-MgEducationUser.md | 4 ++- ...t-MgEducationClassAssignmentRubricByRef.md | 4 ++- ...it-MgEducationClassAssignmentSubmission.md | 4 ++- .../examples/v1.0/Update-MgEducationClass.md | 4 ++- .../v1.0/Update-MgEducationClassAssignment.md | 4 ++- ...pdate-MgEducationClassAssignmentDefault.md | 4 ++- ...pdate-MgEducationClassAssignmentSetting.md | 4 ++- ...ucationClassAssignmentSubmissionOutcome.md | 12 +++++-- .../v1.0/Update-MgEducationMeRubric.md | 4 ++- .../examples/v1.0/Update-MgEducationSchool.md | 4 ++- .../examples/v1.0/Update-MgEducationUser.md | 4 ++- src/Files/Files/examples/v1.0/Get-MgDrive.md | 4 ++- .../examples/v1.0/Get-MgDriveItemChild.md | 4 ++- .../examples/v1.0/Get-MgGroupDefaultDrive.md | 4 ++- .../Files/examples/v1.0/Get-MgGroupDrive.md | 4 ++- .../examples/v1.0/Get-MgShareDriveItem.md | 8 +++-- ...t-MgShareSharedDriveItemSharedDriveItem.md | 4 ++- .../examples/v1.0/Get-MgUserDefaultDrive.md | 8 +++-- .../Files/examples/v1.0/Get-MgUserDrive.md | 8 +++-- .../examples/v1.0/Grant-MgSharePermission.md | 4 ++- .../v1.0/Invoke-MgCheckinDriveItem.md | 4 ++- .../v1.0/Invoke-MgCheckoutDriveItem.md | 4 ++- .../v1.0/Restore-MgDriveItemVersion.md | 4 ++- .../examples/v1.0/Add-MgGroupFavorite.md | 4 ++- .../v1.0/Get-MgGroupAcceptedSender.md | 4 ++- .../examples/v1.0/Get-MgGroupConversation.md | 12 +++++-- .../v1.0/Get-MgGroupConversationThread.md | 4 ++- .../Groups/examples/v1.0/Get-MgGroupDelta.md | 4 ++- .../v1.0/Get-MgGroupLifecyclePolicy.md | 8 +++-- .../v1.0/Get-MgGroupLifecyclePolicyByGroup.md | 4 ++- .../examples/v1.0/Get-MgGroupMemberOf.md | 4 ++- .../v1.0/Get-MgGroupPermissionGrant.md | 4 ++- .../Groups/examples/v1.0/Get-MgGroupPhoto.md | 4 ++- .../v1.0/Get-MgGroupRejectedSender.md | 4 ++- .../Groups/examples/v1.0/Get-MgGroupThread.md | 12 +++++-- .../examples/v1.0/Get-MgGroupThreadPost.md | 4 ++- .../v1.0/Get-MgGroupThreadPostAttachment.md | 4 ++- .../v1.0/Get-MgGroupThreadPostExtension.md | 4 ++- .../v1.0/Get-MgGroupTransitiveMember.md | 4 ++- .../v1.0/Get-MgGroupTransitiveMemberOf.md | 4 ++- .../v1.0/Invoke-MgForwardGroupThreadPost.md | 4 ++- .../examples/v1.0/Invoke-MgGraphGroup.md | 4 ++- .../examples/v1.0/Invoke-MgRenewGroup.md | 4 ++- .../v1.0/Invoke-MgReplyGroupThread.md | 16 +++++++--- .../v1.0/Invoke-MgReplyGroupThreadPost.md | 4 ++- .../v1.0/Invoke-MgSubscribeGroupByMail.md | 4 ++- .../v1.0/New-MgGroupAcceptedSenderByRef.md | 4 ++- .../examples/v1.0/New-MgGroupConversation.md | 4 ++- .../v1.0/New-MgGroupConversationThread.md | 4 ++- .../v1.0/New-MgGroupLifecyclePolicy.md | 4 ++- .../examples/v1.0/New-MgGroupMemberByRef.md | 4 ++- .../v1.0/New-MgGroupRejectedSenderByRef.md | 4 ++- .../Groups/examples/v1.0/New-MgGroupThread.md | 4 ++- .../v1.0/Remove-MgGroupConversation.md | 8 +++-- .../examples/v1.0/Remove-MgGroupFavorite.md | 4 ++- .../v1.0/Remove-MgGroupLifecyclePolicy.md | 4 ++- .../v1.0/Remove-MgGroupMemberByRef.md | 4 ++- .../examples/v1.0/Remove-MgGroupOwnerByRef.md | 4 ++- .../examples/v1.0/Remove-MgGroupThread.md | 8 +++-- .../examples/v1.0/Reset-MgGroupUnseenCount.md | 4 ++- .../examples/v1.0/Set-MgGroupLicense.md | 8 +++-- .../examples/v1.0/Test-MgGroupProperty.md | 4 ++- .../v1.0/Update-MgGroupLifecyclePolicy.md | 4 ++- .../examples/v1.0/Update-MgGroupThread.md | 4 ++- .../v1.0/Update-MgGroupThreadPostExtension.md | 4 ++- .../examples/v1.0/Confirm-MgDomain.md | 4 ++- .../examples/v1.0/Get-MgContactDelta.md | 4 ++- .../v1.0/Get-MgContactDirectReport.md | 4 ++- .../examples/v1.0/Get-MgContactManager.md | 4 ++- .../examples/v1.0/Get-MgContactMemberOf.md | 4 ++- .../v1.0/Get-MgContactTransitiveMemberOf.md | 4 ++- .../examples/v1.0/Get-MgContract.md | 8 +++-- .../examples/v1.0/Get-MgDevice.md | 28 ++++++++++++---- .../examples/v1.0/Get-MgDeviceMemberOf.md | 4 ++- .../v1.0/Get-MgDeviceRegisteredOwner.md | 4 ++- .../v1.0/Get-MgDeviceRegisteredUser.md | 4 ++- .../v1.0/Get-MgDeviceTransitiveMemberOf.md | 4 ++- .../v1.0/Get-MgDirectoryAdministrativeUnit.md | 8 +++-- ...Get-MgDirectoryAdministrativeUnitMember.md | 4 ++- ...gDirectoryAdministrativeUnitMemberByRef.md | 4 ++- ...ctoryAdministrativeUnitScopedRoleMember.md | 8 +++-- .../Get-MgDirectoryFederationConfiguration.md | 8 +++-- .../examples/v1.0/Get-MgDirectoryRoleDelta.md | 4 ++- .../v1.0/Get-MgDirectoryRoleScopedMember.md | 4 ++- .../v1.0/Get-MgDirectoryRoleTemplate.md | 8 +++-- .../v1.0/Get-MgDomainNameReference.md | 4 ++- .../Get-MgDomainServiceConfigurationRecord.md | 4 ++- .../v1.0/Get-MgDomainVerificationDnsRecord.md | 4 ++- .../examples/v1.0/Get-MgOrganization.md | 8 +++-- .../v1.0/Get-MgOrganizationBranding.md | 12 +++++-- .../Get-MgOrganizationBrandingLocalization.md | 8 +++-- ...anizationBrandingLocalizationBannerLogo.md | 12 +++++-- .../v1.0/Invoke-MgForceDomainDelete.md | 4 ++- .../examples/v1.0/New-MgDevice.md | 4 ++- .../v1.0/New-MgDeviceRegisteredOwnerByRef.md | 4 ++- .../v1.0/New-MgDeviceRegisteredUserByRef.md | 4 ++- .../v1.0/New-MgDirectoryAdministrativeUnit.md | 4 ++- ...gDirectoryAdministrativeUnitMemberByRef.md | 4 ++- ...ctoryAdministrativeUnitScopedRoleMember.md | 4 ++- .../New-MgDirectoryFederationConfiguration.md | 4 ++- .../examples/v1.0/New-MgDirectoryRole.md | 4 ++- .../examples/v1.0/New-MgDomain.md | 4 ++- .../New-MgOrganizationBrandingLocalization.md | 4 ++- .../examples/v1.0/Remove-MgDevice.md | 4 ++- .../Remove-MgDeviceRegisteredOwnerByRef.md | 4 ++- .../Remove-MgDirectoryAdministrativeUnit.md | 4 ++- ...gDirectoryAdministrativeUnitMemberByRef.md | 4 ++- ...ctoryAdministrativeUnitScopedRoleMember.md | 4 ++- .../v1.0/Remove-MgDirectoryDeletedItem.md | 4 ++- ...move-MgDirectoryFederationConfiguration.md | 4 ++- .../v1.0/Remove-MgDirectoryRoleMemberByRef.md | 4 ++- .../examples/v1.0/Remove-MgDomain.md | 4 ++- ...move-MgOrganizationBrandingLocalization.md | 4 ++- .../v1.0/Restore-MgDirectoryDeletedItem.md | 4 ++- .../examples/v1.0/Update-MgDevice.md | 8 +++-- .../Update-MgDirectoryAdministrativeUnit.md | 4 ++- .../examples/v1.0/Update-MgDomain.md | 4 ++- .../examples/v1.0/Update-MgOrganization.md | 4 ++- .../v1.0/Update-MgOrganizationBranding.md | 4 ++- ...date-MgOrganizationBrandingLocalization.md | 8 +++-- ...eAccessReviewDefinitionInstanceDecision.md | 4 ++- ...et-MgEntitlementManagementAccessPackage.md | 12 +++++-- ...ccessPackageApplicablePolicyRequirement.md | 4 ++- ...entAccessPackageAssignmentApprovalStage.md | 8 +++-- .../Get-MgEntitlementManagementAssignment.md | 12 +++++-- ...MgEntitlementManagementAssignmentPolicy.md | 8 +++-- ...gEntitlementManagementAssignmentRequest.md | 12 +++++-- .../Get-MgEntitlementManagementCatalog.md | 8 +++-- ...itlementManagementConnectedOrganization.md | 8 +++-- .../Get-MgEntitlementManagementSetting.md | 4 ++- ...dentityGovernanceAccessReviewDefinition.md | 16 +++++++--- ...overnanceAccessReviewDefinitionInstance.md | 12 +++++-- ...viewDefinitionInstanceContactedReviewer.md | 4 ++- ...eAccessReviewDefinitionInstanceDecision.md | 12 +++++-- ...anceAccessReviewDefinitionInstanceStage.md | 12 +++++-- ...ssReviewDefinitionInstanceStageDecision.md | 12 +++++-- ...GovernanceAccessReviewHistoryDefinition.md | 8 +++-- ...ceAccessReviewHistoryDefinitionInstance.md | 4 ++- ...t-MgIdentityGovernanceAppConsentRequest.md | 16 +++++++--- ...anceAppConsentRequestUserConsentRequest.md | 12 +++++-- ...-MgIdentityGovernanceTermOfUseAgreement.md | 16 +++++++--- ...dentityGovernanceTermOfUseAgreementFile.md | 4 ++- .../v1.0/Get-MgUserAgreementAcceptance.md | 4 ++- ...sReviewDefinitionInstanceRecommendation.md | 4 ++- ...sReviewDefinitionInstanceRecordDecision.md | 4 ++- ...ew-MgEntitlementManagementAccessPackage.md | 4 ++- ...MgEntitlementManagementAssignmentPolicy.md | 8 +++-- ...gEntitlementManagementAssignmentRequest.md | 20 +++++++++--- .../New-MgEntitlementManagementCatalog.md | 4 ++- ...itlementManagementConnectedOrganization.md | 4 ++- ...nnectedOrganizationExternalSponsorByRef.md | 4 ++- ...nnectedOrganizationInternalSponsorByRef.md | 4 ++- ...dentityGovernanceAccessReviewDefinition.md | 16 +++++++--- ...GovernanceAccessReviewHistoryDefinition.md | 4 ++- ...iewHistoryDefinitionInstanceDownloadUri.md | 4 ++- ...-MgIdentityGovernanceTermOfUseAgreement.md | 4 ++- ...ve-MgEntitlementManagementAccessPackage.md | 4 ++- ...MgEntitlementManagementAssignmentPolicy.md | 4 ++- ...gEntitlementManagementAssignmentRequest.md | 4 ++- .../Remove-MgEntitlementManagementCatalog.md | 4 ++- ...itlementManagementConnectedOrganization.md | 4 ++- ...nnectedOrganizationExternalSponsorByRef.md | 4 ++- ...nnectedOrganizationInternalSponsorByRef.md | 4 ++- ...dentityGovernanceAccessReviewDefinition.md | 4 ++- ...-MgIdentityGovernanceTermOfUseAgreement.md | 4 ++- ...eAccessReviewDefinitionInstanceDecision.md | 4 ++- ...eAccessReviewDefinitionInstanceReminder.md | 4 ++- ...gEntitlementManagementAssignmentRequest.md | 4 ++- ...overnanceAccessReviewDefinitionInstance.md | 4 ++- ...anceAccessReviewDefinitionInstanceStage.md | 4 ++- ...te-MgEntitlementManagementAccessPackage.md | 4 ++- .../Update-MgEntitlementManagementCatalog.md | 4 ++- ...itlementManagementConnectedOrganization.md | 4 ++- .../Update-MgEntitlementManagementSetting.md | 4 ++- ...overnanceAccessReviewDefinitionInstance.md | 4 ++- ...anceAccessReviewDefinitionInstanceStage.md | 4 ++- ...ssReviewDefinitionInstanceStageDecision.md | 12 +++++-- ...-MgIdentityGovernanceTermOfUseAgreement.md | 4 ++- .../v1.0/Confirm-MgRiskyUserCompromised.md | 4 ++- .../v1.0/Get-MgDataPolicyOperation.md | 4 ++- .../v1.0/Get-MgIdentityApiConnector.md | 8 +++-- .../v1.0/Get-MgIdentityB2XUserFlow.md | 12 +++++-- ...t-MgIdentityB2XUserFlowIdentityProvider.md | 4 ++- .../v1.0/Get-MgIdentityB2XUserFlowLanguage.md | 8 +++-- ...tyB2XUserFlowLanguageDefaultPageContent.md | 4 ++- ...IdentityB2XUserFlowLanguageOverridePage.md | 4 ++- ...ntityB2XUserFlowUserAttributeAssignment.md | 16 +++++++--- ...B2XUserFlowUserAttributeAssignmentOrder.md | 4 ++- .../examples/v1.0/Get-MgIdentityProvider.md | 32 ++++++++++++++----- .../v1.0/Get-MgIdentityUserFlowAttribute.md | 8 +++-- ...formationProtectionBitlockerRecoveryKey.md | 16 +++++++--- ...mationProtectionThreatAssessmentRequest.md | 24 ++++++++++---- .../v1.0/Get-MgOauth2PermissionGrant.md | 8 +++-- .../v1.0/Get-MgOauth2PermissionGrantDelta.md | 4 ++- ...zationCertificateBasedAuthConfiguration.md | 8 +++-- .../Get-MgPolicyActivityBasedTimeoutPolicy.md | 8 +++-- .../Get-MgPolicyAdminConsentRequestPolicy.md | 4 ++- .../Get-MgPolicyAuthenticationFlowPolicy.md | 4 ++- .../Get-MgPolicyAuthenticationMethodPolicy.md | 4 ++- ...PolicyAuthenticationMethodConfiguration.md | 16 +++++++--- .../v1.0/Get-MgPolicyClaimMappingPolicy.md | 8 +++-- .../Get-MgPolicyCrossTenantAccessPolicy.md | 4 ++- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 4 ++- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 8 +++-- .../v1.0/Get-MgPolicyFeatureRolloutPolicy.md | 12 +++++-- .../Get-MgPolicyHomeRealmDiscoveryPolicy.md | 8 +++-- ...dentitySecurityDefaultEnforcementPolicy.md | 4 ++- .../v1.0/Get-MgPolicyPermissionGrantPolicy.md | 8 +++-- ...et-MgPolicyPermissionGrantPolicyExclude.md | 4 ++- ...et-MgPolicyPermissionGrantPolicyInclude.md | 4 ++- .../v1.0/Get-MgPolicyRoleManagementPolicy.md | 16 +++++++--- ...-MgPolicyRoleManagementPolicyAssignment.md | 16 +++++++--- .../Get-MgPolicyRoleManagementPolicyRule.md | 8 +++-- .../v1.0/Get-MgPolicyTokenIssuancePolicy.md | 8 +++-- .../v1.0/Get-MgPolicyTokenLifetimePolicy.md | 8 +++-- .../examples/v1.0/Get-MgRiskDetection.md | 8 +++-- .../examples/v1.0/Get-MgRiskyUser.md | 8 +++-- .../examples/v1.0/Get-MgRiskyUserHistory.md | 8 +++-- .../Get-MgUserAuthenticationEmailMethod.md | 8 +++-- .../Get-MgUserAuthenticationFido2Method.md | 4 ++- ...henticationMicrosoftAuthenticatorMethod.md | 4 ++- .../v1.0/Get-MgUserAuthenticationOperation.md | 4 ++- .../Get-MgUserAuthenticationPasswordMethod.md | 8 +++-- .../Get-MgUserAuthenticationPhoneMethod.md | 8 +++-- ...-MgUserAuthenticationSoftwareOathMethod.md | 8 +++-- ...AuthenticationTemporaryAccessPassMethod.md | 8 +++-- ...henticationWindowHelloForBusinessMethod.md | 8 +++-- .../Invoke-MgAvailableIdentityProviderType.md | 12 +++++-- .../v1.0/Invoke-MgDismissRiskyUser.md | 4 ++- ...adIdentityApiConnectorClientCertificate.md | 4 ++- .../v1.0/New-MgIdentityApiConnector.md | 12 +++++-- .../v1.0/New-MgIdentityB2XUserFlow.md | 12 +++++-- ...ntityB2XUserFlowUserAttributeAssignment.md | 4 ++- .../examples/v1.0/New-MgIdentityProvider.md | 8 +++-- .../v1.0/New-MgIdentityUserFlowAttribute.md | 4 ++- ...mationProtectionThreatAssessmentRequest.md | 16 +++++++--- .../v1.0/New-MgOauth2PermissionGrant.md | 4 ++- .../New-MgPolicyActivityBasedTimeoutPolicy.md | 4 ++- .../v1.0/New-MgPolicyClaimMappingPolicy.md | 4 ++- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 4 ++- .../v1.0/New-MgPolicyFeatureRolloutPolicy.md | 4 ++- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 4 ++- .../New-MgPolicyHomeRealmDiscoveryPolicy.md | 4 ++- .../v1.0/New-MgPolicyPermissionGrantPolicy.md | 4 ++- ...ew-MgPolicyPermissionGrantPolicyExclude.md | 4 ++- ...ew-MgPolicyPermissionGrantPolicyInclude.md | 4 ++- .../v1.0/New-MgPolicyTokenIssuancePolicy.md | 4 ++- .../v1.0/New-MgPolicyTokenLifetimePolicy.md | 4 ++- .../New-MgUserAuthenticationEmailMethod.md | 4 ++- .../New-MgUserAuthenticationPhoneMethod.md | 4 ++- ...AuthenticationTemporaryAccessPassMethod.md | 4 ++- .../v1.0/Remove-MgIdentityApiConnector.md | 4 ++- .../v1.0/Remove-MgIdentityB2XUserFlow.md | 4 ++- ...ntityB2XUserFlowUserAttributeAssignment.md | 4 ++- .../v1.0/Remove-MgIdentityProvider.md | 8 +++-- .../Remove-MgIdentityUserFlowAttribute.md | 4 ++- .../v1.0/Remove-MgOauth2PermissionGrant.md | 4 ++- ...move-MgPolicyActivityBasedTimeoutPolicy.md | 4 ++- ...PolicyAuthenticationMethodConfiguration.md | 16 +++++++--- .../v1.0/Remove-MgPolicyClaimMappingPolicy.md | 4 ++- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 4 ++- .../Remove-MgPolicyFeatureRolloutPolicy.md | 4 ++- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 4 ++- ...Remove-MgPolicyHomeRealmDiscoveryPolicy.md | 4 ++- .../Remove-MgPolicyPermissionGrantPolicy.md | 4 ++- ...ve-MgPolicyPermissionGrantPolicyExclude.md | 4 ++- ...ve-MgPolicyPermissionGrantPolicyInclude.md | 4 ++- .../Remove-MgPolicyTokenIssuancePolicy.md | 4 ++- .../Remove-MgPolicyTokenLifetimePolicy.md | 4 ++- .../Remove-MgUserAuthenticationEmailMethod.md | 4 ++- .../Remove-MgUserAuthenticationFido2Method.md | 4 ++- ...henticationMicrosoftAuthenticatorMethod.md | 4 ++- .../Remove-MgUserAuthenticationPhoneMethod.md | 4 ++- ...-MgUserAuthenticationSoftwareOathMethod.md | 4 ++- ...AuthenticationTemporaryAccessPassMethod.md | 4 ++- ...henticationWindowHelloForBusinessMethod.md | 4 ++- ...enantAccessPolicyDefaultToSystemDefault.md | 4 ++- ...yB2XUserFlowLanguageOverridePageContent.md | 4 ++- ...B2XUserFlowUserAttributeAssignmentOrder.md | 4 ++- .../v1.0/Update-MgIdentityApiConnector.md | 12 +++++-- ...ntityB2XUserFlowUserAttributeAssignment.md | 4 ++- .../v1.0/Update-MgIdentityProvider.md | 12 +++++-- .../Update-MgIdentityUserFlowAttribute.md | 4 ++- .../v1.0/Update-MgOauth2PermissionGrant.md | 4 ++- ...date-MgPolicyActivityBasedTimeoutPolicy.md | 4 ++- ...Update-MgPolicyAuthenticationFlowPolicy.md | 4 ++- ...date-MgPolicyAuthenticationMethodPolicy.md | 4 ++- ...PolicyAuthenticationMethodConfiguration.md | 16 +++++++--- .../v1.0/Update-MgPolicyClaimMappingPolicy.md | 4 ++- .../Update-MgPolicyCrossTenantAccessPolicy.md | 4 ++- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 4 ++- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 4 ++- .../Update-MgPolicyFeatureRolloutPolicy.md | 4 ++- ...Update-MgPolicyHomeRealmDiscoveryPolicy.md | 4 ++- ...dentitySecurityDefaultEnforcementPolicy.md | 4 ++- .../Update-MgPolicyPermissionGrantPolicy.md | 4 ++- ...Update-MgPolicyRoleManagementPolicyRule.md | 4 ++- .../Update-MgPolicyTokenIssuancePolicy.md | 4 ++- .../Update-MgPolicyTokenLifetimePolicy.md | 4 ++- .../Update-MgUserAuthenticationEmailMethod.md | 4 ++- .../Update-MgUserAuthenticationPhoneMethod.md | 4 ++- ...t-MgUserInferenceClassificationOverride.md | 4 ++- .../examples/v1.0/Get-MgUserMailFolder.md | 12 +++++-- .../v1.0/Get-MgUserMailFolderChildFolder.md | 4 ++- .../v1.0/Get-MgUserMailFolderMessage.md | 4 ++- .../v1.0/Get-MgUserMailFolderMessageRule.md | 8 +++-- .../Mail/examples/v1.0/Get-MgUserMessage.md | 20 +++++++++--- .../v1.0/Get-MgUserMessageAttachment.md | 28 ++++++++++++---- .../v1.0/Get-MgUserMessageExtension.md | 4 ++- ...w-MgUserInferenceClassificationOverride.md | 4 ++- .../examples/v1.0/New-MgUserMailFolder.md | 4 ++- .../v1.0/New-MgUserMailFolderChildFolder.md | 8 +++-- .../v1.0/New-MgUserMailFolderMessage.md | 4 ++- .../v1.0/New-MgUserMailFolderMessageRule.md | 4 ++- .../Mail/examples/v1.0/New-MgUserMessage.md | 8 +++-- .../v1.0/New-MgUserMessageAttachment.md | 8 +++-- ...e-MgUserInferenceClassificationOverride.md | 4 ++- .../examples/v1.0/Remove-MgUserMailFolder.md | 4 ++- .../Remove-MgUserMailFolderMessageRule.md | 4 ++- .../examples/v1.0/Remove-MgUserMessage.md | 8 +++-- .../v1.0/Remove-MgUserMessageExtension.md | 4 ++- ...e-MgUserInferenceClassificationOverride.md | 4 ++- .../examples/v1.0/Update-MgUserMailFolder.md | 8 +++-- .../Update-MgUserMailFolderMessageRule.md | 4 ++- .../examples/v1.0/Update-MgUserMessage.md | 8 +++-- .../v1.0/Get-MgUserOnenoteNotebook.md | 12 +++++-- .../v1.0/Get-MgUserOnenoteNotebookSection.md | 4 ++- .../Get-MgUserOnenoteNotebookSectionGroup.md | 4 ++- .../v1.0/Get-MgUserOnenoteOperation.md | 4 ++- .../examples/v1.0/Get-MgUserOnenoteSection.md | 8 +++-- .../v1.0/Get-MgUserOnenoteSectionGroup.md | 4 ++- .../Get-MgUserOnenoteSectionGroupSection.md | 4 ++- .../v1.0/New-MgUserOnenoteNotebook.md | 4 ++- .../v1.0/New-MgUserOnenoteNotebookSection.md | 4 ++- .../New-MgUserOnenoteNotebookSectionGroup.md | 4 ++- .../New-MgUserOnenoteSectionGroupSection.md | 4 ++- .../examples/v1.0/Remove-MgUserOnenotePage.md | 4 ++- .../People/examples/v1.0/Get-MgUserPerson.md | 4 ++- .../examples/v1.0/Get-MgUserUsedInsight.md | 8 +++-- .../examples/v1.0/Get-MgUserContact.md | 8 +++-- .../examples/v1.0/Get-MgUserContactFolder.md | 8 +++-- .../Get-MgUserContactFolderChildFolder.md | 4 ++- .../v1.0/Get-MgUserContactFolderContact.md | 4 ++- .../examples/v1.0/New-MgUserContact.md | 4 ++- .../examples/v1.0/New-MgUserContactFolder.md | 4 ++- .../New-MgUserContactFolderChildFolder.md | 4 ++- .../v1.0/New-MgUserContactFolderContact.md | 4 ++- .../examples/v1.0/Remove-MgUserContact.md | 4 ++- .../v1.0/Remove-MgUserContactFolder.md | 4 ++- .../examples/v1.0/Update-MgUserContact.md | 4 ++- .../v1.0/Update-MgUserContactFolder.md | 4 ++- .../examples/v1.0/Get-MgGroupPlannerPlan.md | 4 ++- .../Planner/examples/v1.0/Get-MgPlanner.md | 4 ++- .../examples/v1.0/Get-MgPlannerBucket.md | 8 +++-- .../examples/v1.0/Get-MgPlannerBucketTask.md | 4 ++- .../examples/v1.0/Get-MgPlannerPlan.md | 8 +++-- .../examples/v1.0/Get-MgPlannerPlanBucket.md | 4 ++- .../examples/v1.0/Get-MgPlannerPlanDetail.md | 4 ++- .../examples/v1.0/Get-MgPlannerPlanTask.md | 4 ++- .../examples/v1.0/Get-MgPlannerTask.md | 8 +++-- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 4 ++- .../Get-MgPlannerTaskBucketTaskBoardFormat.md | 4 ++- .../examples/v1.0/Get-MgPlannerTaskDetail.md | 4 ++- ...et-MgPlannerTaskProgressTaskBoardFormat.md | 4 ++- .../examples/v1.0/Get-MgUserPlannerPlan.md | 4 ++- .../examples/v1.0/Get-MgUserPlannerTask.md | 4 ++- .../examples/v1.0/New-MgPlannerBucket.md | 4 ++- .../examples/v1.0/New-MgPlannerPlan.md | 4 ++- .../examples/v1.0/New-MgPlannerTask.md | 4 ++- .../examples/v1.0/Remove-MgPlannerBucket.md | 4 ++- .../examples/v1.0/Remove-MgPlannerPlan.md | 4 ++- .../examples/v1.0/Remove-MgPlannerTask.md | 4 ++- .../examples/v1.0/Update-MgPlannerBucket.md | 4 ++- .../examples/v1.0/Update-MgPlannerPlan.md | 4 ++- .../v1.0/Update-MgPlannerPlanDetail.md | 4 ++- .../examples/v1.0/Update-MgPlannerTask.md | 4 ++- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 4 ++- ...date-MgPlannerTaskBucketTaskBoardFormat.md | 4 ++- .../v1.0/Update-MgPlannerTaskDetail.md | 4 ++- ...te-MgPlannerTaskProgressTaskBoardFormat.md | 4 ++- .../v1.0/Get-MgAuditLogDirectoryAudit.md | 8 +++-- .../v1.0/Get-MgAuditLogProvisioning.md | 8 +++-- .../examples/v1.0/Get-MgAuditLogSignIn.md | 12 +++++-- .../Get-MgReportDailyPrintUsageByPrinter.md | 8 +++-- .../v1.0/Get-MgReportDailyPrintUsageByUser.md | 8 +++-- .../Get-MgReportMonthlyPrintUsageByPrinter.md | 4 ++- .../Get-MgReportMonthlyPrintUsageByUser.md | 4 ++- .../examples/v1.0/Get-MgSchemaExtension.md | 8 +++-- .../examples/v1.0/New-MgSchemaExtension.md | 12 +++++-- .../examples/v1.0/Remove-MgSchemaExtension.md | 4 ++- .../examples/v1.0/Update-MgSchemaExtension.md | 8 +++-- .../examples/v1.0/Get-MgExternalConnection.md | 8 +++-- .../v1.0/Get-MgExternalConnectionGroup.md | 4 ++- .../v1.0/Get-MgExternalConnectionItem.md | 4 ++- .../v1.0/Get-MgExternalConnectionOperation.md | 4 ++- .../v1.0/Get-MgExternalConnectionSchema.md | 4 ++- .../examples/v1.0/New-MgExternalConnection.md | 4 ++- .../v1.0/New-MgExternalConnectionGroup.md | 4 ++- .../New-MgExternalConnectionGroupMember.md | 12 +++++-- .../v1.0/Remove-MgExternalConnection.md | 4 ++- .../v1.0/Remove-MgExternalConnectionGroup.md | 4 ++- .../Remove-MgExternalConnectionGroupMember.md | 4 ++- .../v1.0/Remove-MgExternalConnectionItem.md | 4 ++- .../v1.0/Update-MgExternalConnection.md | 4 ++- .../v1.0/Update-MgExternalConnectionGroup.md | 4 ++- .../v1.0/Update-MgExternalConnectionItem.md | 4 ++- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 8 +++-- ...discoveryCaseNoncustodialDataSourceHold.md | 8 +++-- ...rityCaseEdiscoveryCaseReviewSetQueryTag.md | 4 ++- ...yCaseEdiscoveryCaseReviewSetToReviewSet.md | 4 ++- .../Close-MgSecurityCaseEdiscoveryCase.md | 4 ++- .../examples/v1.0/Get-MgSecurityAlert.md | 8 +++-- .../v1.0/Get-MgSecurityCaseEdiscoveryCase.md | 8 +++-- ...t-MgSecurityCaseEdiscoveryCaseCustodian.md | 8 +++-- ...iscoveryCaseCustodianLastIndexOperation.md | 4 ++- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 4 ++- ...iscoveryCaseCustodianUnifiedGroupSource.md | 4 ++- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 4 ++- ...aseEdiscoveryCaseNoncustodialDataSource.md | 12 +++++-- ...t-MgSecurityCaseEdiscoveryCaseOperation.md | 8 +++-- ...t-MgSecurityCaseEdiscoveryCaseReviewSet.md | 8 +++-- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 8 +++-- .../Get-MgSecurityCaseEdiscoveryCaseSearch.md | 8 +++-- ...aseEdiscoveryCaseSearchAdditionalSource.md | 8 +++-- ...CaseEdiscoveryCaseSearchCustodianSource.md | 4 ++- ...seSearchLastEstimateStatisticsOperation.md | 4 ++- ...eEdiscoveryCaseSearchNoncustodialSource.md | 4 ++- ...Get-MgSecurityCaseEdiscoveryCaseSetting.md | 4 ++- .../Get-MgSecurityCaseEdiscoveryCaseTag.md | 8 +++-- .../v1.0/Get-MgSecuritySecureScore.md | 8 +++-- ...Get-MgSecuritySecureScoreControlProfile.md | 8 +++-- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 ++- ...sSecurityCaseEdiscoveryCaseTagHierarchy.md | 4 ++- ...urityCaseEdiscoveryCaseSearchStatistics.md | 4 ++- ...voke-MgReopenSecurityCaseEdiscoveryCase.md | 4 ++- .../v1.0/New-MgSecurityCaseEdiscoveryCase.md | 4 ++- ...w-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 ++- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 4 ++- ...iscoveryCaseCustodianUnifiedGroupSource.md | 12 +++++-- ...aseEdiscoveryCaseNoncustodialDataSource.md | 4 ++- ...w-MgSecurityCaseEdiscoveryCaseReviewSet.md | 4 ++- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 ++- .../New-MgSecurityCaseEdiscoveryCaseSearch.md | 4 ++- ...h-MgSecurityCaseEdiscoveryCaseCustodian.md | 4 ++- ...aseEdiscoveryCaseNoncustodialDataSource.md | 4 ++- .../Remove-MgSecurityCaseEdiscoveryCase.md | 4 ++- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 4 ++- ...discoveryCaseNoncustodialDataSourceHold.md | 8 +++-- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 ++- ...move-MgSecurityCaseEdiscoveryCaseSearch.md | 4 ++- .../Remove-MgSecurityCaseEdiscoveryCaseTag.md | 4 ++- ...urityCaseEdiscoveryCaseSettingToDefault.md | 4 ++- .../examples/v1.0/Update-MgSecurityAlert.md | 8 +++-- .../Update-MgSecurityCaseEdiscoveryCase.md | 4 ++- ...ecurityCaseEdiscoveryCaseCustodianIndex.md | 4 ++- ...iscoveryCaseNoncustodialDataSourceIndex.md | 4 ++- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 4 ++- ...date-MgSecurityCaseEdiscoveryCaseSearch.md | 4 ++- ...ate-MgSecurityCaseEdiscoveryCaseSetting.md | 4 ++- ...ate-MgSecuritySecureScoreControlProfile.md | 8 +++-- .../v1.0/Add-MgSiteListContentTypeCopy.md | 4 ++- ...teListContentTypeCopyFromContentTypeHub.md | 12 +++++-- ...SiteContentTypeToDefaultContentLocation.md | 4 ++- src/Sites/Sites/examples/v1.0/Get-MgSite.md | 12 +++++-- .../Sites/examples/v1.0/Get-MgSiteColumn.md | 4 ++- .../examples/v1.0/Get-MgSiteContentType.md | 12 +++++-- .../v1.0/Get-MgSiteContentTypeColumn.md | 8 +++-- .../examples/v1.0/Get-MgSiteDefaultDrive.md | 4 ++- .../Sites/examples/v1.0/Get-MgSiteDrive.md | 4 ++- .../Sites/examples/v1.0/Get-MgSiteList.md | 24 ++++++++++---- .../examples/v1.0/Get-MgSiteListColumn.md | 4 ++- .../v1.0/Get-MgSiteListContentType.md | 4 ++- ...ListContentTypeCompatibleHubContentType.md | 4 ++- .../Sites/examples/v1.0/Get-MgSiteListItem.md | 4 ++- .../Get-MgSiteListItemDocumentSetVersion.md | 8 +++-- .../v1.0/Get-MgSiteListItemVersion.md | 8 +++-- .../examples/v1.0/Get-MgSitePermission.md | 8 +++-- .../examples/v1.0/Get-MgSiteTermStore.md | 4 ++- .../examples/v1.0/Get-MgSiteTermStoreGroup.md | 12 +++++-- .../v1.0/Get-MgSiteTermStoreGroupSet.md | 4 ++- .../v1.0/Get-MgSiteTermStoreGroupSetTerm.md | 4 ++- .../examples/v1.0/Get-MgSiteTermStoreSet.md | 4 ++- .../v1.0/Get-MgSiteTermStoreSetChild.md | 4 ++- .../v1.0/Get-MgSiteTermStoreSetRelation.md | 4 ++- .../Sites/examples/v1.0/Get-MgSubSite.md | 4 ++- .../examples/v1.0/Get-MgUserFollowedSite.md | 4 ++- .../v1.0/Join-MgSiteContentTypeWithHubSite.md | 4 ++- .../Sites/examples/v1.0/New-MgSiteColumn.md | 4 ++- .../examples/v1.0/New-MgSiteContentType.md | 4 ++- .../v1.0/New-MgSiteContentTypeColumn.md | 4 ++- .../Sites/examples/v1.0/New-MgSiteList.md | 4 ++- .../examples/v1.0/New-MgSiteListColumn.md | 4 ++- .../Sites/examples/v1.0/New-MgSiteListItem.md | 4 ++- .../New-MgSiteListItemDocumentSetVersion.md | 4 ++- .../examples/v1.0/New-MgSitePermission.md | 4 ++- .../examples/v1.0/New-MgSiteTermStoreGroup.md | 4 ++- .../v1.0/New-MgSiteTermStoreSetChild.md | 4 ++- .../v1.0/Publish-MgSiteContentType.md | 4 ++- .../examples/v1.0/Remove-MgSiteContentType.md | 4 ++- .../v1.0/Remove-MgSiteContentTypeColumn.md | 4 ++- .../examples/v1.0/Remove-MgSiteListItem.md | 4 ++- ...Remove-MgSiteListItemDocumentSetVersion.md | 4 ++- .../examples/v1.0/Remove-MgSitePermission.md | 4 ++- .../v1.0/Remove-MgSiteTermStoreGroup.md | 4 ++- .../v1.0/Remove-MgSiteTermStoreSet.md | 4 ++- .../v1.0/Remove-MgSiteTermStoreSetTerm.md | 4 ++- ...estore-MgSiteListItemDocumentSetVersion.md | 4 ++- .../v1.0/Restore-MgSiteListItemVersion.md | 4 ++- .../v1.0/Test-MgSiteContentTypePublished.md | 4 ++- .../v1.0/Unpublish-MgSiteContentType.md | 4 ++- .../examples/v1.0/Update-MgSiteContentType.md | 4 ++- .../v1.0/Update-MgSiteListItemField.md | 4 ++- .../examples/v1.0/Update-MgSitePermission.md | 4 ++- .../examples/v1.0/Update-MgSiteTermStore.md | 4 ++- .../v1.0/Update-MgSiteTermStoreSet.md | 4 ++- .../v1.0/Update-MgSiteTermStoreSetTerm.md | 4 ++- .../Teams/examples/v1.0/Add-MgTeamMember.md | 12 +++++-- .../v1.0/Complete-MgTeamChannelMigration.md | 4 ++- .../examples/v1.0/Complete-MgTeamMigration.md | 4 ++- src/Teams/Teams/examples/v1.0/Copy-MgTeam.md | 4 ++- .../examples/v1.0/Get-MgAppCatalogTeamApp.md | 20 +++++++++--- .../Get-MgAppCatalogTeamAppDefinitionBot.md | 4 ++- src/Teams/Teams/examples/v1.0/Get-MgChat.md | 16 +++++++--- .../examples/v1.0/Get-MgChatInstalledApp.md | 16 +++++++--- .../Teams/examples/v1.0/Get-MgChatMember.md | 8 +++-- .../Teams/examples/v1.0/Get-MgChatMessage.md | 8 +++-- .../v1.0/Get-MgChatMessageHostedContent.md | 8 +++-- .../Teams/examples/v1.0/Get-MgChatTab.md | 12 +++++-- src/Teams/Teams/examples/v1.0/Get-MgTeam.md | 4 ++- .../Teams/examples/v1.0/Get-MgTeamChannel.md | 20 +++++++++--- .../v1.0/Get-MgTeamChannelFileFolder.md | 4 ++- .../examples/v1.0/Get-MgTeamChannelMember.md | 8 +++-- .../examples/v1.0/Get-MgTeamChannelMessage.md | 12 +++++-- .../Get-MgTeamChannelMessageHostedContent.md | 4 ++- .../v1.0/Get-MgTeamChannelMessageReply.md | 4 ++- ...-MgTeamChannelMessageReplyHostedContent.md | 4 ++- .../v1.0/Get-MgTeamChannelSharedWithTeam.md | 8 +++-- ...gTeamChannelSharedWithTeamAllowedMember.md | 4 ++- .../examples/v1.0/Get-MgTeamChannelTab.md | 8 +++-- .../v1.0/Get-MgTeamIncomingChannel.md | 4 ++- .../examples/v1.0/Get-MgTeamInstalledApp.md | 20 +++++++++--- .../Teams/examples/v1.0/Get-MgTeamMember.md | 16 +++++++--- .../examples/v1.0/Get-MgTeamPrimaryChannel.md | 4 ++- .../Teams/examples/v1.0/Get-MgTeamSchedule.md | 4 ++- .../Get-MgTeamScheduleOfferShiftRequest.md | 8 +++-- .../v1.0/Get-MgTeamScheduleOpenShift.md | 8 +++-- ...et-MgTeamScheduleOpenShiftChangeRequest.md | 8 +++-- .../v1.0/Get-MgTeamScheduleSchedulingGroup.md | 8 +++-- .../examples/v1.0/Get-MgTeamScheduleShift.md | 8 +++-- ...et-MgTeamScheduleSwapShiftChangeRequest.md | 8 +++-- .../v1.0/Get-MgTeamScheduleTimeOff.md | 8 +++-- .../v1.0/Get-MgTeamScheduleTimeOffReason.md | 8 +++-- .../v1.0/Get-MgTeamScheduleTimeOffRequest.md | 8 +++-- .../Get-MgTeamworkWorkforceIntegration.md | 8 +++-- .../Teams/examples/v1.0/Get-MgUserChat.md | 12 +++++-- .../examples/v1.0/Get-MgUserChatMember.md | 4 ++- .../examples/v1.0/Get-MgUserJoinedTeam.md | 4 ++- .../v1.0/Get-MgUserTeamworkAssociatedTeam.md | 4 ++- .../v1.0/Get-MgUserTeamworkInstalledApp.md | 16 +++++++--- .../Get-MgUserTeamworkInstalledAppChat.md | 4 ++- .../examples/v1.0/Invoke-MgArchiveTeam.md | 4 ++- .../v1.0/Invoke-MgShareTeamSchedule.md | 4 ++- .../examples/v1.0/Invoke-MgUnarchiveTeam.md | 4 ++- .../examples/v1.0/New-MgAppCatalogTeamApp.md | 4 ++- src/Teams/Teams/examples/v1.0/New-MgChat.md | 24 ++++++++++---- .../examples/v1.0/New-MgChatInstalledApp.md | 4 ++- .../Teams/examples/v1.0/New-MgChatMember.md | 16 +++++++--- .../Teams/examples/v1.0/New-MgChatMessage.md | 8 +++-- .../Teams/examples/v1.0/New-MgChatTab.md | 4 ++- src/Teams/Teams/examples/v1.0/New-MgTeam.md | 32 ++++++++++++++----- .../Teams/examples/v1.0/New-MgTeamChannel.md | 20 +++++++++--- .../examples/v1.0/New-MgTeamChannelEmail.md | 4 ++- .../examples/v1.0/New-MgTeamChannelMember.md | 28 ++++++++++++---- .../examples/v1.0/New-MgTeamChannelMessage.md | 32 ++++++++++++++----- .../v1.0/New-MgTeamChannelMessageReply.md | 8 +++-- .../examples/v1.0/New-MgTeamInstalledApp.md | 4 ++- .../Teams/examples/v1.0/New-MgTeamMember.md | 8 +++-- .../New-MgTeamScheduleOfferShiftRequest.md | 4 ++- .../v1.0/New-MgTeamScheduleOpenShift.md | 4 ++- ...ew-MgTeamScheduleOpenShiftChangeRequest.md | 4 ++- .../v1.0/New-MgTeamScheduleSchedulingGroup.md | 4 ++- .../examples/v1.0/New-MgTeamScheduleShift.md | 4 ++- ...ew-MgTeamScheduleSwapShiftChangeRequest.md | 4 ++- .../v1.0/New-MgTeamScheduleTimeOff.md | 4 ++- .../v1.0/New-MgTeamScheduleTimeOffReason.md | 4 ++- .../New-MgTeamworkWorkforceIntegration.md | 4 ++- .../v1.0/New-MgUserTeamworkInstalledApp.md | 4 ++- .../v1.0/Remove-MgAppCatalogTeamApp.md | 4 ++- .../v1.0/Remove-MgChatInstalledApp.md | 4 ++- .../examples/v1.0/Remove-MgChatMember.md | 4 ++- .../Teams/examples/v1.0/Remove-MgChatTab.md | 4 ++- .../examples/v1.0/Remove-MgTeamChannel.md | 4 ++- .../v1.0/Remove-MgTeamChannelEmail.md | 4 ++- .../v1.0/Remove-MgTeamChannelMember.md | 4 ++- .../Remove-MgTeamChannelSharedWithTeam.md | 4 ++- .../v1.0/Remove-MgTeamInstalledApp.md | 4 ++- .../examples/v1.0/Remove-MgTeamMember.md | 4 ++- .../v1.0/Remove-MgTeamScheduleOpenShift.md | 4 ++- .../Remove-MgTeamScheduleSchedulingGroup.md | 4 ++- .../v1.0/Remove-MgTeamScheduleShift.md | 4 ++- .../v1.0/Remove-MgTeamScheduleTimeOff.md | 4 ++- .../Remove-MgTeamScheduleTimeOffReason.md | 4 ++- .../Remove-MgTeamScheduleTimeOffRequest.md | 4 ++- .../Remove-MgTeamworkWorkforceIntegration.md | 4 ++- .../v1.0/Remove-MgUserTeamworkInstalledApp.md | 4 ++- .../v1.0/Send-MgChatActivityNotification.md | 20 +++++++++--- .../v1.0/Send-MgTeamActivityNotification.md | 16 +++++++--- .../Teams/examples/v1.0/Update-MgChat.md | 4 ++- .../v1.0/Update-MgChatInstalledApp.md | 4 ++- .../Teams/examples/v1.0/Update-MgChatTab.md | 4 ++- .../Teams/examples/v1.0/Update-MgTeam.md | 4 ++- .../examples/v1.0/Update-MgTeamChannel.md | 4 ++- .../v1.0/Update-MgTeamChannelMember.md | 4 ++- .../v1.0/Update-MgTeamChannelMessage.md | 4 ++- .../v1.0/Update-MgTeamInstalledApp.md | 4 ++- .../examples/v1.0/Update-MgTeamMember.md | 4 ++- .../v1.0/Update-MgTeamScheduleOpenShift.md | 4 ++- .../v1.0/Update-MgTeamScheduleShift.md | 4 ++- .../Update-MgTeamworkWorkforceIntegration.md | 4 ++- .../examples/v1.0/Clear-MgUserPresence.md | 4 ++- .../v1.0/Confirm-MgUserMemberGroup.md | 4 ++- .../v1.0/Confirm-MgUserMemberObject.md | 4 ++- .../examples/v1.0/Copy-MgUserMailFolder.md | 4 ++- .../examples/v1.0/Copy-MgUserMessage.md | 4 ++- .../v1.0/Copy-MgUserOnenoteNotebook.md | 4 ++- .../v1.0/Copy-MgUserOnenotePageToSection.md | 4 ++- .../Copy-MgUserOnenoteSectionToNotebook.md | 4 ++- ...Copy-MgUserOnenoteSectionToSectionGroup.md | 4 ++- ...e-MgUserAuthenticationPhoneMethodSmSign.md | 4 ++- ...e-MgUserAuthenticationPhoneMethodSmSign.md | 4 ++- .../v1.0/Export-MgUserPersonalData.md | 4 ++- .../examples/v1.0/Find-MgUserMeetingTime.md | 4 ++- .../v1.0/Get-MgUserDefaultCalendarSchedule.md | 4 ++- .../examples/v1.0/Get-MgUserMailTip.md | 4 ++- .../examples/v1.0/Get-MgUserMemberGroup.md | 4 ++- .../Get-MgUserOnenoteNotebookFromWebUrl.md | 4 ++- .../examples/v1.0/Invoke-MgAcceptUserEvent.md | 4 ++- .../Invoke-MgAcceptUserEventTentatively.md | 4 ++- .../Invoke-MgCreateOrGetUserOnlineMeeting.md | 4 ++- .../v1.0/Invoke-MgDeclineUserEvent.md | 4 ++- .../v1.0/Invoke-MgDismissUserEventReminder.md | 4 ++- .../v1.0/Invoke-MgForwardUserEvent.md | 4 ++- .../v1.0/Invoke-MgForwardUserMessage.md | 4 ++- .../examples/v1.0/Invoke-MgLicenseUser.md | 4 ++- .../v1.0/Invoke-MgReplyAllUserMessage.md | 4 ++- .../v1.0/Invoke-MgReplyUserMessage.md | 4 ++- .../v1.0/Invoke-MgSnoozeUserEventReminder.md | 4 ++- .../v1.0/Invoke-MgTranslateUserExchangeId.md | 4 ++- .../examples/v1.0/Move-MgUserMailFolder.md | 4 ++- .../examples/v1.0/Move-MgUserMessage.md | 4 ++- ...ew-MgUserMessageAttachmentUploadSession.md | 8 +++-- .../examples/v1.0/New-MgUserMessageForward.md | 4 ++- .../examples/v1.0/New-MgUserMessageReply.md | 4 ++- .../v1.0/New-MgUserMessageReplyAll.md | 4 ++- .../examples/v1.0/Revoke-MgUserSign.md | 4 ++- .../examples/v1.0/Send-MgUserMail.md | 12 +++++-- .../examples/v1.0/Send-MgUserMessage.md | 4 ++- ...Send-MgUserTeamworkActivityNotification.md | 12 +++++-- .../examples/v1.0/Set-MgUserPresence.md | 4 ++- .../examples/v1.0/Stop-MgUserEvent.md | 4 ++- .../examples/v1.0/Update-MgUserPassword.md | 4 ++- .../v1.0/Get-MgUserContactFolderDelta.md | 4 ++- .../examples/v1.0/Get-MgUserDelta.md | 4 ++- .../v1.0/Get-MgUserMailFolderMessageDelta.md | 4 ++- .../v1.0/Invoke-MgRecentUserActivity.md | 4 ++- .../Invoke-MgSupportedUserOutlookLanguage.md | 4 ++- .../examples/v1.0/Invoke-MgTimeUserOutlook.md | 4 ++- .../Users/examples/v1.0/Get-MgUserMemberOf.md | 4 ++- .../v1.0/Get-MgUserOutlookMasterCategory.md | 8 +++-- .../examples/v1.0/Get-MgUserOwnedDevice.md | 4 ++- .../examples/v1.0/Get-MgUserOwnedObject.md | 4 ++- .../v1.0/Get-MgUserRegisteredDevice.md | 4 ++- .../v1.0/Get-MgUserSettingShiftPreference.md | 4 ++- .../Users/examples/v1.0/Get-MgUserTodoList.md | 8 +++-- .../examples/v1.0/Get-MgUserTodoListTask.md | 8 +++-- .../Get-MgUserTodoListTaskChecklistItem.md | 8 +++-- .../Get-MgUserTodoListTaskLinkedResource.md | 8 +++-- .../v1.0/Get-MgUserTransitiveMemberOf.md | 4 ++- .../v1.0/New-MgUserOutlookMasterCategory.md | 4 ++- .../Users/examples/v1.0/New-MgUserTodoList.md | 4 ++- .../examples/v1.0/New-MgUserTodoListTask.md | 4 ++- .../New-MgUserTodoListTaskChecklistItem.md | 4 ++- .../New-MgUserTodoListTaskLinkedResource.md | 4 ++- .../Remove-MgUserOutlookMasterCategory.md | 4 ++- .../examples/v1.0/Remove-MgUserTodoList.md | 4 ++- .../v1.0/Remove-MgUserTodoListTask.md | 4 ++- .../Remove-MgUserTodoListTaskChecklistItem.md | 4 ++- ...Remove-MgUserTodoListTaskLinkedResource.md | 4 ++- .../Update-MgUserOutlookMasterCategory.md | 4 ++- .../Update-MgUserSettingShiftPreference.md | 4 ++- .../examples/v1.0/Update-MgUserTodoList.md | 4 ++- .../v1.0/Update-MgUserTodoListTask.md | 4 ++- .../Update-MgUserTodoListTaskChecklistItem.md | 4 ++- ...Update-MgUserTodoListTaskLinkedResource.md | 4 ++- 966 files changed, 4305 insertions(+), 1435 deletions(-) diff --git a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md index 9bbd73fb228..a9022723b6b 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgApplicationKey.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgApplicationKey Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -12,7 +12,9 @@ $params = @{ } Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Add-MgApplicationKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgApplicationKey Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -28,3 +30,5 @@ $params = @{ } Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the Add-MgApplicationKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md index f125a9d4e24..378a5ec77e9 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalKey.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgServicePrincipalKey Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -12,7 +12,9 @@ $params = @{ } Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Add-MgServicePrincipalKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgServicePrincipalKey Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -28,3 +30,5 @@ $params = @{ } Add-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the Add-MgServicePrincipalKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md index 1546ed8f69e..98696a8daec 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalPassword.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgServicePrincipalPassword Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Add-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the Add-MgServicePrincipalPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md index bd0f19b141f..57a548717d1 100644 --- a/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md +++ b/src/Applications/Applications/examples/v1.0/Add-MgServicePrincipalTokenSigningCertificate.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgServicePrincipalTokenSigningCertificate Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the Add-MgServicePrincipalTokenSigningCertificate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md index 538f791cfd0..77f5447e896 100644 --- a/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Clear-MgApplicationVerifiedPublisher.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Clear-MgApplicationVerifiedPublisher Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId ``` +This example shows how to use the Clear-MgApplicationVerifiedPublisher Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md index 8d15f3bc642..4b42606118c 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationDelta ``` +This example shows how to use the Get-MgApplicationDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md index 7d0b1a9356b..14b1502be22 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationExtensionProperty.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationExtensionProperty Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId ``` -### Example 2 +This example shows how to use the Get-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgApplicationExtensionProperty Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` +This example shows how to use the Get-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md index 08b8783612e..869826d975b 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationFederatedIdentityCredential.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationFederatedIdentityCredential Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` -### Example 2 +This example shows how to use the Get-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgApplicationFederatedIdentityCredential Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId ``` +This example shows how to use the Get-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md index 3052c3fbbf2..9e432ab20d0 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationOwner.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationOwner Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationOwner -ApplicationId $applicationId ``` +This example shows how to use the Get-MgApplicationOwner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md index db2c7522e7a..3d6e1be9646 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTemplate.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationTemplate Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId ``` -### Example 2 +This example shows how to use the Get-MgApplicationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgApplicationTemplate Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTemplate ``` +This example shows how to use the Get-MgApplicationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md index dd3ec5b38a8..7451d402851 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenIssuancePolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationTokenIssuancePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId ``` +This example shows how to use the Get-MgApplicationTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md index db2054058fa..d5f59e6c02e 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgApplicationTokenLifetimePolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgApplicationTokenLifetimePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId ``` +This example shows how to use the Get-MgApplicationTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md index 7a8e9778e50..82ca0f055ea 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalAppRoleAssignedTo Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalAppRoleAssignedTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md index 071fa92177d..5ddf2575c67 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalClaimMappingPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalClaimMappingPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md index 0edfd892d89..246a628170e 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalCreatedObject.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalCreatedObject Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalCreatedObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md index d52539c7271..710883795e7 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalDelegatedPermissionClassification Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalDelegatedPermissionClassification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md index 34d45233f5f..2d3f5c4b44b 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalDelta ``` +This example shows how to use the Get-MgServicePrincipalDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md index 6591d1c46e6..20b4ce0ea49 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalHomeRealmDiscoveryPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md index 0897e4d5696..e2a2cd77235 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md index 453c8c4ad98..ebf19f7c46d 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOauth2PermissionGrant.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalOauth2PermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md index 7b9c5a3132f..7443ae80461 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalOwnedObject.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalOwnedObject Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalOwnedObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md index dbb913c1e85..26d11050a49 100644 --- a/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md +++ b/src/Applications/Applications/examples/v1.0/Get-MgServicePrincipalTransitiveMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgServicePrincipalTransitiveMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Get-MgServicePrincipalTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md index 99f3f0563d5..a73e495ffe4 100644 --- a/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0/Invoke-MgInstantiateApplicationTemplate.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgInstantiateApplicationTemplate Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId $applicationTemplateId -BodyParameter $params ``` +This example shows how to use the Invoke-MgInstantiateApplicationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md index 79a373937ee..eb112b818fd 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationExtensionProperty.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgApplicationExtensionProperty Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgApplicationExtensionProperty -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the New-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md index 6cba8dc4fd5..334052bdac3 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationFederatedIdentityCredential.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgApplicationFederatedIdentityCredential Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -11,3 +11,5 @@ $params = @{ } New-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the New-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md index 0342edc8aa3..c83a2763557 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenIssuancePolicyByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgApplicationTokenIssuancePolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the New-MgApplicationTokenIssuancePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md index 91184dadbf4..63b1debb000 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgApplicationTokenLifetimePolicyByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgApplicationTokenLifetimePolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the New-MgApplicationTokenLifetimePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md index 0a1e38b33fe..ecb8a812e56 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignedTo.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgServicePrincipalAppRoleAssignedTo Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the New-MgServicePrincipalAppRoleAssignedTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md index 3e3484e8ae5..2fbc476eb3c 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalAppRoleAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgServicePrincipalAppRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the New-MgServicePrincipalAppRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md index 79604ece030..60caa27b9c4 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgServicePrincipalClaimMappingPolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the New-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md index dfeb07ddfd2..10a2a668b0e 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgServicePrincipalDelegatedPermissionClassification Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the New-MgServicePrincipalDelegatedPermissionClassification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index a274ec9b013..c4d0b8ee9cd 100644 --- a/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md index 8a55b7c42ba..a9d88ed5110 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationExtensionProperty.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationExtensionProperty Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` +This example shows how to use the Remove-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md index 468a5403f1f..2874fed579c 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationFederatedIdentityCredential.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationFederatedIdentityCredential Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` +This example shows how to use the Remove-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md index 8471f61cb29..211bb8cbb0d 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationKey.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationKey Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Remove-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the Remove-MgApplicationKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md index 3a18049663c..f7a280b7768 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationOwnerByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationOwnerByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgApplicationOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md index ce4bd86f663..1f78cfcb31b 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationPassword.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationPassword Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Remove-MgApplicationPassword -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the Remove-MgApplicationPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md index 72ce95325db..55ccb6304e9 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenIssuancePolicyByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationTokenIssuancePolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId ``` +This example shows how to use the Remove-MgApplicationTokenIssuancePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md index f845b259c87..777a40a3775 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgApplicationTokenLifetimePolicyByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgApplicationTokenLifetimePolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId ``` +This example shows how to use the Remove-MgApplicationTokenLifetimePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md index e8f8985da06..77e7e67590f 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgGroupAppRoleAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupAppRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId ``` +This example shows how to use the Remove-MgGroupAppRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md index e213d390b70..c8cdcb99005 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipal.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipal Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId ``` +This example shows how to use the Remove-MgServicePrincipal Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md index 5294cdb6b4d..eeca1c742c8 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalAppRoleAssignedTo.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipalAppRoleAssignedTo Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId ``` +This example shows how to use the Remove-MgServicePrincipalAppRoleAssignedTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md index 8ee0400c918..3bc662a8b15 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipalClaimMappingPolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId ``` +This example shows how to use the Remove-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md index 6981b6a8028..d57746674c7 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipalDelegatedPermissionClassification Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId ``` +This example shows how to use the Remove-MgServicePrincipalDelegatedPermissionClassification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 2b8f26da662..700f0f90dfd 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Applications Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` +This example shows how to use the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md index 861ea0829ef..14f0e5570ae 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalKey.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipalKey Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Remove-MgServicePrincipalKey -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the Remove-MgServicePrincipalKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md index 144d1974f8f..6f40720cc44 100644 --- a/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md +++ b/src/Applications/Applications/examples/v1.0/Remove-MgServicePrincipalPassword.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Remove-MgServicePrincipalPassword Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Remove-MgServicePrincipalPassword -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` +This example shows how to use the Remove-MgServicePrincipalPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md index e91e10dcba2..a0e347da0b9 100644 --- a/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0/Set-MgApplicationVerifiedPublisher.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Set-MgApplicationVerifiedPublisher Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Set-MgApplicationVerifiedPublisher -ApplicationId $applicationId -BodyParameter $params ``` +This example shows how to use the Set-MgApplicationVerifiedPublisher Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md index d48c7926a00..80f87ba63ce 100644 --- a/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0/Update-MgApplicationFederatedIdentityCredential.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgApplicationFederatedIdentityCredential Cmdlet ```powershell Import-Module Microsoft.Graph.Applications $params = @{ @@ -12,3 +12,5 @@ $params = @{ } Update-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId -BodyParameter $params ``` +This example shows how to use the Update-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md index c72d5c15b87..5e4e59495a4 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusiness.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` -### Example 2 +This example shows how to use the Get-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness ``` -### Example 3 +This example shows how to use the Get-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusiness -Query "Adventure" ``` +This example shows how to use the Get-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md index 0659cc2d44d..5f209860cfd 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessAppointment.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusinessAppointment Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` -### Example 2 +This example shows how to use the Get-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessAppointment Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId ``` +This example shows how to use the Get-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md index 498e9e125c2..39c2f5ef2c3 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCalendarView.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusinessCalendarView Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" ``` +This example shows how to use the Get-MgBookingBusinessCalendarView Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md index 0a1f7032b76..7d05eb18251 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomQuestion.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusinessCustomQuestion Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId ``` -### Example 2 +This example shows how to use the Get-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessCustomQuestion Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` +This example shows how to use the Get-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md index e0a926f5b73..9de03cac486 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessCustomer.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusinessCustomer Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId ``` -### Example 2 +This example shows how to use the Get-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessCustomer Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` +This example shows how to use the Get-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md index 833b73de1ff..e72504695b7 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessService.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusinessService Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId ``` -### Example 2 +This example shows how to use the Get-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessService Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` +This example shows how to use the Get-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md index 732911b0ed9..a42fd1a0c85 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingBusinessStaffMember.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgBookingBusinessStaffMember Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId ``` -### Example 2 +This example shows how to use the Get-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessStaffMember Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` +This example shows how to use the Get-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md index c213a1b8078..ac3d61ce26d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md +++ b/src/Bookings/Bookings/examples/v1.0/Get-MgBookingCurrency.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgBookingCurrency Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency -BookingCurrencyId $bookingCurrencyId ``` -### Example 2 +This example shows how to use the Get-MgBookingCurrency Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingCurrency Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Get-MgBookingCurrency ``` +This example shows how to use the Get-MgBookingCurrency Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md index b9081d37011..acefac58049 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusiness.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -18,3 +18,5 @@ $params = @{ } New-MgBookingBusiness -BodyParameter $params ``` +This example shows how to use the New-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md index f79067ead9f..55320fcdf00 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessAppointment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgBookingBusinessAppointment Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -108,3 +108,5 @@ $params = @{ } New-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` +This example shows how to use the New-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md index 5f27bd4cfda..bbef8fe35a1 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomQuestion.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgBookingBusinessCustomQuestion Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` +This example shows how to use the New-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md index cf7eff4628f..bad67825208 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessCustomer.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgBookingBusinessCustomer Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -12,3 +12,5 @@ $params = @{ } New-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` +This example shows how to use the New-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md index 6f398f963b3..98e0beffc16 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessService.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgBookingBusinessService Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -64,3 +64,5 @@ $params = @{ } New-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` +This example shows how to use the New-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md index 73285a6db7d..f0d9e62e534 100644 --- a/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/New-MgBookingBusinessStaffMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgBookingBusinessStaffMember Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -80,3 +80,5 @@ $params = @{ } New-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` +This example shows how to use the New-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md index bdac9c6ff7e..d91860344b5 100644 --- a/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Publish-MgBookingBusiness.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Publish-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` +This example shows how to use the Publish-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md index 5161d90e3fe..84933be35a7 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusiness.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` +This example shows how to use the Remove-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md index 32e2c998e67..f92bcc7df5c 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessAppointment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgBookingBusinessAppointment Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` +This example shows how to use the Remove-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md index aeb9b9c835b..51a0ba0af7e 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomQuestion.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgBookingBusinessCustomQuestion Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` +This example shows how to use the Remove-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md index bc84f9bce53..4b5f81fc809 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessCustomer.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgBookingBusinessCustomer Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId ``` +This example shows how to use the Remove-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md index 4dc626a77cf..e494b1f117d 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessService.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgBookingBusinessService Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` +This example shows how to use the Remove-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md index 4ea8a42cf3d..d6408062bec 100644 --- a/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Remove-MgBookingBusinessStaffMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgBookingBusinessStaffMember Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Remove-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId ``` +This example shows how to use the Remove-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md index ff825afda2c..43a06d3ae9f 100644 --- a/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Stop-MgBookingBusinessAppointment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Stop-MgBookingBusinessAppointment Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Stop-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ``` +This example shows how to use the Stop-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md index eff7bbf6c84..d1a3aa9f2d0 100644 --- a/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Unpublish-MgBookingBusiness.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Unpublish-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` +This example shows how to use the Unpublish-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md index 6cb8d0fcc7d..6a64110a44e 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusiness.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgBookingBusiness Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -13,3 +13,5 @@ $params = @{ } Update-MgBookingBusiness -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` +This example shows how to use the Update-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md index be41e5eb8a3..9ee35f73c20 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessAppointment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgBookingBusinessAppointment Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -16,3 +16,5 @@ $params = @{ } Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ``` +This example shows how to use the Update-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md index 2242894ea42..b27df262376 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomQuestion.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgBookingBusinessCustomQuestion Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId -BodyParameter $params ``` +This example shows how to use the Update-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md index 7c2cd3c11f2..ece979a84c6 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessCustomer.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgBookingBusinessCustomer Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerBaseId $bookingCustomerBaseId -BodyParameter $params ``` +This example shows how to use the Update-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md index 4973a7105e2..12850936771 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessService.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgBookingBusinessService Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId -BodyParameter $params ``` +This example shows how to use the Update-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md index 30891e4a48a..dc906b3ceea 100644 --- a/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0/Update-MgBookingBusinessStaffMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgBookingBusinessStaffMember Cmdlet ```powershell Import-Module Microsoft.Graph.Bookings $params = @{ @@ -68,3 +68,5 @@ $params = @{ } Update-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberBaseId $bookingStaffMemberBaseId -BodyParameter $params ``` +This example shows how to use the Update-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md index e9d8df14716..576d1eba13b 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEvent.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgGroupEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId -EventId $eventId ``` -### Example 2 +This example shows how to use the Get-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEvent -GroupId $groupId ``` +This example shows how to use the Get-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md index d4155158076..b7963e8c734 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgGroupEventExtension.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupEventExtension Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId ``` +This example shows how to use the Get-MgGroupEventExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md index 7c1d55f02b9..82f18cf7818 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgPlace.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgPlace Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` -### Example 2 +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlace Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` -### Example 3 +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPlace Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` -### Example 4 +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPlace Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgPlace -PlaceId $placeId ``` +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md index 8535c349264..c2cc0bf05b2 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendar.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserCalendar Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendar -UserId $userId ``` +This example shows how to use the Get-MgUserCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md index 449dd6ff0f0..991c27561b2 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroup.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserCalendarGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` -### Example 2 +This example shows how to use the Get-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserCalendarGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroup -UserId $userId ``` +This example shows how to use the Get-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md index 4c3f33c657a..1c75f2e36ac 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarGroupCalendar.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserCalendarGroupCalendar Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId ``` +This example shows how to use the Get-MgUserCalendarGroupCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md index a2556b8caf4..7c6799f1684 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarPermission.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserCalendarPermission Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Get-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` +This example shows how to use the Get-MgUserCalendarPermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md index 02ebf0c64e6..eb8c3653d2f 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserCalendarView.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserCalendarView Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" ``` +This example shows how to use the Get-MgUserCalendarView Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md index 5a632413e9c..9fed45b71bd 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserDefaultCalendar.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserDefaultCalendar Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserDefaultCalendar -UserId $userId ``` +This example shows how to use the Get-MgUserDefaultCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md index f5c5c116a4d..2b0291b584b 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEvent.md @@ -1,18 +1,24 @@ -### Example 1 +### Example 1: Using the Get-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" ``` -### Example 2 +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" ``` -### Example 3 +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEvent -UserId $userId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location" ``` +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md index 6093d3631a7..112c7fcde4e 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventAttachment.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserEventAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventAttachment -UserId $userId -EventId $eventId ``` +This example shows how to use the Get-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md index d597b77e2e7..08323588c4b 100644 --- a/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md +++ b/src/Calendar/Calendar/examples/v1.0/Get-MgUserEventInstance.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserEventInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" ``` +This example shows how to use the Get-MgUserEventInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md index 6b6e53d3acf..a969a29ae5c 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgGroupEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -30,3 +30,5 @@ $params = @{ } New-MgGroupEvent -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the New-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md index 0ea27280587..781e86826e4 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendar.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserCalendar Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendar -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md index 99b2e88d801..aa4b94d60e7 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserCalendarEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -32,7 +32,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserCalendarEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserCalendarEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -67,3 +69,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` +This example shows how to use the New-MgUserCalendarEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md index 172870cad54..59deb1bb319 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserCalendarGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarGroup -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md index dba9a69f2f1..a86929c5c42 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserCalendarGroupCalendar.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserCalendarGroupCalendar Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params ``` +This example shows how to use the New-MgUserCalendarGroupCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md index 1cae789aaed..7e24cd6a52a 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -62,7 +62,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -97,7 +99,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -133,7 +137,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -181,3 +187,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEvent -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md index 84bc969b626..0f1d8d5ddec 100644 --- a/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/New-MgUserEventAttachment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserEventAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -9,7 +9,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserEventAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -23,7 +25,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgUserEventAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -36,3 +40,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md index 18d89812bca..b69e6e26919 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgGroupEvent.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Remove-MgGroupEvent -GroupId $groupId -EventId $eventId ``` +This example shows how to use the Remove-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md index 4e987269782..0a5a38ea9a2 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarGroup.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserCalendarGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` +This example shows how to use the Remove-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md index 1264d185ada..a8dec818457 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserCalendarPermission.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserCalendarPermission Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` +This example shows how to use the Remove-MgUserCalendarPermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md index e74cc9dabd9..83f110d9576 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEvent.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEvent -UserId $userId -EventId $eventId ``` +This example shows how to use the Remove-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md index 40663478bd2..d12deabc02e 100644 --- a/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0/Remove-MgUserEventAttachment.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserEventAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar # A UPN can also be used as -UserId. Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId ``` +This example shows how to use the Remove-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md index 190fb9248ee..cb3f45cc1af 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgPlace.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlace Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -11,7 +11,9 @@ $params = @{ } Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgPlace Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -35,3 +37,5 @@ $params = @{ } Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` +This example shows how to use the Update-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md index c1578468402..b97af7a03ef 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserCalendarGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params ``` +This example shows how to use the Update-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md index bb320fc95e6..c18b7480d51 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserCalendarPermission.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserCalendarPermission Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId -BodyParameter $params ``` +This example shows how to use the Update-MgUserCalendarPermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md index 8370ea1b5cf..cdef5fa6cdd 100644 --- a/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0/Update-MgUserEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Calendar $params = @{ @@ -21,3 +21,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Update-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md index 2def9677f31..1769d906f4e 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Get-MgSubscription.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSubscription Cmdlet ```powershell Import-Module Microsoft.Graph.ChangeNotifications Get-MgSubscription -SubscriptionId $subscriptionId ``` -### Example 2 +This example shows how to use the Get-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSubscription Cmdlet ```powershell Import-Module Microsoft.Graph.ChangeNotifications Get-MgSubscription ``` +This example shows how to use the Get-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md index 421d1111641..04a885a039d 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/New-MgSubscription.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSubscription Cmdlet ```powershell Import-Module Microsoft.Graph.ChangeNotifications $params = @{ @@ -11,3 +11,5 @@ $params = @{ } New-MgSubscription -BodyParameter $params ``` +This example shows how to use the New-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md index 3c193f36954..b3e85fc18fc 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Remove-MgSubscription.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSubscription Cmdlet ```powershell Import-Module Microsoft.Graph.ChangeNotifications Remove-MgSubscription -SubscriptionId $subscriptionId ``` +This example shows how to use the Remove-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md index 8e15e2a08c5..63f13de21ad 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0/Update-MgSubscription.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSubscription Cmdlet ```powershell Import-Module Microsoft.Graph.ChangeNotifications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgSubscription -SubscriptionId $subscriptionId -BodyParameter $params ``` +This example shows how to use the Update-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md index fc074559dd7..a72fdeaa6d5 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCall.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId ``` -### Example 2 +This example shows how to use the Get-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCall -CallId $callId ``` +This example shows how to use the Get-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md index 9233de16117..72149e2e232 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallParticipant.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` -### Example 2 +This example shows how to use the Get-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallParticipant -CallId $callId ``` +This example shows how to use the Get-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md index 423aceb9871..98881a1e09c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecord.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationCallRecord Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` -### Example 2 +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallRecord Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` -### Example 3 +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgCommunicationCallRecord Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" ``` -### Example 4 +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgCommunicationCallRecord Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md index a20feab43d4..bb37f1e1840 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationCallRecordSession.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationCallRecordSession Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" ``` -### Example 2 +This example shows how to use the Get-MgCommunicationCallRecordSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallRecordSession Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId ``` +This example shows how to use the Get-MgCommunicationCallRecordSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md index f23dd9a5484..f9a1cbbf31f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationOnlineMeeting.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" ``` +This example shows how to use the Get-MgCommunicationOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md index e93e1926c53..556595a1c6e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresence.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationPresence Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgCommunicationPresence -PresenceId $presenceId ``` +This example shows how to use the Get-MgCommunicationPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md index 11a96a584df..a60acba208c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgCommunicationPresenceByUserId.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgCommunicationPresenceByUserId Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Get-MgCommunicationPresenceByUserId -BodyParameter $params ``` +This example shows how to use the Get-MgCommunicationPresenceByUserId Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md index 06e026d47aa..f3391370541 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeeting.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -Filter "JoinWebUrl eq 'https://teams.microsoft.com/l/meetup-join/19:meeting_MGQ4MDQyNTEtNTQ2NS00YjQxLTlkM2EtZWVkODYxODYzMmY2@thread.v2/0?context" ``` -### Example 2 +This example shows how to use the Get-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId ``` +This example shows how to use the Get-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md index 23b6ee5755a..1007c598f27 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReport.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnlineMeetingAttendanceReport Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId -ExpandProperty "attendanceRecords" ``` -### Example 2 +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReport Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnlineMeetingAttendanceReport Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId ``` +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReport Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f7686ac895d..b24671c5786 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId ``` +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md index ff31dfef7a4..f1e2247c590 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Get-MgUserPresence.md @@ -1,11 +1,15 @@ -### Example 1 +### Example 1: Using the Get-MgUserPresence Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Get-MgUserPresence -UserId $userId ``` -### Example 2 +This example shows how to use the Get-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserPresence Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Get-MgUserPresence -UserId $userId ``` +This example shows how to use the Get-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md index 2c1a1638f63..fe39b8f774d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgAnswerCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgAnswerCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -13,7 +13,9 @@ $params = @{ } Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Invoke-MgAnswerCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgAnswerCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -29,7 +31,9 @@ $params = @{ } Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Invoke-MgAnswerCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgAnswerCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -45,3 +49,5 @@ $params = @{ } Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgAnswerCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md index b4fb7df245b..79ab2f9e04d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgInviteCommunicationCallParticipant.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -20,7 +20,9 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -40,7 +42,9 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -62,7 +66,9 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -### Example 4 +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -85,7 +91,9 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -### Example 5 +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -119,7 +127,9 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -### Example 6 +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -141,7 +151,9 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` -### Example 7 +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -163,3 +175,5 @@ $params = @{ } Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md index 66c52fa7485..c6c112f320d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgKeepCommunicationCallAlive.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgKeepCommunicationCallAlive Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Invoke-MgKeepCommunicationCallAlive -CallId $callId ``` +This example shows how to use the Invoke-MgKeepCommunicationCallAlive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index f0829098067..4c27e107509 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -87,3 +87,5 @@ $params = @{ } Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality -BodyParameter $params ``` +This example shows how to use the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md index 178323e7e16..3c22f79fe0e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgMuteCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgMuteCommunicationCall -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgMuteCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md index ac89826f0af..aed263de925 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgMuteCommunicationCallParticipant.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgMuteCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgMuteCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` +This example shows how to use the Invoke-MgMuteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md index 65f69f0377f..10c8fef5b69 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgPlayCommunicationCallPrompt.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgPlayCommunicationCallPrompt Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -16,3 +16,5 @@ $params = @{ } Invoke-MgPlayCommunicationCallPrompt -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgPlayCommunicationCallPrompt Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md index 8f1b4b11e86..ea4770278a5 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRecordCommunicationCallResponse.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgRecordCommunicationCallResponse Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -21,3 +21,5 @@ $params = @{ } Invoke-MgRecordCommunicationCallResponse -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgRecordCommunicationCallResponse Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md index f86955325f3..78de10da0db 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRedirectCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgRedirectCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -19,7 +19,9 @@ $params = @{ } Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Invoke-MgRedirectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgRedirectCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -39,3 +41,5 @@ $params = @{ } Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgRedirectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md index 7fb9f4340ed..46c6566b76a 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgRejectCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgRejectCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,7 +6,9 @@ $params = @{ } Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Invoke-MgRejectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgRejectCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -14,3 +16,5 @@ $params = @{ } Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgRejectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md index 2751aa684ba..77e69a9ac3d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgSubscribeCommunicationCallToTone.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgSubscribeCommunicationCallToTone Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgSubscribeCommunicationCallToTone -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgSubscribeCommunicationCallToTone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md index 0cce94ef892..be188d22540 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Invoke-MgUnmuteCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgUnmuteCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgUnmuteCommunicationCall -CallId $callId -BodyParameter $params ``` +This example shows how to use the Invoke-MgUnmuteCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md index 22a950aa02c..4cdb23a8dad 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Move-MgCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Move-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -14,7 +14,9 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Move-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -34,7 +36,9 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Move-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -53,7 +57,9 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 4 +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Move-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -75,7 +81,9 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` -### Example 5 +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Move-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -100,3 +108,5 @@ $params = @{ } Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md index 9415fbf9545..1a09ed853a1 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgCommunicationCall.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -40,7 +40,9 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -68,7 +70,9 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -111,7 +115,9 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -155,3 +161,5 @@ $params = @{ } New-MgCommunicationCall -BodyParameter $params ``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md index f3ef1dea1ec..5365de1e1e4 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/New-MgUserOnlineMeeting.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -9,3 +9,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md index a671f44d907..ab885f07af7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCall.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgCommunicationCall Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCall -CallId $callId ``` +This example shows how to use the Remove-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md index dd78a1f832e..2e2307375d1 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgCommunicationCallParticipant.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Remove-MgCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` -### Example 2 +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` -### Example 3 +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Remove-MgCommunicationCallParticipant Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md index e35cfd60d98..4bb2a06bfde 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Remove-MgUserOnlineMeeting.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications # A UPN can also be used as -UserId. Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId ``` +This example shows how to use the Remove-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md index 0d66fbbaee2..d243da27c61 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Rename-MgCommunicationCallScreenSharingRole.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Rename-MgCommunicationCallScreenSharingRole Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Rename-MgCommunicationCallScreenSharingRole -CallId $callId -BodyParameter $params ``` +This example shows how to use the Rename-MgCommunicationCallScreenSharingRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md index e306c331e25..6806abfe935 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Start-MgCommunicationCallParticipantHoldMusic.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Start-MgCommunicationCallParticipantHoldMusic Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -13,3 +13,5 @@ $params = @{ } Start-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` +This example shows how to use the Start-MgCommunicationCallParticipantHoldMusic Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md index 5d6091d2bc7..27be968ba66 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallMediaProcessing.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Stop-MgCommunicationCallMediaProcessing Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Stop-MgCommunicationCallMediaProcessing -CallId $callId -BodyParameter $params ``` +This example shows how to use the Stop-MgCommunicationCallMediaProcessing Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md index de3d156a0c7..5cee3411d01 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Stop-MgCommunicationCallParticipantHoldMusic Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Stop-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` +This example shows how to use the Stop-MgCommunicationCallParticipantHoldMusic Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md index 2907e41f5c9..73347809cf7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgCommunicationCallRecordingStatus.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgCommunicationCallRecordingStatus Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgCommunicationCallRecordingStatus -CallId $callId -BodyParameter $params ``` +This example shows how to use the Update-MgCommunicationCallRecordingStatus Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md index 803730f2fb5..364851416fc 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0/Update-MgUserOnlineMeeting.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -9,7 +9,9 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.CloudCommunications $params = @{ @@ -20,3 +22,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` +This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md index e8f71f01312..2668fe4af6e 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0/Remove-MgUserActivity.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserActivity Cmdlet ```powershell Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId ``` +This example shows how to use the Remove-MgUserActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md index ceb7cc2f254..f94fdaee9c2 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignment.md @@ -1,25 +1,35 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -Filter "roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "principal" ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -Filter " principalId eq '5bde3e51-d13b-4db1-9948-fe4b109d11a7'" ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" ``` -### Example 4 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` -### Example 5 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md index e30cc72c8d6..b80bd0961a7 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentSchedule.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleAssignmentSchedule Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleAssignmentSchedule Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleAssignmentSchedule Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentSchedule -UnifiedRoleAssignmentScheduleId $unifiedRoleAssignmentScheduleId ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md index 004f7cd1ae6..a53757881b2 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance -UnifiedRoleAssignmentScheduleInstanceId $unifiedRoleAssignmentScheduleInstanceId ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 1e4b638adbe..fe33de14c10 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,25 +1,35 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -Property "principalId,action,roleDefinitionId" -ExpandProperty "roleDefinition,activatedUsing,principal,targetSchedule" ``` -### Example 4 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest ``` -### Example 5 +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md index 145f84c8929..68c7b8e4a6d 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleDefinition.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -ExpandProperty "inheritsPermissionsFrom" ``` -### Example 4 +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleDefinition ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md index 48ab1d924aa..92758c877ee 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilitySchedule.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleEligibilitySchedule Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilitySchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleEligibilitySchedule Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilitySchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleEligibilitySchedule Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilitySchedule -UnifiedRoleEligibilityScheduleId $unifiedRoleEligibilityScheduleId ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilitySchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md index 7e008ae2c4b..e30df453d7b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance -UnifiedRoleEligibilityScheduleInstanceId $unifiedRoleEligibilityScheduleInstanceId ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index a9778068e01..4beb7da98d5 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` -### Example 2 +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest ``` -### Example 3 +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md index 1b883ea48e2..dd572c60008 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementEntitlementManagementRoleAssignment -Filter "appScopeId eq '/AccessPackageCatalog/4cee616b-fdf9-4890-9d10-955e0ccb12bc'" -ExpandProperty "principal" ``` +This example shows how to use the Get-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md index a6ff855414a..8badc617835 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Get-MgRoleManagementEntitlementManagementRoleDefinition.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgRoleManagementEntitlementManagementRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Get-MgRoleManagementEntitlementManagementRoleDefinition ``` +This example shows how to use the Get-MgRoleManagementEntitlementManagementRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md index a708c1922fa..a8855ce11cb 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -9,7 +9,9 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -20,7 +22,9 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -31,3 +35,5 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 9b26703861c..106eed6fa4b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -16,7 +16,9 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -39,3 +41,5 @@ $params = @{ } New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -BodyParameter $params ``` +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md index fd0ac60aa28..db99fdf15f0 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleDefinition.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -15,3 +15,5 @@ $params = @{ } New-MgRoleManagementDirectoryRoleDefinition -BodyParameter $params ``` +This example shows how to use the New-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 5b65b927cfa..14021000bf1 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -17,7 +17,9 @@ $params = @{ } New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -28,3 +30,5 @@ $params = @{ } New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -BodyParameter $params ``` +This example shows how to use the New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md index 6bbe550cdea..a22be7bf15b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/New-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgRoleManagementEntitlementManagementRoleAssignment -BodyParameter $params ``` +This example shows how to use the New-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md index 7e5ef710b93..fa11597ae7f 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Remove-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` +This example shows how to use the Remove-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md index 667c6abcc59..7d6974a7fd7 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Remove-MgRoleManagementDirectoryRoleDefinition.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Remove-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` +This example shows how to use the Remove-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 3ae858ebf03..d40d990ad13 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` +This example shows how to use the Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 3777364fd91..37f08677460 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` +This example shows how to use the Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md index 4a48e80dc9f..348d6d62f2c 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0/Update-MgRoleManagementDirectoryRoleDefinition.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrolment $params = @{ @@ -14,3 +14,5 @@ $params = @{ } Update-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -BodyParameter $params ``` +This example shows how to use the Update-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md index 4c38c0bc082..585b0396a4b 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintConnector.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPrintConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintConnector -PrintConnectorId $printConnectorId ``` -### Example 2 +This example shows how to use the Get-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintConnector ``` +This example shows how to use the Get-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md index 654054d67e1..3a9558682fa 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintOperation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPrintOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintOperation -PrintOperationId $printOperationId ``` +This example shows how to use the Get-MgPrintOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md index 031a3da0894..8c75ee416a0 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinter.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgPrintPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter -PrinterId $printerId -Property "id,displayName,capabilities" ``` -### Example 2 +This example shows how to use the Get-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter -PrinterId $printerId ``` -### Example 3 +This example shows how to use the Get-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPrintPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinter ``` +This example shows how to use the Get-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md index 1441e5d0171..e9afe44fe2c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterConnector.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPrintPrinterConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterConnector -PrinterId $printerId ``` +This example shows how to use the Get-MgPrintPrinterConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md index 86fd3efa356..10a3c518a4c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintPrinterTaskTrigger.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPrintPrinterTaskTrigger Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` -### Example 2 +This example shows how to use the Get-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintPrinterTaskTrigger Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintPrinterTaskTrigger -PrinterId $printerId ``` +This example shows how to use the Get-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md index ea61dde021e..6ab750cf1e1 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintService.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPrintService Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintService -PrintServiceId $printServiceId ``` -### Example 2 +This example shows how to use the Get-MgPrintService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintService Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintService ``` +This example shows how to use the Get-MgPrintService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md index 197ee9f059f..3440033e58e 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintServiceEndpoint.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPrintServiceEndpoint Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId -PrintServiceEndpointId $printServiceEndpointId ``` -### Example 2 +This example shows how to use the Get-MgPrintServiceEndpoint Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintServiceEndpoint Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId ``` +This example shows how to use the Get-MgPrintServiceEndpoint Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md index adf6f5bdc81..5f1b7f68a0c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShare.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgPrintShare Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare -PrinterShareId $printerShareId -Property "id,displayName,capabilities" ``` -### Example 2 +This example shows how to use the Get-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintShare Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare -PrinterShareId $printerShareId ``` -### Example 3 +This example shows how to use the Get-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPrintShare Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShare ``` +This example shows how to use the Get-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md index 8a0136523ac..dd8a5e19b37 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPrintShareAllowedGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShareAllowedGroup -PrinterShareId $printerShareId ``` +This example shows how to use the Get-MgPrintShareAllowedGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md index 5a81f2d4a1d..a48f3c74576 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintShareAllowedUser.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPrintShareAllowedUser Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintShareAllowedUser -PrinterShareId $printerShareId ``` +This example shows how to use the Get-MgPrintShareAllowedUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md index 8205f866069..cdab7a1e499 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinition.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPrintTaskDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` -### Example 2 +This example shows how to use the Get-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintTaskDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinition ``` +This example shows how to use the Get-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md index 2de3b1acb83..7550825532f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Get-MgPrintTaskDefinitionTask.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPrintTaskDefinitionTask Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId ``` -### Example 2 +This example shows how to use the Get-MgPrintTaskDefinitionTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintTaskDefinitionTask Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId ``` +This example shows how to use the Get-MgPrintTaskDefinitionTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md index f7663fc4b1c..c8a1db020d0 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintPrinterTaskTrigger.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPrintPrinterTaskTrigger Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgPrintPrinterTaskTrigger -PrinterId $printerId -BodyParameter $params ``` +This example shows how to use the New-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md index aec818e1f05..735d4c84036 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShare.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPrintShare Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgPrintShare -BodyParameter $params ``` +This example shows how to use the New-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md index 2cd74d80343..55b36ffa682 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedGroupByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPrintShareAllowedGroupByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -BodyParameter $params ``` +This example shows how to use the New-MgPrintShareAllowedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md index f91fa79da31..ff05ec1a79d 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintShareAllowedUserByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPrintShareAllowedUserByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -BodyParameter $params ``` +This example shows how to use the New-MgPrintShareAllowedUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md index 1cad0619ff7..5297b4e6239 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/New-MgPrintTaskDefinition.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPrintTaskDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -9,3 +9,5 @@ $params = @{ } New-MgPrintTaskDefinition -BodyParameter $params ``` +This example shows how to use the New-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md index 711e973d3be..b6b03acbbd9 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintConnector.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintConnector -PrintConnectorId $printConnectorId ``` +This example shows how to use the Remove-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md index e668f49b077..c88a5f00d66 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinter.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintPrinter -PrinterId $printerId ``` +This example shows how to use the Remove-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md index 7c1bfeeeb57..7bf987720c8 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintPrinterTaskTrigger.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintPrinterTaskTrigger Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` +This example shows how to use the Remove-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md index e935112ba07..35927f171d2 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShare.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintShare Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShare -PrinterShareId $printerShareId ``` +This example shows how to use the Remove-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md index 289d71d29e4..4065fc85784 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedGroupByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintShareAllowedGroupByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -GroupId $groupId ``` +This example shows how to use the Remove-MgPrintShareAllowedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md index f43df6c42a2..e1b5d0ca410 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintShareAllowedUserByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintShareAllowedUserByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -UserId $userId ``` +This example shows how to use the Remove-MgPrintShareAllowedUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md index 1635f6ab7bf..0e86aa99d4a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Remove-MgPrintTaskDefinition.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPrintTaskDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Remove-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` +This example shows how to use the Remove-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md index a59b247caae..a536b37ba3a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Restore-MgPrintPrinterFactoryDefault.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Restore-MgPrintPrinterFactoryDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint Restore-MgPrintPrinterFactoryDefault -PrinterId $printerId ``` +This example shows how to use the Restore-MgPrintPrinterFactoryDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md index 6d0a4dae012..3b0f9997821 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintConnector.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPrintConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -14,3 +14,5 @@ $params = @{ } Update-MgPrintConnector -PrintConnectorId $printConnectorId -BodyParameter $params ``` +This example shows how to use the Update-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md index 47e46f158bf..eefb23ee35e 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintPrinter.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPrintPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -11,3 +11,5 @@ $params = @{ } Update-MgPrintPrinter -PrinterId $printerId -BodyParameter $params ``` +This example shows how to use the Update-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md index 555c60800b0..468a0d38650 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintShare.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPrintShare Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgPrintShare -PrinterShareId $printerShareId -BodyParameter $params ``` +This example shows how to use the Update-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md index ff2726a61db..ee40fa3719f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinition.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPrintTaskDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Update-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId -BodyParameter $params ``` +This example shows how to use the Update-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md index 20bc02f8e89..db64fdfaf5b 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0/Update-MgPrintTaskDefinitionTask.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPrintTaskDefinitionTask Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.CloudPrint $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Update-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgPrintTaskDefinitionTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md index e824190a622..aadf228bc08 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementHealthOverview.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId ``` -### Example 2 +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId -ExpandProperty "issues" ``` -### Example 3 +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview ``` -### Example 4 +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementHealthOverview -ExpandProperty "issues" ``` +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md index e7a08dd2d96..f911fe6db29 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementIssue.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgServiceAnnouncementIssue Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementIssue -ServiceHealthIssueId $serviceHealthIssueId ``` -### Example 2 +This example shows how to use the Get-MgServiceAnnouncementIssue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementIssue Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementIssue ``` +This example shows how to use the Get-MgServiceAnnouncementIssue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md index bd24fe75651..c739f4180ab 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessage.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgServiceAnnouncementMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessage -ServiceUpdateMessageId $serviceUpdateMessageId ``` -### Example 2 +This example shows how to use the Get-MgServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessage ``` +This example shows how to use the Get-MgServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md index 5fb75934157..e5ffddff277 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachment.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgServiceAnnouncementMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` -### Example 2 +This example shows how to use the Get-MgServiceAnnouncementMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId ``` +This example shows how to use the Get-MgServiceAnnouncementMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md index 2f3e3883ac4..4049021ca54 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentArchive.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId ``` -### Example 2 +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId -OutFile $outFileId ``` +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md index 21fcbd96085..895e5ca8e5f 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Get-MgServiceAnnouncementMessageAttachmentContent.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` -### Example 2 +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId -OutFile $outFileId ``` +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md index 70532db104b..61d9e4df39d 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgArchiveServiceAnnouncementMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgArchiveServiceAnnouncementMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgArchiveServiceAnnouncementMessage -BodyParameter $params ``` +This example shows how to use the Invoke-MgArchiveServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md index 6ce9c79a0df..e16061e638c 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgFavoriteServiceAnnouncementMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgFavoriteServiceAnnouncementMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgFavoriteServiceAnnouncementMessage -BodyParameter $params ``` +This example shows how to use the Invoke-MgFavoriteServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md index e1b8bb00d7a..fb09fa91814 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageRead.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgMarkServiceAnnouncementMessageRead Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgMarkServiceAnnouncementMessageRead -BodyParameter $params ``` +This example shows how to use the Invoke-MgMarkServiceAnnouncementMessageRead Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md index 6afd980fb7a..0deb99127e4 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgMarkServiceAnnouncementMessageUnread.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgMarkServiceAnnouncementMessageUnread Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgMarkServiceAnnouncementMessageUnread -BodyParameter $params ``` +This example shows how to use the Invoke-MgMarkServiceAnnouncementMessageUnread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md index da5e56cce34..342aeaad400 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgReportServiceAnnouncementIssueIncident.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgReportServiceAnnouncementIssueIncident Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement Invoke-MgReportServiceAnnouncementIssueIncident -ServiceHealthIssueId $serviceHealthIssueId ``` +This example shows how to use the Invoke-MgReportServiceAnnouncementIssueIncident Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md index 7878925303e..702d2b0907b 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnarchiveServiceAnnouncementMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgUnarchiveServiceAnnouncementMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgUnarchiveServiceAnnouncementMessage -BodyParameter $params ``` +This example shows how to use the Invoke-MgUnarchiveServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md index 5eabdadc72e..21ff1c40eec 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0/Invoke-MgUnfavoriteServiceAnnouncementMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgUnfavoriteServiceAnnouncementMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Devices.ServiceAnnouncement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgUnfavoriteServiceAnnouncementMessage -BodyParameter $params ``` +This example shows how to use the Invoke-MgUnfavoriteServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md index f0d0f7ae804..2dbde67e20b 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Confirm-MgDirectoryObjectMemberGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Confirm-MgDirectoryObjectMemberGroup Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ @@ -12,3 +12,5 @@ $params = @{ } Confirm-MgDirectoryObjectMemberGroup -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` +This example shows how to use the Confirm-MgDirectoryObjectMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md index d3075b25d87..c78fa264d7b 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObject.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryObject Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects Get-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Get-MgDirectoryObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md index ee2aaef43e6..1a5b43df21e 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectAvailableExtensionProperty.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryObjectAvailableExtensionProperty Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects Get-MgDirectoryObjectAvailableExtensionProperty ``` +This example shows how to use the Get-MgDirectoryObjectAvailableExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md index 001d5d0a1c6..2140ce07471 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectById.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryObjectById Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ @@ -16,3 +16,5 @@ $params = @{ } Get-MgDirectoryObjectById -BodyParameter $params ``` +This example shows how to use the Get-MgDirectoryObjectById Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md index a5939b6902a..6fbbed6e2da 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryObjectMemberGroup Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Get-MgDirectoryObjectMemberGroup -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` +This example shows how to use the Get-MgDirectoryObjectMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md index af2708a84f9..15c025d07fb 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Get-MgDirectoryObjectMemberObject.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryObjectMemberObject Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Get-MgDirectoryObjectMemberObject -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` +This example shows how to use the Get-MgDirectoryObjectMemberObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md index bbb9f7fe6d7..225c5f869ba 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Remove-MgDirectoryObject.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryObject Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects Remove-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgDirectoryObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md index 2f1b24b0362..a726f215691 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0/Test-MgDirectoryObjectProperty.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Test-MgDirectoryObjectProperty Cmdlet ```powershell Import-Module Microsoft.Graph.DirectoryObjects $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Test-MgDirectoryObjectProperty -BodyParameter $params ``` +This example shows how to use the Test-MgDirectoryObjectProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md index 12f1ab5b06c..80b63f9a931 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClass.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClass -EducationClassId $educationClassId ``` -### Example 2 +This example shows how to use the Get-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClass ``` +This example shows how to use the Get-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md index abe5cc3bf13..49bdf72439e 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignment.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId -ExpandProperty "resources" ``` -### Example 3 +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md index c724d68c554..66f2d4b9eab 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategory.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` +This example shows how to use the Get-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md index d4b2b45fa85..2fd2fbfcb72 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentCategoryDelta.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IVSFtBcXz0jxjIEihcR91dS3R7i8Z2IMtxIn9rKbK9Jvurj6jCH-lDbSNatdesrK0PJ5zpZ_-i8HyqkdtLhWD9tewXVArIqQWJA7gJz8z4paG2q0MU9rixrQOTe7WIXikPiBTUPilHuUW-o1k7cvqke3K7llJbU3G7z_O7WGoVGE.l8-2OcBi9ZWAhwhPnXvJ-kyyk8GNb6-H4o6qofP5YBY" ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" ``` -### Example 3 +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -OutFile $outFileId ``` -### Example 4 +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Top 3 ``` +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md index fc32a8910e3..abe6aa4b78f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDefault.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDefault -EducationClassId $educationClassId ``` +This example shows how to use the Get-MgEducationClassAssignmentDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md index 9b1e02e5fdd..160f1ef5840 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentDelta.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxROmLjac48n-iXm5j6n5aQwlsnC-2OvL3lI0Z8M4klERNmJQjnBn7MHqwXZ6L8GlI3VPnya3E-p1bisiZX97jLvQUAopseIYhvnD6v7fiYrk.fVsHempT6X2CiBh6aN9Ex5nVJ71adKdcf-mdke8OHKs" ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignmentDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IdHoweKQs1czM4Ry1LVsNqwIFXftTcRHvgSCbcszvbJHEWDCO3QO7K7zwCM8DdXNepZOa1gqldecjIUM0NFRbGQoQ5yR6RmGnMgtko8TDMOyMH_yg1my82PTXA_t4Nj-DhMDZWvuNTd_lbLeTngc7mIJPMCR2gHN9CSKsW_kw850.UM9tUqwOu5Ln1pnxaP6KdMmfJHszGqY3EKPlQkOiyGs" ``` -### Example 3 +This example shows how to use the Get-MgEducationClassAssignmentDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2 ``` +This example shows how to use the Get-MgEducationClassAssignmentDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md index 30af2f38a5f..1a917c81730 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentResource.md @@ -1,35 +1,49 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -### Example 3 +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -### Example 4 +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -### Example 5 +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -### Example 6 +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` -### Example 7 +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md index e3597effd46..b991a476d2c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentRubric.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentRubric -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Get-MgEducationClassAssignmentRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md index f1e600b3162..e315eabe738 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSetting.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentSetting Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSetting -EducationClassId $educationClassId ``` +This example shows how to use the Get-MgEducationClassAssignmentSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md index 507043ebab6..3388edc8863 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmission.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -ExpandProperty "*" ``` -### Example 3 +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -ExpandProperty "outcomes" ``` -### Example 4 +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md index 1829880616c..109ba482a6c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md index eb5df2f3fc7..6c6a6c40d26 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionResource.md @@ -1,35 +1,49 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -### Example 2 +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -### Example 3 +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -### Example 4 +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -### Example 5 +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -### Example 6 +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` -### Example 7 +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md index 35af243cc22..5923828d054 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassAssignmentSubmissionSubmittedResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassAssignmentSubmissionSubmittedResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionSubmittedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md index 4fbb437ee4f..21042a9005f 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassDelta ``` +This example shows how to use the Get-MgEducationClassDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md index 7bca76f2516..9dd47d93abf 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassMember Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassMember -EducationClassId $educationClassId ``` +This example shows how to use the Get-MgEducationClassMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md index 46e4a7becb7..957fbfc323c 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassSchool.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassSchool -EducationClassId $educationClassId ``` +This example shows how to use the Get-MgEducationClassSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md index 32629ada032..473fe1c18b8 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationClassTeacher.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationClassTeacher Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationClassTeacher -EducationClassId $educationClassId ``` +This example shows how to use the Get-MgEducationClassTeacher Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md index 279b8657002..87f61a0c158 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationMeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeAssignment ``` +This example shows how to use the Get-MgEducationMeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md index 8068a52ce2b..c2fc5b19747 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeClass.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationMeClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeClass ``` +This example shows how to use the Get-MgEducationMeClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md index d1c8989fada..514fcbf769a 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeRubric.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationMeRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeRubric -EducationRubricId $educationRubricId ``` -### Example 2 +This example shows how to use the Get-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationMeRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeRubric ``` +This example shows how to use the Get-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md index 293ed1f2802..4d601152127 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationMeSchool.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationMeSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationMeSchool ``` +This example shows how to use the Get-MgEducationMeSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md index b2430c52eaa..14f7cd8885e 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchool.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchool -EducationSchoolId $educationSchoolId ``` -### Example 2 +This example shows how to use the Get-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchool ``` +This example shows how to use the Get-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md index 0374ae850f0..d62c4b40053 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolClass.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationSchoolClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolClass -EducationSchoolId $educationSchoolId ``` +This example shows how to use the Get-MgEducationSchoolClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md index 929cdb7dce8..27fd275b361 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationSchoolDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolDelta ``` +This example shows how to use the Get-MgEducationSchoolDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md index c20bb8e1dd1..74fbaed65bd 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationSchoolUser.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationSchoolUser Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationSchoolUser -EducationSchoolId $educationSchoolId ``` +This example shows how to use the Get-MgEducationSchoolUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md index 7130fc90427..6a325831ea2 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUser.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationUser Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUser -EducationUserId $educationUserId ``` -### Example 2 +This example shows how to use the Get-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationUser Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUser ``` +This example shows how to use the Get-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md index 7280733a026..37d17933a46 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserAssignment.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationUserAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserAssignment -EducationUserId $educationUserId -ExpandProperty "submissions" ``` -### Example 2 +This example shows how to use the Get-MgEducationUserAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationUserAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserAssignment -EducationUserId $educationUserId ``` +This example shows how to use the Get-MgEducationUserAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md index 13679288a92..8ebded8c6c2 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEducationUserDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserDelta ``` +This example shows how to use the Get-MgEducationUserDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md index 3895cfcfdb3..d6be229bb34 100644 --- a/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md +++ b/src/Education/Education/examples/v1.0/Get-MgEducationUserTaughtClass.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEducationUserTaughtClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserTaughtClass -EducationUserId $educationUserId ``` -### Example 2 +This example shows how to use the Get-MgEducationUserTaughtClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationUserTaughtClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Get-MgEducationUserTaughtClass -EducationUserId $educationUserId -OutFile $outFileId ``` +This example shows how to use the Get-MgEducationUserTaughtClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md index 448eba29c41..09045ac6546 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReassignEducationClassAssignmentSubmission.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` -### Example 2 +This example shows how to use the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md index 57848ba8e12..02af8895caf 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgReturnEducationClassAssignmentSubmission.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgReturnEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Invoke-MgReturnEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Invoke-MgReturnEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md index 2f3f4d5d05c..696c90941ec 100644 --- a/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgUnsubmitEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Invoke-MgUnsubmitEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Invoke-MgUnsubmitEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClass.md b/src/Education/Education/examples/v1.0/New-MgEducationClass.md index ad6c283d431..22c2b03b98e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClass.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -21,3 +21,5 @@ $params = @{ } New-MgEducationClass -BodyParameter $params ``` +This example shows how to use the New-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md index 32ac286fe31..447949218e0 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -20,3 +20,5 @@ $params = @{ } New-MgEducationClassAssignment -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md index ec6100ef30a..85e8024228b 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategory.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassAssignmentCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md index 4d77c8097d1..3d43577232c 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentCategoryByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassAssignmentCategoryByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,7 +6,9 @@ $params = @{ } New-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgEducationClassAssignmentCategoryByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationClassAssignmentCategoryByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -14,3 +16,5 @@ $params = @{ } New-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassAssignmentCategoryByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md index ae34d60f513..8081fad140e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentResource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -11,7 +11,9 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -23,7 +25,9 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -37,7 +41,9 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -50,7 +56,9 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -63,7 +71,9 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` -### Example 6 +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -76,3 +86,5 @@ $params = @{ } New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md index a89dd62a554..6199539fbd4 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassAssignmentSubmissionResource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -10,7 +10,9 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -22,7 +24,9 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -34,7 +38,9 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -46,7 +52,9 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -58,7 +66,9 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` -### Example 6 +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -70,3 +80,5 @@ $params = @{ } New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md index 04e410ff407..27c0411e27e 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassMemberByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEducationClassMemberByRef -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md index 31e2847332e..856e940b1dc 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationClassTeacherByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationClassTeacherByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEducationClassTeacherByRef -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the New-MgEducationClassTeacherByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md index 871dbe090f0..e8b652d0380 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationMeRubric.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationMeRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -68,7 +68,9 @@ $params = @{ } New-MgEducationMeRubric -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationMeRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -151,3 +153,5 @@ $params = @{ } New-MgEducationMeRubric -BodyParameter $params ``` +This example shows how to use the New-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md index 33c908614d6..5fda77b1ae1 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchool.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -25,3 +25,5 @@ $params = @{ } New-MgEducationSchool -BodyParameter $params ``` +This example shows how to use the New-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md index 66b714ce19d..68f5d4135c2 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolClassByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationSchoolClassByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEducationSchoolClassByRef -EducationSchoolId $educationSchoolId -BodyParameter $params ``` +This example shows how to use the New-MgEducationSchoolClassByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md index 2e5a5f8359b..26b824c9b0f 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationSchoolUserByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationSchoolUserByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEducationSchoolUserByRef -EducationSchoolId $educationSchoolId -BodyParameter $params ``` +This example shows how to use the New-MgEducationSchoolUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/New-MgEducationUser.md b/src/Education/Education/examples/v1.0/New-MgEducationUser.md index 4b3836fbcb1..f90c5febd5b 100644 --- a/src/Education/Education/examples/v1.0/New-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/New-MgEducationUser.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEducationUser Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -65,3 +65,5 @@ $params = @{ } New-MgEducationUser -BodyParameter $params ``` +This example shows how to use the New-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md index 2d3c4cca650..60310cb3a0c 100644 --- a/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Publish-MgEducationClassAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Publish-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Publish-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Publish-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md index 432ba299685..b96838cab33 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClass.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClass -EducationClassId $educationClassId ``` +This example shows how to use the Remove-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md index a8182463d1b..c8b2fb842d2 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Remove-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md index 2d6fd5ec79a..c41b8ef9ccc 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategory.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClassAssignmentCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` +This example shows how to use the Remove-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md index 5d8cd0d5b46..0f1753609db 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentCategoryByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClassAssignmentCategoryByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationCategoryId $educationCategoryId ``` +This example shows how to use the Remove-MgEducationClassAssignmentCategoryByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md index 5b33b01e625..41e2d166aeb 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentResource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClassAssignmentResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` +This example shows how to use the Remove-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md index 37dccfe3771..d3f39ff4857 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentRubricByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClassAssignmentRubricByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` +This example shows how to use the Remove-MgEducationClassAssignmentRubricByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md index 6824e4c6e2e..df2337a43da 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationClassAssignmentSubmissionResource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` +This example shows how to use the Remove-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md index a2931f59f86..24dade8fdb0 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationMeRubric.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationMeRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationMeRubric -EducationRubricId $educationRubricId ``` +This example shows how to use the Remove-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md index ad59bc793f3..2f094bc798d 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationSchool.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationSchool -EducationSchoolId $educationSchoolId ``` +This example shows how to use the Remove-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md index 8d0e9455470..4fa932e5fc0 100644 --- a/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Remove-MgEducationUser.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEducationUser Cmdlet ```powershell Import-Module Microsoft.Graph.Education Remove-MgEducationUser -EducationUserId $educationUserId ``` +This example shows how to use the Remove-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md index bb311549051..4623a1050a6 100644 --- a/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0/Set-MgEducationClassAssignmentRubricByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Set-MgEducationClassAssignmentRubricByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Set-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` +This example shows how to use the Set-MgEducationClassAssignmentRubricByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md index 4e4297253eb..2e1a632398a 100644 --- a/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0/Submit-MgEducationClassAssignmentSubmission.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Submit-MgEducationClassAssignmentSubmission Cmdlet ```powershell Import-Module Microsoft.Graph.Education Submit-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` +This example shows how to use the Submit-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md index df7dae988e0..7defc755f60 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClass.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationClass Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgEducationClass -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md index b72a0aa953c..f6f0369a55e 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationClassAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -12,3 +12,5 @@ $params = @{ } Update-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md index bc84e6af1d2..1eae9476304 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentDefault.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationClassAssignmentDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgEducationClassAssignmentDefault -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationClassAssignmentDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md index 3add71e55b1..7f42606bd35 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSetting.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationClassAssignmentSetting Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgEducationClassAssignmentSetting -EducationClassId $educationClassId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationClassAssignmentSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md index d66f1afbe2f..2b0be5c9bcd 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,7 +6,9 @@ $params = @{ } Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -18,7 +20,9 @@ $params = @{ } Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -30,3 +34,5 @@ $params = @{ } Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md index 12792d36e0d..8142e8dc7bf 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationMeRubric.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationMeRubric Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgEducationMeRubric -EducationRubricId $educationRubricId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md index c747e9a6d07..47dfcc53182 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationSchool.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationSchool Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgEducationSchool -EducationSchoolId $educationSchoolId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md index bdc4e4a6fda..9ef684e7738 100644 --- a/src/Education/Education/examples/v1.0/Update-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0/Update-MgEducationUser.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEducationUser Cmdlet ```powershell Import-Module Microsoft.Graph.Education $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Update-MgEducationUser -EducationUserId $educationUserId -BodyParameter $params ``` +This example shows how to use the Update-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgDrive.md b/src/Files/Files/examples/v1.0/Get-MgDrive.md index 93b6d480055..cdf71c3bf1a 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgDrive.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgDrive -DriveId $driveId ``` +This example shows how to use the Get-MgDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md index 7aafa4dc968..a5cfd4c7166 100644 --- a/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md +++ b/src/Files/Files/examples/v1.0/Get-MgDriveItemChild.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDriveItemChild Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgDriveItemChild -DriveId $driveId -DriveItemId $driveItemId ``` +This example shows how to use the Get-MgDriveItemChild Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md index deee9d1a805..955c51214ff 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDefaultDrive.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupDefaultDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgGroupDefaultDrive -GroupId $groupId ``` +This example shows how to use the Get-MgGroupDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md index 401125ae824..a5c93851d46 100644 --- a/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgGroupDrive.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgGroupDrive -GroupId $groupId ``` +This example shows how to use the Get-MgGroupDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md index 3fb8ce1b462..2ed20e7b12d 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareDriveItem.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgShareDriveItem Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId -ExpandProperty "children" ``` -### Example 2 +This example shows how to use the Get-MgShareDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgShareDriveItem Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId ``` +This example shows how to use the Get-MgShareDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md index 3ded65b4129..bf2eb45757a 100644 --- a/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md +++ b/src/Files/Files/examples/v1.0/Get-MgShareSharedDriveItemSharedDriveItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgShareSharedDriveItemSharedDriveItem Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgShareSharedDriveItemSharedDriveItem -SharedDriveItemId $sharedDriveItemId ``` +This example shows how to use the Get-MgShareSharedDriveItemSharedDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md index 2e8e03865f0..8a536b750af 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDefaultDrive.md @@ -1,11 +1,15 @@ -### Example 1 +### Example 1: Using the Get-MgUserDefaultDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgUserDefaultDrive -UserId $userId ``` -### Example 2 +This example shows how to use the Get-MgUserDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserDefaultDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files # A UPN can also be used as -UserId. Get-MgUserDefaultDrive -UserId $userId ``` +This example shows how to use the Get-MgUserDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md index 51c94c08495..4ee20f6d7d8 100644 --- a/src/Files/Files/examples/v1.0/Get-MgUserDrive.md +++ b/src/Files/Files/examples/v1.0/Get-MgUserDrive.md @@ -1,11 +1,15 @@ -### Example 1 +### Example 1: Using the Get-MgUserDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files # A UPN can also be used as -UserId. Get-MgUserDrive -UserId $userId ``` -### Example 2 +This example shows how to use the Get-MgUserDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Files Get-MgUserDrive -UserId $userId ``` +This example shows how to use the Get-MgUserDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md index 63555ba2664..702c8dbc620 100644 --- a/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md +++ b/src/Files/Files/examples/v1.0/Grant-MgSharePermission.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Grant-MgSharePermission Cmdlet ```powershell Import-Module Microsoft.Graph.Files $params = @{ @@ -16,3 +16,5 @@ $params = @{ } Grant-MgSharePermission -SharedDriveItemId $sharedDriveItemId -BodyParameter $params ``` +This example shows how to use the Grant-MgSharePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md index ebfd7562098..b1f06e3a43c 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckinDriveItem.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgCheckinDriveItem Cmdlet ```powershell Import-Module Microsoft.Graph.Files $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgCheckinDriveItem -DriveId $driveId -DriveItemId $driveItemId -BodyParameter $params ``` +This example shows how to use the Invoke-MgCheckinDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md index bae6a147257..1369b601643 100644 --- a/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md +++ b/src/Files/Files/examples/v1.0/Invoke-MgCheckoutDriveItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgCheckoutDriveItem Cmdlet ```powershell Import-Module Microsoft.Graph.Files Invoke-MgCheckoutDriveItem -DriveId $driveId -DriveItemId $driveItemId ``` +This example shows how to use the Invoke-MgCheckoutDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md index 8a45306d33f..d184a260a9e 100644 --- a/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md +++ b/src/Files/Files/examples/v1.0/Restore-MgDriveItemVersion.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Restore-MgDriveItemVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Files Restore-MgDriveItemVersion -DriveId $driveId -DriveItemId $driveItemId -DriveItemVersionId $driveItemVersionId ``` +This example shows how to use the Restore-MgDriveItemVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md index 93ffc3ce8e5..d0fba8517ea 100644 --- a/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Add-MgGroupFavorite.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Add-MgGroupFavorite Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Add-MgGroupFavorite -GroupId $groupId ``` +This example shows how to use the Add-MgGroupFavorite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md index f8924586b23..99b4f1ef2e8 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupAcceptedSender.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupAcceptedSender Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupAcceptedSender -GroupId $groupId ``` +This example shows how to use the Get-MgGroupAcceptedSender Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md index c221f9bd228..a37e7fe7fc6 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversation.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgGroupConversation Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` -### Example 2 +This example shows how to use the Get-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupConversation Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId ``` -### Example 3 +This example shows how to use the Get-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgGroupConversation Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` +This example shows how to use the Get-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md index 487110e6fe7..960b3d9f5f9 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupConversationThread.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupConversationThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId ``` +This example shows how to use the Get-MgGroupConversationThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md index 3184cd929b3..f4f90aba072 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupDelta ``` +This example shows how to use the Get-MgGroupDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md index da42e7af79b..7f106a34079 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgGroupLifecyclePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` -### Example 2 +This example shows how to use the Get-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupLifecyclePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicy ``` +This example shows how to use the Get-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md index 2b4320e659f..ef79c66389f 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupLifecyclePolicyByGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupLifecyclePolicyByGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupLifecyclePolicyByGroup -GroupId $groupId ``` +This example shows how to use the Get-MgGroupLifecyclePolicyByGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md index eba19f1aea2..43e6f5c11ee 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupMemberOf -GroupId $groupId ``` +This example shows how to use the Get-MgGroupMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md index 2419daa4ea8..7a758e041a1 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPermissionGrant.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupPermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupPermissionGrant -GroupId $groupId ``` +This example shows how to use the Get-MgGroupPermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md index 9f7153c1e45..2c1dee45862 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupPhoto.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupPhoto Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupPhoto -GroupId $groupId ``` +This example shows how to use the Get-MgGroupPhoto Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md index 466ec84e531..aa9baa519e0 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupRejectedSender.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupRejectedSender Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupRejectedSender -GroupId $groupId ``` +This example shows how to use the Get-MgGroupRejectedSender Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md index 76c0ba16a4b..d5e4f0650b4 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThread.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` -### Example 2 +This example shows how to use the Get-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` -### Example 3 +This example shows how to use the Get-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThread -GroupId $groupId ``` +This example shows how to use the Get-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md index e03e3b8151b..b023fd6622c 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPost.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupThreadPost Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId ``` +This example shows how to use the Get-MgGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md index 9852ecbcc77..ac521468139 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostAttachment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupThreadPostAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPostAttachment -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId ``` +This example shows how to use the Get-MgGroupThreadPostAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md index 9405fa8183f..ad651224283 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupThreadPostExtension.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupThreadPostExtension Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId ``` +This example shows how to use the Get-MgGroupThreadPostExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md index 70d757b4a55..b7ca5b23cdd 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupTransitiveMember Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupTransitiveMember -GroupId $groupId ``` +This example shows how to use the Get-MgGroupTransitiveMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md index bc9164a1345..a97b23a9555 100644 --- a/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md +++ b/src/Groups/Groups/examples/v1.0/Get-MgGroupTransitiveMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupTransitiveMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Get-MgGroupTransitiveMemberOf -GroupId $groupId ``` +This example shows how to use the Get-MgGroupTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md index 096b0727aad..0b786482c0b 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgForwardGroupThreadPost.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgForwardGroupThreadPost Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -14,3 +14,5 @@ $params = @{ } Invoke-MgForwardGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` +This example shows how to use the Invoke-MgForwardGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md index 2a4971d8df4..7cd55b752b4 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgGraphGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgGraphGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Invoke-MgGraphGroup -GroupId $groupId ``` +This example shows how to use the Invoke-MgGraphGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md index f7bd3836266..0172a929034 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgRenewGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgRenewGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Invoke-MgRenewGroup -GroupId $groupId ``` +This example shows how to use the Invoke-MgRenewGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md index 35aa3994de4..2e68a25341d 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThread.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgReplyGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -11,7 +11,9 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgReplyGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -31,7 +33,9 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgReplyGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -54,7 +58,9 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` -### Example 4 +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Invoke-MgReplyGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -77,3 +83,5 @@ $params = @{ } Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md index 6b9c8efaa7c..73e9745fdef 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgReplyGroupThreadPost.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgReplyGroupThreadPost Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -55,3 +55,5 @@ $params = @{ } Invoke-MgReplyGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` +This example shows how to use the Invoke-MgReplyGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md index f9551f9d1b5..f314f5fa27f 100644 --- a/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md +++ b/src/Groups/Groups/examples/v1.0/Invoke-MgSubscribeGroupByMail.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgSubscribeGroupByMail Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Invoke-MgSubscribeGroupByMail -GroupId $groupId ``` +This example shows how to use the Invoke-MgSubscribeGroupByMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md index e32681d0bed..bda85828566 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupAcceptedSenderByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupAcceptedSenderByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgGroupAcceptedSenderByRef -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the New-MgGroupAcceptedSenderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md index dc149303111..9f8c324e195 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversation.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupConversation Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -26,3 +26,5 @@ $params = @{ } New-MgGroupConversation -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the New-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md index 9d50d4fe18e..aa13718af43 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupConversationThread.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupConversationThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -14,3 +14,5 @@ $params = @{ } New-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId -BodyParameter $params ``` +This example shows how to use the New-MgGroupConversationThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md index 2ff8ba11fe1..c8c8d6981bc 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupLifecyclePolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupLifecyclePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgGroupLifecyclePolicy -BodyParameter $params ``` +This example shows how to use the New-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md index 010302ab919..715e5f7ec7d 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupMemberByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgGroupMemberByRef -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the New-MgGroupMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md index 739999691e0..c0bd8ddacd4 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupRejectedSenderByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupRejectedSenderByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgGroupRejectedSenderByRef -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the New-MgGroupRejectedSenderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md index b26a2d152ce..9abf0569b6f 100644 --- a/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/New-MgGroupThread.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -22,3 +22,5 @@ $params = @{ } New-MgGroupThread -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the New-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md index 71f6b469b1d..8cf3f2c1726 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupConversation.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupConversation Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` -### Example 2 +This example shows how to use the Remove-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgGroupConversation Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` +This example shows how to use the Remove-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md index ba101afb543..7c030b1c197 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupFavorite.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupFavorite Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupFavorite -GroupId $groupId ``` +This example shows how to use the Remove-MgGroupFavorite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md index e47e357278b..e35851c5eb5 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupLifecyclePolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupLifecyclePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` +This example shows how to use the Remove-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md index 0169b60e612..cdc572481d3 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupMemberByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupMemberByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgGroupMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md index 4f5faf5a49a..ae97b0608e7 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupOwnerByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupOwnerByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupOwnerByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgGroupOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md index f163ba0e990..3f81cb5b28e 100644 --- a/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Remove-MgGroupThread.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Remove-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` -### Example 2 +This example shows how to use the Remove-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` +This example shows how to use the Remove-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md index 26b816a4792..2e75ffdf2f5 100644 --- a/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md +++ b/src/Groups/Groups/examples/v1.0/Reset-MgGroupUnseenCount.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Reset-MgGroupUnseenCount Cmdlet ```powershell Import-Module Microsoft.Graph.Groups Reset-MgGroupUnseenCount -GroupId $groupId ``` +This example shows how to use the Reset-MgGroupUnseenCount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md index e07f605e0bd..a6b7f1f2ac7 100644 --- a/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md +++ b/src/Groups/Groups/examples/v1.0/Set-MgGroupLicense.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Set-MgGroupLicense Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -22,7 +22,9 @@ $params = @{ } Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Set-MgGroupLicense Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Set-MgGroupLicense Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -35,3 +37,5 @@ $params = @{ } Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the Set-MgGroupLicense Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md index ae7a157d6cc..1ba38d9f927 100644 --- a/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md +++ b/src/Groups/Groups/examples/v1.0/Test-MgGroupProperty.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Test-MgGroupProperty Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Test-MgGroupProperty -GroupId $groupId -BodyParameter $params ``` +This example shows how to use the Test-MgGroupProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md index 523d6507d33..5c1306ba208 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupLifecyclePolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgGroupLifecyclePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md index dd7b691ce62..7fca17fa2f0 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThread.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgGroupThread Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` +This example shows how to use the Update-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md index f2073990301..165856050f1 100644 --- a/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0/Update-MgGroupThreadPostExtension.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgGroupThreadPostExtension Cmdlet ```powershell Import-Module Microsoft.Graph.Groups $params = @{ @@ -15,3 +15,5 @@ $params = @{ } Update-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId -BodyParameter $params ``` +This example shows how to use the Update-MgGroupThreadPostExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md index 606470d37fa..4790401e679 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Confirm-MgDomain.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Confirm-MgDomain Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Confirm-MgDomain -DomainId $domainId ``` +This example shows how to use the Confirm-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md index 5654009400b..db93604d695 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgContactDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactDelta ``` +This example shows how to use the Get-MgContactDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md index a9a73caa6ea..a67e12d3974 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactDirectReport.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgContactDirectReport Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactDirectReport -OrgContactId $orgContactId ``` +This example shows how to use the Get-MgContactDirectReport Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md index 1dafc8388b0..110f1c146c1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactManager.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgContactManager Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactManager -OrgContactId $orgContactId ``` +This example shows how to use the Get-MgContactManager Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md index 726ea1bdad9..48d8ebf9a7e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgContactMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactMemberOf -OrgContactId $orgContactId ``` +This example shows how to use the Get-MgContactMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md index 944d97cc019..a58298f5354 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContactTransitiveMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgContactTransitiveMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContactTransitiveMemberOf -OrgContactId $orgContactId ``` +This example shows how to use the Get-MgContactTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md index 7e5a9e665ff..c2d402b792b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgContract.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgContract Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContract -ContractId $contractId ``` -### Example 2 +This example shows how to use the Get-MgContract Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgContract Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgContract ``` +This example shows how to use the Get-MgContract Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md index a8b544ac254..e838861d2a7 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDevice.md @@ -1,35 +1,49 @@ -### Example 1 +### Example 1: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Search "displayName:Android" -CountVariable CountVar -ConsistencyLevel eventual ``` -### Example 2 +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -DeviceId $deviceId ``` -### Example 3 +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -DeviceId $deviceId -Property "id,extensionAttributes" ``` -### Example 4 +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Filter "extensionAttributes/extensionAttribute1 eq 'BYOD-Device'" -CountVariable CountVar -ConsistencyLevel eventual ``` -### Example 5 +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice ``` -### Example 6 +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Property "id,extensionAttributes" ``` -### Example 7 +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDevice -Filter "startswith(displayName, 'a')" -CountVariable CountVar -Top 1 -Sort "displayName" -ConsistencyLevel eventual ``` +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md index 65b2b5ae558..d83557ee5cb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDeviceMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceMemberOf -DeviceId $deviceId ``` +This example shows how to use the Get-MgDeviceMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md index 60b6270efc6..a1180f205f5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredOwner.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDeviceRegisteredOwner Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceRegisteredOwner -DeviceId $deviceId ``` +This example shows how to use the Get-MgDeviceRegisteredOwner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md index 52eb4c8c431..c99c9ce8aac 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceRegisteredUser.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDeviceRegisteredUser Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceRegisteredUser -DeviceId $deviceId ``` +This example shows how to use the Get-MgDeviceRegisteredUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md index fd9e3deb5d9..4edc82d6207 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDeviceTransitiveMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDeviceTransitiveMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDeviceTransitiveMemberOf -DeviceId $deviceId ``` +This example shows how to use the Get-MgDeviceTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md index 38dc5f336d5..259c8e98d12 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnit.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryAdministrativeUnit Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` -### Example 2 +This example shows how to use the Get-MgDirectoryAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryAdministrativeUnit Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnit ``` +This example shows how to use the Get-MgDirectoryAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md index 17ceadbfb25..476caeabfab 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryAdministrativeUnitMember Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitMember -AdministrativeUnitId $administrativeUnitId ``` +This example shows how to use the Get-MgDirectoryAdministrativeUnitMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md index 1734e44e850..f8311e3be03 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryAdministrativeUnitMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId ``` +This example shows how to use the Get-MgDirectoryAdministrativeUnitMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md index 7e13091f1f7..e7006a3718e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` -### Example 2 +This example shows how to use the Get-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId ``` +This example shows how to use the Get-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md index f77a19dedde..81a1bf6821d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryFederationConfiguration.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryFederationConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId -Filter "domains/any(x: x/id eq 'contoso.com')" ``` -### Example 2 +This example shows how to use the Get-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryFederationConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` +This example shows how to use the Get-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md index 546e0150f7a..66ae1efd076 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryRoleDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleDelta ``` +This example shows how to use the Get-MgDirectoryRoleDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md index 69eef37bf87..f1182cc0668 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleScopedMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryRoleScopedMember Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleScopedMember -DirectoryRoleId $directoryRoleId ``` +This example shows how to use the Get-MgDirectoryRoleScopedMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md index 311c409d55d..e8e27e057f0 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDirectoryRoleTemplate.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgDirectoryRoleTemplate Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleTemplate -DirectoryRoleTemplateId $directoryRoleTemplateId ``` -### Example 2 +This example shows how to use the Get-MgDirectoryRoleTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryRoleTemplate Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDirectoryRoleTemplate ``` +This example shows how to use the Get-MgDirectoryRoleTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md index 2ef53aa351b..64754851c9d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainNameReference.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDomainNameReference Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainNameReference -DomainId $domainId ``` +This example shows how to use the Get-MgDomainNameReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md index 12e121b1e60..09290208592 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainServiceConfigurationRecord.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDomainServiceConfigurationRecord Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainServiceConfigurationRecord -DomainId $domainId ``` +This example shows how to use the Get-MgDomainServiceConfigurationRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md index a483d9ab0f2..8508acb879e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgDomainVerificationDnsRecord.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDomainVerificationDnsRecord Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgDomainVerificationDnsRecord -DomainId $domainId ``` +This example shows how to use the Get-MgDomainVerificationDnsRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md index 58afc7a29b6..bf1a20a58cb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganization.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganization -OrganizationId $organizationId ``` -### Example 2 +This example shows how to use the Get-MgOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganization ``` +This example shows how to use the Get-MgOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md index ddbbe3f52c8..9d542a4611e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBranding.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgOrganizationBranding Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` -### Example 2 +This example shows how to use the Get-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationBranding Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` -### Example 3 +This example shows how to use the Get-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgOrganizationBranding Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBranding -OrganizationId $organizationId ``` +This example shows how to use the Get-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md index 6174f4ce606..0572ed0fe94 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalization.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgOrganizationBrandingLocalization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` -### Example 2 +This example shows how to use the Get-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationBrandingLocalization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId ``` +This example shows how to use the Get-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md index 01238c45c8c..2add861809a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Get-MgOrganizationBrandingLocalizationBannerLogo.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` -### Example 2 +This example shows how to use the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` -### Example 3 +This example shows how to use the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -OutFile $outFileId ``` +This example shows how to use the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md index d1e85e29381..aca2d80b927 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Invoke-MgForceDomainDelete.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgForceDomainDelete Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Invoke-MgForceDomainDelete -DomainId $domainId -BodyParameter $params ``` +This example shows how to use the Invoke-MgForceDomainDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md index 170b67a2b84..6cc559d78b2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDevice.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -16,3 +16,5 @@ $params = @{ } New-MgDevice -BodyParameter $params ``` +This example shows how to use the New-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md index 2ebe90eb22e..4da7bfd4586 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredOwnerByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDeviceRegisteredOwnerByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -BodyParameter $params ``` +This example shows how to use the New-MgDeviceRegisteredOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md index 06e6b5f2827..3fb7b342acf 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDeviceRegisteredUserByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDeviceRegisteredUserByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgDeviceRegisteredUserByRef -DeviceId $deviceId -BodyParameter $params ``` +This example shows how to use the New-MgDeviceRegisteredUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md index 5fc149ba783..c3b2ff8fa98 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnit.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDirectoryAdministrativeUnit Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgDirectoryAdministrativeUnit -BodyParameter $params ``` +This example shows how to use the New-MgDirectoryAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md index 84fd36785f1..4c50c2ccc39 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDirectoryAdministrativeUnitMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` +This example shows how to use the New-MgDirectoryAdministrativeUnitMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md index 187a1c8d21c..5c8a9266800 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -9,3 +9,5 @@ $params = @{ } New-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` +This example shows how to use the New-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md index a15d1170287..96f4e935ab4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryFederationConfiguration.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDirectoryFederationConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -18,3 +18,5 @@ $params = @{ } New-MgDirectoryFederationConfiguration -BodyParameter $params ``` +This example shows how to use the New-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md index 89d43ecffdc..14ef0502506 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDirectoryRole.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDirectoryRole Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgDirectoryRole -BodyParameter $params ``` +This example shows how to use the New-MgDirectoryRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md index c1b3f3ca703..f88d172ca2d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgDomain.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgDomain Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgDomain -BodyParameter $params ``` +This example shows how to use the New-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md index 3fd169e1104..c80e7735f90 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/New-MgOrganizationBrandingLocalization.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgOrganizationBrandingLocalization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgOrganizationBrandingLocalization -OrganizationId $organizationId -BodyParameter $params ``` +This example shows how to use the New-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md index 5c954676d20..f95ac3817a5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDevice.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDevice -DeviceId $deviceId ``` +This example shows how to use the Remove-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md index 9ee57901ea7..e39709f5bd4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDeviceRegisteredOwnerByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDeviceRegisteredOwnerByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgDeviceRegisteredOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md index 574a0afd03c..f8cf0710b99 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnit.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryAdministrativeUnit Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId ``` +This example shows how to use the Remove-MgDirectoryAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md index 0c7e475423e..b2039e63475 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitMemberByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryAdministrativeUnitMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgDirectoryAdministrativeUnitMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md index d6d041bd10e..a25463ac296 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryAdministrativeUnitScopedRoleMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` +This example shows how to use the Remove-MgDirectoryAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md index 737959a973b..f78331b425b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryDeletedItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryDeletedItem Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgDirectoryDeletedItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md index 114c7445897..c0f0946b4b6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryFederationConfiguration.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryFederationConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` +This example shows how to use the Remove-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md index a66bc3a5d30..31685a3cad6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDirectoryRoleMemberByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDirectoryRoleMemberByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDirectoryRoleMemberByRef -DirectoryRoleId $directoryRoleId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgDirectoryRoleMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md index 5d9f4389d39..9a3adcac02e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgDomain.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgDomain Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgDomain -DomainId $domainId ``` +This example shows how to use the Remove-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md index c4eef6360fb..65e78f222c8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Remove-MgOrganizationBrandingLocalization.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgOrganizationBrandingLocalization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Remove-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` +This example shows how to use the Remove-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md index 31a6ea139e6..1633d1d41f2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Restore-MgDirectoryDeletedItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Restore-MgDirectoryDeletedItem Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement Restore-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Restore-MgDirectoryDeletedItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md index 941d483208f..0cdd079c27d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDevice.md @@ -1,11 +1,13 @@ -### Example 1 +### Example 1: Using the Update-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ } Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -13,3 +15,5 @@ $params = @{ } Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` +This example shows how to use the Update-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md index 766ae239bef..67d7f07d3eb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDirectoryAdministrativeUnit.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgDirectoryAdministrativeUnit Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgDirectoryAdministrativeUnit -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` +This example shows how to use the Update-MgDirectoryAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md index 1a79ba174dc..1ff91394b8f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgDomain.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgDomain Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgDomain -DomainId $domainId -BodyParameter $params ``` +This example shows how to use the Update-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md index 9e77822f663..5e266c3d37d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganization.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -21,3 +21,5 @@ $params = @{ } Update-MgOrganization -OrganizationId $organizationId -BodyParameter $params ``` +This example shows how to use the Update-MgOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md index de9d27fcd3b..a52a4669fef 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBranding.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgOrganizationBranding Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgOrganizationBranding -OrganizationId $organizationId -BodyParameter $params ``` +This example shows how to use the Update-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md index 4707902bf0d..9e02549df28 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0/Update-MgOrganizationBrandingLocalization.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgOrganizationBrandingLocalization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -7,7 +7,9 @@ $params = @{ } Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgOrganizationBrandingLocalization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.DirectoryManagement $params = @{ @@ -16,3 +18,5 @@ $params = @{ } Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` +This example shows how to use the Update-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 7d410e1c1a2..b47c8495eb0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md index a2ef9d71b20..2c598ca7b98 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackage.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementAccessPackage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAccessPackage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` -### Example 3 +This example shows how to use the Get-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEntitlementManagementAccessPackage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackage ``` +This example shows how to use the Get-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md index 321d6a57051..68e1cff8a15 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement -AccessPackageId $accessPackageId ``` +This example shows how to use the Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md index f08018df317..e2060b8a45e 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId -ApprovalStageId $approvalStageId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage -ApprovalId $approvalId ``` +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md index b323d15e0d1..43b0683798a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignment.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` -### Example 3 +This example shows how to use the Get-MgEntitlementManagementAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEntitlementManagementAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignment ``` +This example shows how to use the Get-MgEntitlementManagementAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md index 6118c9e9fa0..63da8678912 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentPolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementAssignmentPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementAssignmentPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAssignmentPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentPolicy ``` +This example shows how to use the Get-MgEntitlementManagementAssignmentPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md index cdd4cc21314..c0723aac771 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementAssignmentRequest.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` -### Example 3 +This example shows how to use the Get-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementAssignmentRequest ``` +This example shows how to use the Get-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md index 215a09acdf8..15dca9a8afb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementCatalog.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementCatalog Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementCatalog Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementCatalog ``` +This example shows how to use the Get-MgEntitlementManagementCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md index cbc4370214d..10e9971e12e 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementConnectedOrganization.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` -### Example 2 +This example shows how to use the Get-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementConnectedOrganization ``` +This example shows how to use the Get-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md index cf7156ddd23..0a604864430 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgEntitlementManagementSetting.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgEntitlementManagementSetting Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgEntitlementManagementSetting ``` +This example shows how to use the Get-MgEntitlementManagementSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md index e8f42f5aa1c..c1c3a5bc264 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -Filter "contains(scope/microsoft.graph.accessReviewQueryScope/query, './members')" ``` -### Example 4 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinition -Top 100 -Skip 0 ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 2f949a49289..22c45c9e876 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md index b8a381e3482..a338bf14029 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index e6fd1052b59..482c00a494f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 35f9c76731a..4764bacf290 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 350e098ace0..b1567ab4c77 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 0af243b12f7..b34e64f97fe 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinition -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinition ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md index 50426124db7..b87b960b7a0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md index 079fc60524f..9d0900dc77f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequest.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId -Filter "userConsentRequests/any(u:u/status eq 'InProgress')" ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest ``` -### Example 4 +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequest -Filter "userConsentRequests/any (u:u/status eq 'InProgress')" ``` +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md index 5c358acfc2f..c8b8d1b5286 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId -Filter " (status eq 'Completed')" ``` +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md index 5f01ac05db3..1fcf9544f45 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` -### Example 2 +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` -### Example 3 +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement ``` -### Example 4 +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md index fc828daa7a4..fe6826865fb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgIdentityGovernanceTermOfUseAgreementFile.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityGovernanceTermOfUseAgreementFile Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Get-MgIdentityGovernanceTermOfUseAgreementFile -AgreementId $agreementId ``` +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreementFile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md index ccbe2772f0f..76614e3db15 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Get-MgUserAgreementAcceptance.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserAgreementAcceptance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance # A UPN can also be used as -UserId. Get-MgUserAgreementAcceptance -UserId $userId ``` +This example shows how to use the Get-MgUserAgreementAcceptance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md index 95859aaf1bd..00f45c46966 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md index 3e40b8b7812..dce5a920fad 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -BodyParameter $params ``` +This example shows how to use the Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md index 59984e70498..057b5f79783 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAccessPackage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementAccessPackage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -11,3 +11,5 @@ $params = @{ } New-MgEntitlementManagementAccessPackage -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md index 3d845993319..b6b95e1321b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementAssignmentPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -116,7 +116,9 @@ $params = @{ } New-MgEntitlementManagementAssignmentPolicy -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgEntitlementManagementAssignmentPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEntitlementManagementAssignmentPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -153,3 +155,5 @@ $params = @{ } New-MgEntitlementManagementAssignmentPolicy -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementAssignmentPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md index 486847f1bd8..dd3451a81d6 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementAssignmentRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -11,7 +11,9 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -24,7 +26,9 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -35,7 +39,9 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -46,7 +52,9 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -57,3 +65,5 @@ $params = @{ } New-MgEntitlementManagementAssignmentRequest -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md index ceef55f6867..9c1b9228cfe 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementCatalog.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementCatalog Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -9,3 +9,5 @@ $params = @{ } New-MgEntitlementManagementCatalog -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md index aa3920ee24b..6615b36b19b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganization.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -15,3 +15,5 @@ $params = @{ } New-MgEntitlementManagementConnectedOrganization -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index b1b0dfa762f..59042e6ddde 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index a2f711c1b33..d6524b48b42 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` +This example shows how to use the New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md index de225df6c20..23590d2c53c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -61,7 +61,9 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -133,7 +135,9 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -187,7 +191,9 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -227,3 +233,5 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 8312aade5ad..6b8e7b80cd2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -41,3 +41,5 @@ $params = @{ } New-MgIdentityGovernanceAccessReviewHistoryDefinition -BodyParameter $params ``` +This example shows how to use the New-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md index ac411dcc585..b7d0811595d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId -AccessReviewHistoryInstanceId $accessReviewHistoryInstanceId ``` +This example shows how to use the New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md index bc0b060709b..65515ad10fb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/New-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -17,3 +17,5 @@ $params = @{ } New-MgIdentityGovernanceTermOfUseAgreement -BodyParameter $params ``` +This example shows how to use the New-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md index 44387fc9efe..42fb5c27863 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAccessPackage.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementAccessPackage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId ``` +This example shows how to use the Remove-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md index 799537a74b8..2562cccae98 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementAssignmentPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAssignmentPolicy -AccessPackageAssignmentPolicyId $accessPackageAssignmentPolicyId ``` +This example shows how to use the Remove-MgEntitlementManagementAssignmentPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md index caa98a6bee2..ca01cdfc165 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` +This example shows how to use the Remove-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md index 6166a899fda..f615ed0a665 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementCatalog.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementCatalog Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` +This example shows how to use the Remove-MgEntitlementManagementCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md index d53d0ca8cad..feca4fdd7af 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganization.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` +This example shows how to use the Remove-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index 345d572a973..b42d7c7f4d3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 1f9ec17ac9a..33e8ec27a51 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md index b9e89bf914c..6cbaec7fc58 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` +This example shows how to use the Remove-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md index 71fb04bbd67..144a7eca0b4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Remove-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Remove-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` +This example shows how to use the Remove-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 843f9be8da1..3ef62cfef24 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md index 551b513ff21..7ba2e3c82ec 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md index 4ca4ae16a52..b3f91a04dd4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgEntitlementManagementAssignmentRequest.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Stop-MgEntitlementManagementAssignmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgEntitlementManagementAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` +This example shows how to use the Stop-MgEntitlementManagementAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 037410444ed..8609e140da7 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Stop-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` +This example shows how to use the Stop-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index eb67c20650c..61dca690e09 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` +This example shows how to use the Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md index 20f01907116..dde105e5dba 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementAccessPackage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEntitlementManagementAccessPackage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId -BodyParameter $params ``` +This example shows how to use the Update-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md index 882de977eca..acf610fb403 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementCatalog.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEntitlementManagementCatalog Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgEntitlementManagementCatalog -AccessPackageCatalogId $accessPackageCatalogId -BodyParameter $params ``` +This example shows how to use the Update-MgEntitlementManagementCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md index a78e73452c9..3ece92d710d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementConnectedOrganization.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` +This example shows how to use the Update-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md index ff0536acfc8..ad9d0ca1b55 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgEntitlementManagementSetting.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgEntitlementManagementSetting Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgEntitlementManagementSetting -BodyParameter $params ``` +This example shows how to use the Update-MgEntitlementManagementSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md index bd88e9fbae0..418a6ea2988 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -43,3 +43,5 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 210122e2139..c8074176ebd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -22,3 +22,5 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index e61e165091d..b4985a58038 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -7,7 +7,9 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -16,7 +18,9 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -25,3 +29,5 @@ $params = @{ } Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md index 8be48d5cb20..26ef56ffc80 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0/Update-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.Governance $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md index a26f56f1e46..d7e4481bb1a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Confirm-MgRiskyUserCompromised.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Confirm-MgRiskyUserCompromised Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Confirm-MgRiskyUserCompromised -BodyParameter $params ``` +This example shows how to use the Confirm-MgRiskyUserCompromised Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md index ba95c252bde..af06a44cfe9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgDataPolicyOperation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgDataPolicyOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgDataPolicyOperation -DataPolicyOperationId $dataPolicyOperationId ``` +This example shows how to use the Get-MgDataPolicyOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md index 3bf281da3d7..471582843c2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityApiConnector.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` -### Example 2 +This example shows how to use the Get-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityApiConnector ``` +This example shows how to use the Get-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md index cd58bf1e82c..f080a277fb2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlow.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` -### Example 2 +This example shows how to use the Get-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow -ExpandProperty "identityProviders" ``` -### Example 3 +This example shows how to use the Get-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlow ``` +This example shows how to use the Get-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md index d75d630c190..4f2ad8123cc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowIdentityProvider.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlowIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowIdentityProvider -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` +This example shows how to use the Get-MgIdentityB2XUserFlowIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md index 2e2819b37b3..79d1e1e8e9d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguage.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlowLanguage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` -### Example 2 +This example shows how to use the Get-MgIdentityB2XUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2XUserFlowLanguage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` +This example shows how to use the Get-MgIdentityB2XUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md index ad13acff2e2..f64be2d250b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlowLanguageDefaultPageContent Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguageDefaultPageContent -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -OutFile $outFileId ``` +This example shows how to use the Get-MgIdentityB2XUserFlowLanguageDefaultPageContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md index 268b2bc8055..c8e6cdc6b99 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowLanguageOverridePage.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlowLanguageOverridePage Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowLanguageOverridePage -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` +This example shows how to use the Get-MgIdentityB2XUserFlowLanguageOverridePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md index 1a20312e7ef..3b32c80bb11 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` -### Example 2 +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` -### Example 3 +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -ExpandProperty "userAttribute" ``` -### Example 4 +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -ExpandProperty "userAttribute" ``` +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 984ea111d95..1d35fcc444c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md index 8d5693d43f6..01b5b539c20 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityProvider.md @@ -1,40 +1,56 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -### Example 2 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -### Example 3 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderId $identityProviderId ``` -### Example 4 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` -### Example 5 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` -### Example 6 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -OutFile $outFileId ``` -### Example 7 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -### Example 8 +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the Get-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityProvider ``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md index f8aae8f9ce5..559459b4d9a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgIdentityUserFlowAttribute.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgIdentityUserFlowAttribute Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` -### Example 2 +This example shows how to use the Get-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityUserFlowAttribute Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgIdentityUserFlowAttribute ``` +This example shows how to use the Get-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md index 5d9a2186457..3625ef23dfe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionBitlockerRecoveryKey.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId -Property "key" ``` -### Example 2 +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId ``` -### Example 3 +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey -Filter "deviceId eq '1ab40ab2-32a8-4b00-b6b5-ba724e407de9'" ``` -### Example 4 +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionBitlockerRecoveryKey ``` +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md index 991e8feffc8..28ea7eda368 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgInformationProtectionThreatAssessmentRequest.md @@ -1,30 +1,42 @@ -### Example 1 +### Example 1: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` -### Example 2 +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` -### Example 3 +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` -### Example 4 +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId -ExpandProperty "results" ``` -### Example 5 +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest ``` -### Example 6 +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md index 831fe2ac595..6886116e856 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrant.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgOauth2PermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` -### Example 2 +This example shows how to use the Get-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOauth2PermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrant ``` +This example shows how to use the Get-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md index 2c5dda36ad9..51ba17a10be 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOauth2PermissionGrantDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgOauth2PermissionGrantDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOauth2PermissionGrantDelta ``` +This example shows how to use the Get-MgOauth2PermissionGrantDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md index f13eb2c02c8..62dba8d8694 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgOrganizationCertificateBasedAuthConfiguration.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId -CertificateBasedAuthConfigurationId $certificateBasedAuthConfigurationId ``` -### Example 2 +This example shows how to use the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId ``` +This example shows how to use the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md index b9ae26353ef..c81eb394fd0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyActivityBasedTimeoutPolicy ``` -### Example 2 +This example shows how to use the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` +This example shows how to use the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md index 340a78a3b92..ee06d4621b7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAdminConsentRequestPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyAdminConsentRequestPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAdminConsentRequestPolicy ``` +This example shows how to use the Get-MgPolicyAdminConsentRequestPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md index 520e1b9d0bf..a13c86a1e80 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationFlowPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyAuthenticationFlowPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationFlowPolicy ``` +This example shows how to use the Get-MgPolicyAuthenticationFlowPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md index cdd930e611c..75477a41d29 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyAuthenticationMethodPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicy ``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 1a856eb7ed7..6fac0127bc1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -### Example 2 +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -### Example 3 +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -### Example 4 +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md index 15728f650ef..c08a9fbb2da 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyClaimMappingPolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyClaimMappingPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyClaimMappingPolicy ``` -### Example 2 +This example shows how to use the Get-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyClaimMappingPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` +This example shows how to use the Get-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md index bcdd37e3839..1652fc09ccd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyCrossTenantAccessPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicy ``` +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md index 142f1bef1c1..7ae532c239b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyCrossTenantAccessPolicyDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyDefault ``` +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicyDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md index 567cb0a67b6..33ae6aa3f98 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` -### Example 2 +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyCrossTenantAccessPolicyPartner ``` +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md index 45bced25fae..409f7518584 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyFeatureRolloutPolicy.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy ``` -### Example 2 +This example shows how to use the Get-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -ExpandProperty "appliesTo" ``` -### Example 3 +This example shows how to use the Get-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` +This example shows how to use the Get-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md index 272bdaaf1c2..f111110a7fd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyHomeRealmDiscoveryPolicy ``` -### Example 2 +This example shows how to use the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` +This example shows how to use the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 593317ba3ca..d99fd54d041 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy ``` +This example shows how to use the Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md index 0ae5066eecb..4b2846787dc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyPermissionGrantPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` -### Example 2 +This example shows how to use the Get-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyPermissionGrantPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicy ``` +This example shows how to use the Get-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md index dd4ba360124..45595cfb290 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyPermissionGrantPolicyExclude Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` +This example shows how to use the Get-MgPolicyPermissionGrantPolicyExclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md index 73ac0083756..6508b9db5f8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` +This example shows how to use the Get-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md index f5e332889da..d35fb00f8eb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicy.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyRoleManagementPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -ExpandProperty "effectiveRules,rules" ``` -### Example 2 +This example shows how to use the Get-MgPolicyRoleManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyRoleManagementPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` -### Example 3 +This example shows how to use the Get-MgPolicyRoleManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyRoleManagementPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'Directory'" -ExpandProperty "rules" ``` -### Example 4 +This example shows how to use the Get-MgPolicyRoleManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPolicyRoleManagementPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole'" ``` +This example shows how to use the Get-MgPolicyRoleManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md index 9e8faef9250..2c119732c9e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyAssignment.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId -ExpandProperty "policy(`$expand=rules)" ``` -### Example 2 +This example shows how to use the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId ``` -### Example 3 +This example shows how to use the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole' and roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "policy(`$expand=rules)" ``` -### Example 4 +This example shows how to use the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'Directory'" ``` +This example shows how to use the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md index 940e9b857bd..74a8a80cffd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyRoleManagementPolicyRule.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyRoleManagementPolicyRule Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId ``` -### Example 2 +This example shows how to use the Get-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyRoleManagementPolicyRule Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` +This example shows how to use the Get-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md index 25f37e2c39b..db347e52326 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenIssuancePolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyTokenIssuancePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` -### Example 2 +This example shows how to use the Get-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyTokenIssuancePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenIssuancePolicy ``` +This example shows how to use the Get-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md index c639a4d2bc3..b0732911a74 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyTokenLifetimePolicy.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPolicyTokenLifetimePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenLifetimePolicy ``` -### Example 2 +This example shows how to use the Get-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyTokenLifetimePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` +This example shows how to use the Get-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md index b4546dbc301..c02e2543740 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskDetection.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgRiskDetection Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskDetection -RiskDetectionId $riskDetectionId ``` -### Example 2 +This example shows how to use the Get-MgRiskDetection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRiskDetection Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskDetection ``` +This example shows how to use the Get-MgRiskDetection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md index fcabc5916c7..e5e581c00d7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUser.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgRiskyUser Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUser -RiskyUserId $riskyUserId ``` -### Example 2 +This example shows how to use the Get-MgRiskyUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRiskyUser Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUser ``` +This example shows how to use the Get-MgRiskyUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md index cf17cb91b90..5ed6797c62b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgRiskyUserHistory.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgRiskyUserHistory Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` -### Example 2 +This example shows how to use the Get-MgRiskyUserHistory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRiskyUserHistory Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgRiskyUserHistory -RiskyUserId $riskyUserId ``` +This example shows how to use the Get-MgRiskyUserHistory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md index 1f717916c2a..c6ce2c9abbe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationEmailMethod.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationEmailMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` -### Example 2 +This example shows how to use the Get-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationEmailMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationEmailMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md index f805e58aef2..03c43f7beb5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationFido2Method.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationFido2Method Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` +This example shows how to use the Get-MgUserAuthenticationFido2Method Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 8c6683fbc87..decbc7b38a5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md index 6a99e84f01a..be39c89e922 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationOperation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationOperation -UserId $userId -LongRunningOperationId $longRunningOperationId ``` +This example shows how to use the Get-MgUserAuthenticationOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md index 290bab80c77..cefc8bfa00f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPasswordMethod.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationPasswordMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPasswordMethod -UserId $userId -PasswordAuthenticationMethodId $passwordAuthenticationMethodId ``` -### Example 2 +This example shows how to use the Get-MgUserAuthenticationPasswordMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationPasswordMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPasswordMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationPasswordMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md index 638d34c5782..2bc9fa82043 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationPhoneMethod.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationPhoneMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` -### Example 2 +This example shows how to use the Get-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationPhoneMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationPhoneMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md index 449124deb82..bd08915fec1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationSoftwareOathMethod.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` -### Example 2 +This example shows how to use the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md index 2ac213afec5..7ffe8feb4e0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` -### Example 2 +This example shows how to use the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md index 657eaef7804..6ec810677a5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` -### Example 2 +This example shows how to use the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId ``` +This example shows how to use the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md index 68d45fafed4..6360c5ceb24 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgAvailableIdentityProviderType.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Invoke-MgAvailableIdentityProviderType Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType ``` -### Example 2 +This example shows how to use the Invoke-MgAvailableIdentityProviderType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgAvailableIdentityProviderType Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType ``` -### Example 3 +This example shows how to use the Invoke-MgAvailableIdentityProviderType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgAvailableIdentityProviderType Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Invoke-MgAvailableIdentityProviderType -OutFile $outFileId ``` +This example shows how to use the Invoke-MgAvailableIdentityProviderType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md index d780646579c..16bbe303c32 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgDismissRiskyUser.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgDismissRiskyUser Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Invoke-MgDismissRiskyUser -BodyParameter $params ``` +This example shows how to use the Invoke-MgDismissRiskyUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md index 5d9fc04b1c7..80281cb67fb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Invoke-MgUploadIdentityApiConnectorClientCertificate.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgUploadIdentityApiConnectorClientCertificate Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Invoke-MgUploadIdentityApiConnectorClientCertificate -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` +This example shows how to use the Invoke-MgUploadIdentityApiConnectorClientCertificate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md index fe3a33d24ce..5fc7a59036d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityApiConnector.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -12,7 +12,9 @@ $params = @{ } New-MgIdentityApiConnector -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -26,7 +28,9 @@ $params = @{ } New-MgIdentityApiConnector -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -40,3 +44,5 @@ $params = @{ } New-MgIdentityApiConnector -BodyParameter $params ``` +This example shows how to use the New-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md index e46fee3a2e7..512cd6e7c15 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlow.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -16,7 +16,9 @@ $params = @{ } New-MgIdentityB2XUserFlow -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -33,7 +35,9 @@ $params = @{ } New-MgIdentityB2XUserFlow -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -43,3 +47,5 @@ $params = @{ } New-MgIdentityB2XUserFlow -BodyParameter $params ``` +This example shows how to use the New-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md index b85fb78473a..aca99cdf086 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -14,3 +14,5 @@ $params = @{ } New-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -BodyParameter $params ``` +This example shows how to use the New-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md index 570b76aba58..71d8706ad99 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityProvider.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -11,7 +11,9 @@ $params = @{ } New-MgIdentityProvider -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -23,3 +25,5 @@ $params = @{ } New-MgIdentityProvider -BodyParameter $params ``` +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md index ada5e5f86d6..e296bf1fa7f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgIdentityUserFlowAttribute.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgIdentityUserFlowAttribute Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgIdentityUserFlowAttribute -BodyParameter $params ``` +This example shows how to use the New-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md index fd35e3e29f3..5f84e79e607 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgInformationProtectionThreatAssessmentRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,7 +10,9 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -22,7 +24,9 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -34,7 +38,9 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -45,3 +51,5 @@ $params = @{ } New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md index e102ac80673..e1d8039ddaa 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgOauth2PermissionGrant.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgOauth2PermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -9,3 +9,5 @@ $params = @{ } New-MgOauth2PermissionGrant -BodyParameter $params ``` +This example shows how to use the New-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md index 1adb903bbb9..004e0922584 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgPolicyActivityBasedTimeoutPolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md index e73a6f89f8d..02afa593e74 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyClaimMappingPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyClaimMappingPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -9,3 +9,5 @@ $params = @{ } New-MgPolicyClaimMappingPolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md index 83e1bf586e3..08248d42e4e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -28,3 +28,5 @@ $params = @{ } New-MgPolicyCrossTenantAccessPolicyPartner -BodyParameter $params ``` +This example shows how to use the New-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md index d7869675802..373de32eaff 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgPolicyFeatureRolloutPolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md index b6b4ef25769..76772151534 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -BodyParameter $params ``` +This example shows how to use the New-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md index 46020bab5f4..e1b04fb9256 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgPolicyHomeRealmDiscoveryPolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md index c5e2d21d4df..b0251d3e6a8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyPermissionGrantPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgPolicyPermissionGrantPolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md index 7667f1cda6d..7e643156294 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyPermissionGrantPolicyExclude Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` +This example shows how to use the New-MgPolicyPermissionGrantPolicyExclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md index d1ed196cf7c..cbc0451eab1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` +This example shows how to use the New-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md index daffdf53fdc..9d7351e87fd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenIssuancePolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyTokenIssuancePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgPolicyTokenIssuancePolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md index dcde45e6050..00b365ba89a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyTokenLifetimePolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPolicyTokenLifetimePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgPolicyTokenLifetimePolicy -BodyParameter $params ``` +This example shows how to use the New-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md index 6f54d561d6d..71c41f18dc3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationEmailMethod.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserAuthenticationEmailMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgUserAuthenticationEmailMethod -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md index c491094dbb4..a4751566f82 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationPhoneMethod.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserAuthenticationPhoneMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserAuthenticationPhoneMethod -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md index eb7194bf047..7a823021bde 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md index 32e61a1c7c3..2c391416e36 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityApiConnector.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` +This example shows how to use the Remove-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md index dff0a0e40d3..41afb02897f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlow.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityB2XUserFlow Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` +This example shows how to use the Remove-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md index b34f82f10f5..77c6d93aab9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` +This example shows how to use the Remove-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md index 74386102608..e5d0701e143 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityProvider.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` -### Example 2 +This example shows how to use the Remove-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` +This example shows how to use the Remove-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md index 7477c98d1aa..4428c56f617 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgIdentityUserFlowAttribute.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgIdentityUserFlowAttribute Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` +This example shows how to use the Remove-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md index 186878776f0..9b181d80bb5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgOauth2PermissionGrant.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgOauth2PermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` +This example shows how to use the Remove-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md index f98367214d0..52a82621278 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` +This example shows how to use the Remove-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index e0c8c7ba91d..35e83587f02 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -### Example 2 +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -### Example 3 +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` -### Example 4 +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md index 6c6ed0c13a7..bce6459f0ff 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyClaimMappingPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyClaimMappingPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` +This example shows how to use the Remove-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md index 54daa32654a..f1ade290468 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` +This example shows how to use the Remove-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md index 2cda75a58ab..dadb557f6f5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` +This example shows how to use the Remove-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 28edacc5c33..16aac6be8c0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -DirectoryObjectId $directoryObjectId ``` +This example shows how to use the Remove-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md index d7fb3c12087..42c25002d03 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` +This example shows how to use the Remove-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md index 628f87a04a2..14cd36d85ae 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyPermissionGrantPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` +This example shows how to use the Remove-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md index b2ded98e9ce..c34af0da1c8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyPermissionGrantPolicyExclude Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` +This example shows how to use the Remove-MgPolicyPermissionGrantPolicyExclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md index c5b9c98ec9d..e774a409166 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` +This example shows how to use the Remove-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md index 32b7eb1dafc..c2333972a62 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenIssuancePolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyTokenIssuancePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` +This example shows how to use the Remove-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md index 5074e84036b..9a32bcccd62 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyTokenLifetimePolicy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPolicyTokenLifetimePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` +This example shows how to use the Remove-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md index 1c1936772a8..c5a2f4ffb16 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationEmailMethod.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationEmailMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md index 1011b6aaeee..a10bc3e26a0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationFido2Method.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationFido2Method Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationFido2Method Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index ff88d86debe..8ad03994dda 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId -MicrosoftAuthenticatorAuthenticationMethodId $microsoftAuthenticatorAuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md index dc67e4598eb..7ff17c6323a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationPhoneMethod.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationPhoneMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns # A UPN can also be used as -UserId. Remove-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md index 95a7d59cab1..ffcb8a49662 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationSoftwareOathMethod.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationSoftwareOathMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationSoftwareOathMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md index 08b72aed538..f8351df4ef4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md index 01617bc0eaf..c1e25594be3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Remove-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` +This example shows how to use the Remove-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md index 16906c7b561..7347182ffeb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault ``` +This example shows how to use the Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md index f607d2d7369..3fb652b6ee6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowLanguageOverridePageContent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Set-MgIdentityB2XUserFlowLanguageOverridePageContent Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Set-MgIdentityB2XUserFlowLanguageOverridePageContent -B2xIdentityUserFlowId $b2xIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -BodyParameter $params ``` +This example shows how to use the Set-MgIdentityB2XUserFlowLanguageOverridePageContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 39a7a1646e8..2045d8f7c46 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -11,3 +11,5 @@ $params = @{ } Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder -B2xIdentityUserFlowId $b2xIdentityUserFlowId -BodyParameter $params ``` +This example shows how to use the Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md index 15ceea0a39b..f9c4734e6fa 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityApiConnector.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,7 +10,9 @@ $params = @{ } Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -24,7 +26,9 @@ $params = @{ } Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Update-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgIdentityApiConnector Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -36,3 +40,5 @@ $params = @{ } Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md index c2f868837e5..40320aa452d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md index 28f43034fb2..21f171b1dc9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityProvider.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -7,7 +7,9 @@ $params = @{ } Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -15,7 +17,9 @@ $params = @{ } Update-MgIdentityProvider -IdentityProviderId $identityProviderId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgIdentityProvider Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -24,3 +28,5 @@ $params = @{ } Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md index 5acc19aa1ad..a6f4a521f06 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgIdentityUserFlowAttribute.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgIdentityUserFlowAttribute Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId -BodyParameter $params ``` +This example shows how to use the Update-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md index cf0efa32513..7a1f2d7b0e7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgOauth2PermissionGrant.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgOauth2PermissionGrant Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId -BodyParameter $params ``` +This example shows how to use the Update-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md index 2a41758531c..f9f4b84afa4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md index 2f0dbc1d7dc..578c6acbcea 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationFlowPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyAuthenticationFlowPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgPolicyAuthenticationFlowPolicy -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyAuthenticationFlowPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md index 59d31ae9b4c..3e3a4653cf7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyAuthenticationMethodPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -30,3 +30,5 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicy -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index e17b2a2bef8..6538a87062c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -7,7 +7,9 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -17,7 +19,9 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -26,7 +30,9 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` -### Example 4 +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -35,3 +41,5 @@ $params = @{ } Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md index ea5b4efceff..cad82458421 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyClaimMappingPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyClaimMappingPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md index 4cd8ebb4f84..90493d420a5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyCrossTenantAccessPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPolicyCrossTenantAccessPolicy -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyCrossTenantAccessPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md index 630526d0f06..5f42277105e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyCrossTenantAccessPolicyDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -25,3 +25,5 @@ $params = @{ } Update-MgPolicyCrossTenantAccessPolicyDefault -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyCrossTenantAccessPolicyDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md index acede6a3384..2c53523988b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md index 1635df117ba..d3999dd6483 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyFeatureRolloutPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Update-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md index 26e0daa2825..c2f7669d545 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index e8c83bda37c..916fda78477 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md index a1668526158..456ad1ba882 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyPermissionGrantPolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md index 68aadbaa1ad..bfdc4bdf4c5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyRoleManagementPolicyRule.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyRoleManagementPolicyRule Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -21,3 +21,5 @@ $params = @{ } Update-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md index 29887e5a041..991279d9a37 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenIssuancePolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyTokenIssuancePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md index cf99ac4252a..e3c17506ca7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyTokenLifetimePolicy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPolicyTokenLifetimePolicy Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Update-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId -BodyParameter $params ``` +This example shows how to use the Update-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md index 9e3c96fbb2d..1e91b1f02eb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationEmailMethod.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserAuthenticationEmailMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId -BodyParameter $params ``` +This example shows how to use the Update-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md index ef08ab1401c..7375b689937 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgUserAuthenticationPhoneMethod.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserAuthenticationPhoneMethod Cmdlet ```powershell Import-Module Microsoft.Graph.Identity.SignIns $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId -BodyParameter $params ``` +This example shows how to use the Update-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md index 09b2c7db8c1..17be1eb8173 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserInferenceClassificationOverride.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserInferenceClassificationOverride Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserInferenceClassificationOverride -UserId $userId ``` +This example shows how to use the Get-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md index de848b97c64..b2305146281 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolder.md @@ -1,18 +1,24 @@ -### Example 1 +### Example 1: Using the Get-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` -### Example 2 +This example shows how to use the Get-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId ``` -### Example 3 +This example shows how to use the Get-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` +This example shows how to use the Get-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md index 071f125f52f..9ef9c61937a 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderChildFolder.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserMailFolderChildFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId ``` +This example shows how to use the Get-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md index 4386c1a6bc2..f8c1a762842 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessage.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserMailFolderMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId ``` +This example shows how to use the Get-MgUserMailFolderMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md index 2daab704ef0..8ba4ec629ff 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMailFolderMessageRule.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserMailFolderMessageRule Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` -### Example 2 +This example shows how to use the Get-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMailFolderMessageRule Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId ``` +This example shows how to use the Get-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md index b455cd8075f..7b601cc96f2 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessage.md @@ -1,30 +1,40 @@ -### Example 1 +### Example 1: Using the Get-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId ``` -### Example 2 +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "internetMessageHeaders" ``` -### Example 3 +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "subject,body,bodyPreview,uniqueBody" ``` -### Example 4 +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -MessageId $messageId ``` -### Example 5 +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessage -UserId $userId -Property "sender,subject" ``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md index 6d071fe7e45..c1854a1f118 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageAttachment.md @@ -1,42 +1,56 @@ -### Example 1 +### Example 1: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId ``` -### Example 2 +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" ``` -### Example 3 +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId -ExpandProperty "microsoft.graph.itemattachment/item" ``` -### Example 4 +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` -### Example 5 +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` -### Example 6 +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` -### Example 7 +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId ``` +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md index 6836e4f401d..1e5c230c748 100644 --- a/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Get-MgUserMessageExtension.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserMessageExtension Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Get-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId ``` +This example shows how to use the Get-MgUserMessageExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md index 83dbd1bc536..f7f8599f03f 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserInferenceClassificationOverride.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserInferenceClassificationOverride Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -11,3 +11,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserInferenceClassificationOverride -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md index aec85f5293a..c07c53c18a1 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMailFolder -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md index 15f5e9908fd..dc8bdfe7be6 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderChildFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMailFolderChildFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -8,7 +8,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMailFolderChildFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -23,3 +25,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` +This example shows how to use the New-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md index db4b2fc3fc1..286a5444e4e 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMailFolderMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -15,3 +15,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` +This example shows how to use the New-MgUserMailFolderMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md index f325d4339de..9665ec34a31 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMailFolderMessageRule.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMailFolderMessageRule Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -25,3 +25,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` +This example shows how to use the New-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md index 1f69077c702..dff97c550a1 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -19,7 +19,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessage -UserId $userId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -49,3 +51,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessage -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md index 9646a505a5f..f50fc1006ad 100644 --- a/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0/New-MgUserMessageAttachment.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -12,7 +12,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMessageAttachment Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -23,3 +25,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the New-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md index 0a334e715ef..6be2a44bbba 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserInferenceClassificationOverride.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserInferenceClassificationOverride Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId ``` +This example shows how to use the Remove-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md index 589b783a4d4..4d4e4d75664 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolder.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` +This example shows how to use the Remove-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md index 360c5d39f98..5580bf0cae1 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMailFolderMessageRule.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserMailFolderMessageRule Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` +This example shows how to use the Remove-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md index c4751b3bb57..19137c5c0b4 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessage.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Remove-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` -### Example 2 +This example shows how to use the Remove-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` +This example shows how to use the Remove-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md index 0eb829dadc9..0e59fe62b40 100644 --- a/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0/Remove-MgUserMessageExtension.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserMessageExtension Cmdlet ```powershell Import-Module Microsoft.Graph.Mail # A UPN can also be used as -UserId. Remove-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId ``` +This example shows how to use the Remove-MgUserMessageExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md index 96ab1b42c8f..3d86ddb676b 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserInferenceClassificationOverride.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserInferenceClassificationOverride Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId -BodyParameter $params ``` +This example shows how to use the Update-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md index bcbf2f8bfe6..037e7b990a3 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -7,7 +7,9 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -17,3 +19,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` +This example shows how to use the Update-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md index 1fec0c700db..1892488eb31 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMailFolderMessageRule.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserMailFolderMessageRule Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -10,3 +10,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId -BodyParameter $params ``` +This example shows how to use the Update-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md index 10e184c9799..d2199b93c99 100644 --- a/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0/Update-MgUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -7,7 +7,9 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Mail $params = @{ @@ -21,3 +23,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the Update-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md index 99c91bff4b8..cf630807ed8 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebook.md @@ -1,18 +1,24 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteNotebook Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId ``` -### Example 2 +This example shows how to use the Get-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnenoteNotebook Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId ``` -### Example 3 +This example shows how to use the Get-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserOnenoteNotebook Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId ``` +This example shows how to use the Get-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md index dd1d412cb27..5e24f9cb2ac 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSection.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteNotebookSection Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId ``` +This example shows how to use the Get-MgUserOnenoteNotebookSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md index ceff548e6a9..2b4e4da71f2 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteNotebookSectionGroup.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteNotebookSectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId ``` +This example shows how to use the Get-MgUserOnenoteNotebookSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md index b65550c1f0f..d43d2d8d0e2 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteOperation.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteOperation -UserId $userId -OnenoteOperationId $onenoteOperationId ``` +This example shows how to use the Get-MgUserOnenoteOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md index 2b54f582860..83d92648f54 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSection.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteSection Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSection -UserId $userId -OnenoteSectionId $onenoteSectionId ``` -### Example 2 +This example shows how to use the Get-MgUserOnenoteSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnenoteSection Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSection -UserId $userId ``` +This example shows how to use the Get-MgUserOnenoteSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md index 19b8a8c6c67..2aeedfa816e 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroup.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteSectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSectionGroup -UserId $userId ``` +This example shows how to use the Get-MgUserOnenoteSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md index db07955a518..a234de3df29 100644 --- a/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/Get-MgUserOnenoteSectionGroupSection.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteSectionGroupSection Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Get-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId ``` +This example shows how to use the Get-MgUserOnenoteSectionGroupSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md index 6fa7d7c84f6..36192b3b5fd 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebook.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserOnenoteNotebook Cmdlet ```powershell Import-Module Microsoft.Graph.Notes $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnenoteNotebook -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md index 303950047de..838fd4d5258 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSection.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserOnenoteNotebookSection Cmdlet ```powershell Import-Module Microsoft.Graph.Notes $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` +This example shows how to use the New-MgUserOnenoteNotebookSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md index 69733e7ceb7..8fe88b33041 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteNotebookSectionGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserOnenoteNotebookSectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Notes $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` +This example shows how to use the New-MgUserOnenoteNotebookSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md index b106f9b3fe9..d481eb0fae0 100644 --- a/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0/New-MgUserOnenoteSectionGroupSection.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserOnenoteSectionGroupSection Cmdlet ```powershell Import-Module Microsoft.Graph.Notes $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId -BodyParameter $params ``` +This example shows how to use the New-MgUserOnenoteSectionGroupSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md index 38180c8b3fa..8f9927ca2f5 100644 --- a/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md +++ b/src/Notes/Notes/examples/v1.0/Remove-MgUserOnenotePage.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserOnenotePage Cmdlet ```powershell Import-Module Microsoft.Graph.Notes # A UPN can also be used as -UserId. Remove-MgUserOnenotePage -UserId $userId -OnenotePageId $onenotePageId ``` +This example shows how to use the Remove-MgUserOnenotePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0/Get-MgUserPerson.md b/src/People/People/examples/v1.0/Get-MgUserPerson.md index 7de9339cb8c..7482d458910 100644 --- a/src/People/People/examples/v1.0/Get-MgUserPerson.md +++ b/src/People/People/examples/v1.0/Get-MgUserPerson.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserPerson Cmdlet ```powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserPerson -UserId $userId ``` +This example shows how to use the Get-MgUserPerson Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md index 2734f0d0630..2873a6e603a 100644 --- a/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md +++ b/src/People/People/examples/v1.0/Get-MgUserUsedInsight.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserUsedInsight Cmdlet ```powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserUsedInsight -UserId $userId -Sort "LastUsed/LastAccessedDateTime desc" ``` -### Example 2 +This example shows how to use the Get-MgUserUsedInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserUsedInsight Cmdlet ```powershell Import-Module Microsoft.Graph.People # A UPN can also be used as -UserId. Get-MgUserUsedInsight -UserId $userId ``` +This example shows how to use the Get-MgUserUsedInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md index 8bbcb5cf72e..badbf3883ab 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContact.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContact -UserId $userId -ContactId $contactId ``` -### Example 2 +This example shows how to use the Get-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContact -UserId $userId ``` +This example shows how to use the Get-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md index 6b3a0528aa8..ae1d35eb409 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolder.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserContactFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` -### Example 2 +This example shows how to use the Get-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserContactFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolder -UserId $userId ``` +This example shows how to use the Get-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md index 2986883153c..a7c97b92d52 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderChildFolder.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserContactFolderChildFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId ``` +This example shows how to use the Get-MgUserContactFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md index bfa8b0d531d..2ca82b13bc5 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Get-MgUserContactFolderContact.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserContactFolderContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Get-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId ``` +This example shows how to use the Get-MgUserContactFolderContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md index e4b155d2590..76d888d29c9 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContact.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ @@ -17,3 +17,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserContact -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md index 2aa943b1c23..4f7b487fed6 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserContactFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserContactFolder -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md index da7f5bd83f7..9fee34e1685 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderChildFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserContactFolderChildFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` +This example shows how to use the New-MgUserContactFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md index ebfcacef34a..86615c2292f 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/New-MgUserContactFolderContact.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserContactFolderContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ @@ -12,3 +12,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` +This example shows how to use the New-MgUserContactFolderContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md index 3e8b3ca1804..2cfe18df0c1 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContact.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Remove-MgUserContact -UserId $userId -ContactId $contactId ``` +This example shows how to use the Remove-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md index af28c84d221..44f4ebfd984 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Remove-MgUserContactFolder.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserContactFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts # A UPN can also be used as -UserId. Remove-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` +This example shows how to use the Remove-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md index 0b9480b25fb..3c1721011a0 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContact.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserContact Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ @@ -13,3 +13,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserContact -UserId $userId -ContactId $contactId -BodyParameter $params ``` +This example shows how to use the Update-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md index 19e76238c5b..ea993d87800 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0/Update-MgUserContactFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserContactFolder Cmdlet ```powershell Import-Module Microsoft.Graph.PersonalContacts $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` +This example shows how to use the Update-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md index 22dd6e3d15b..25eb954e105 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgGroupPlannerPlan.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgGroupPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgGroupPlannerPlan -GroupId $groupId ``` +This example shows how to use the Get-MgGroupPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md index 713ee09ed31..5e88ba0e8a2 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlanner.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlanner Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlanner ``` +This example shows how to use the Get-MgPlanner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md index 53660263266..527e0665d1a 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucket.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerBucket Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucket ``` -### Example 2 +This example shows how to use the Get-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerBucket Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucket -PlannerBucketId $plannerBucketId ``` +This example shows how to use the Get-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md index 982a483bdaa..7428815cc14 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerBucketTask.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerBucketTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerBucketTask -PlannerBucketId $plannerBucketId ``` +This example shows how to use the Get-MgPlannerBucketTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md index c9b54db0db3..c85fd490932 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlan.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlan -PlannerPlanId $plannerPlanId ``` -### Example 2 +This example shows how to use the Get-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlan ``` +This example shows how to use the Get-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md index 1a3b8da4e1f..8c5cd966d3b 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanBucket.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerPlanBucket Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanBucket -PlannerPlanId $plannerPlanId ``` +This example shows how to use the Get-MgPlannerPlanBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md index fffbbfc3237..3ef38714af1 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanDetail.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerPlanDetail Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId ``` +This example shows how to use the Get-MgPlannerPlanDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md index 3b9f65432bc..6f9debbe198 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerPlanTask.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerPlanTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerPlanTask -PlannerPlanId $plannerPlanId ``` +This example shows how to use the Get-MgPlannerPlanTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md index 0a1a591f7b9..b77b84390d9 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTask.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTask -PlannerTaskId $plannerTaskId ``` -### Example 2 +This example shows how to use the Get-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTask ``` +This example shows how to use the Get-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md index d2ea0ebcf04..9c5f0fea3bc 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId ``` +This example shows how to use the Get-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md index ea7a4414202..33d6a38f832 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerTaskBucketTaskBoardFormat Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId ``` +This example shows how to use the Get-MgPlannerTaskBucketTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md index 36d4e1300d4..3723f3299b1 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskDetail.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerTaskDetail Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId ``` +This example shows how to use the Get-MgPlannerTaskDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md index 73ee527ce92..a8925d1e73b 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgPlannerTaskProgressTaskBoardFormat Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Get-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId ``` +This example shows how to use the Get-MgPlannerTaskProgressTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md index 593d898cf9e..9bdde25910d 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerPlan.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner # A UPN can also be used as -UserId. Get-MgUserPlannerPlan -UserId $userId ``` +This example shows how to use the Get-MgUserPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md index 66e8fdf6400..4a3c8888dca 100644 --- a/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Get-MgUserPlannerTask.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserPlannerTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner # A UPN can also be used as -UserId. Get-MgUserPlannerTask -UserId $userId ``` +This example shows how to use the Get-MgUserPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md index ab2eabd4283..92e6b457ff3 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerBucket.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPlannerBucket Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgPlannerBucket -BodyParameter $params ``` +This example shows how to use the New-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md index 3a20581ad83..d4a02df2e39 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerPlan.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgPlannerPlan -BodyParameter $params ``` +This example shows how to use the New-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md index 881cc621916..3cf42b6362b 100644 --- a/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/New-MgPlannerTask.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgPlannerTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -14,3 +14,5 @@ $params = @{ } New-MgPlannerTask -BodyParameter $params ``` +This example shows how to use the New-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md index cefe18482ae..ef48c848a6f 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerBucket.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPlannerBucket Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerBucket -PlannerBucketId $plannerBucketId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` +This example shows how to use the Remove-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md index 0c78ca23263..68a7b2eea17 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerPlan.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerPlan -PlannerPlanId $plannerPlanId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` +This example shows how to use the Remove-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md index c8c6064fddc..bbeb881e87c 100644 --- a/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Remove-MgPlannerTask.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgPlannerTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner Remove-MgPlannerTask -PlannerTaskId $plannerTaskId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` +This example shows how to use the Remove-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md index 4cdc762db8c..3ed2845eac4 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerBucket.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerBucket Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPlannerBucket -PlannerBucketId $plannerBucketId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md index 5eb99c5578c..f85255752f9 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlan.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerPlan Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPlannerPlan -PlannerPlanId $plannerPlanId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md index 83e46acfe38..7e24eb55fd6 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerPlanDetail.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerPlanDetail Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -13,3 +13,5 @@ $params = @{ } Update-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerPlanDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md index 19d5f5975cd..d6f22d3562a 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTask.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerTask Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -15,3 +15,5 @@ $params = @{ } Update-MgPlannerTask -PlannerTaskId $plannerTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md index 5c40826904a..59425a6026f 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md index dd7237a1ffa..b94eeb1278a 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerTaskBucketTaskBoardFormat Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerTaskBucketTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md index 0b46afa4008..d16d0bc58c5 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskDetail.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerTaskDetail Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -31,3 +31,5 @@ $params = @{ } Update-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerTaskDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md index 6c347812d4a..4a456eeb232 100644 --- a/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0/Update-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgPlannerTaskProgressTaskBoardFormat Cmdlet ```powershell Import-Module Microsoft.Graph.Planner $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgPlannerTaskProgressTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md index 0d8bd19e69b..475994ea767 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogDirectoryAudit.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgAuditLogDirectoryAudit Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogDirectoryAudit -DirectoryAuditId $directoryAuditId ``` -### Example 2 +This example shows how to use the Get-MgAuditLogDirectoryAudit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAuditLogDirectoryAudit Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogDirectoryAudit ``` +This example shows how to use the Get-MgAuditLogDirectoryAudit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md index 520dd00faeb..976e96bb3c1 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogProvisioning.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgAuditLogProvisioning Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogProvisioning ``` -### Example 2 +This example shows how to use the Get-MgAuditLogProvisioning Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAuditLogProvisioning Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogProvisioning ``` +This example shows how to use the Get-MgAuditLogProvisioning Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md index 751b8f46b16..6e6ffdfd8df 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgAuditLogSignIn.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgAuditLogSignIn Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn -SignInId $signInId ``` -### Example 2 +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAuditLogSignIn Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn -Filter "startsWith(appDisplayName,'Graph')" -Top 10 ``` -### Example 3 +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgAuditLogSignIn Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgAuditLogSignIn ``` +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md index c5ba5fa586d..38e18d2a5ee 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByPrinter.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgReportDailyPrintUsageByPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByPrinter -PrintUsageByPrinterId $printUsageByPrinterId ``` -### Example 2 +This example shows how to use the Get-MgReportDailyPrintUsageByPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgReportDailyPrintUsageByPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByPrinter ``` +This example shows how to use the Get-MgReportDailyPrintUsageByPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md index 0ae385cc5f1..0bbe5bd12c8 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportDailyPrintUsageByUser.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgReportDailyPrintUsageByUser Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByUser -PrintUsageByUserId $printUsageByUserId ``` -### Example 2 +This example shows how to use the Get-MgReportDailyPrintUsageByUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgReportDailyPrintUsageByUser Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgReportDailyPrintUsageByUser ``` +This example shows how to use the Get-MgReportDailyPrintUsageByUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md index f19f605f27c..9a5e0224bd5 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByPrinter.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgReportMonthlyPrintUsageByPrinter Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgReportMonthlyPrintUsageByPrinter ``` +This example shows how to use the Get-MgReportMonthlyPrintUsageByPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md index 2e4165d3f4d..bf4e7d533ca 100644 --- a/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md +++ b/src/Reports/Reports/examples/v1.0/Get-MgReportMonthlyPrintUsageByUser.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgReportMonthlyPrintUsageByUser Cmdlet ```powershell Import-Module Microsoft.Graph.Reports Get-MgReportMonthlyPrintUsageByUser ``` +This example shows how to use the Get-MgReportMonthlyPrintUsageByUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md index 60e80f05d4b..463677ebfe3 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Get-MgSchemaExtension.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions Get-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` -### Example 2 +This example shows how to use the Get-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions Get-MgSchemaExtension -Filter "id eq 'graphlearn_test'" ``` +This example shows how to use the Get-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md index 8ee08f44815..369d52f1ca4 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/New-MgSchemaExtension.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ @@ -24,7 +24,9 @@ $params = @{ } New-MgSchemaExtension -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ @@ -50,7 +52,9 @@ $params = @{ } New-MgSchemaExtension -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ @@ -77,3 +81,5 @@ $params = @{ } New-MgSchemaExtension -BodyParameter $params ``` +This example shows how to use the New-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md index 78b5b2dbd2f..5fbf9f8da95 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Remove-MgSchemaExtension.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions Remove-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` +This example shows how to use the Remove-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md index f78257ff2dc..961a8eb0e44 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0/Update-MgSchemaExtension.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ @@ -24,7 +24,9 @@ $params = @{ } Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgSchemaExtension Cmdlet ```powershell Import-Module Microsoft.Graph.SchemaExtensions $params = @{ @@ -50,3 +52,5 @@ $params = @{ } Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` +This example shows how to use the Update-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md index b90e294d292..1ed6e2eb7e7 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnection.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgExternalConnection Cmdlet ```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` -### Example 2 +This example shows how to use the Get-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgExternalConnection Cmdlet ```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnection ``` +This example shows how to use the Get-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md index 625d0f8fa88..f60b7dde06c 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgExternalConnectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` +This example shows how to use the Get-MgExternalConnectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md index ccab4044713..b3620a72024 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgExternalConnectionItem Cmdlet ```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` +This example shows how to use the Get-MgExternalConnectionItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md index 0ea7547c811..8e09194b1fe 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionOperation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgExternalConnectionOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionOperation -ExternalConnectionId $externalConnectionId -ConnectionOperationId $connectionOperationId ``` +This example shows how to use the Get-MgExternalConnectionOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md index e09659af1e8..66d1dc5d0aa 100644 --- a/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md +++ b/src/Search/Search/examples/v1.0/Get-MgExternalConnectionSchema.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgExternalConnectionSchema Cmdlet ```powershell Import-Module Microsoft.Graph.Search Get-MgExternalConnectionSchema -ExternalConnectionId $externalConnectionId ``` +This example shows how to use the Get-MgExternalConnectionSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md index 773972673ed..a0247c4c1d9 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnection.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgExternalConnection Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgExternalConnection -BodyParameter $params ``` +This example shows how to use the New-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md index 3ce20940f54..2128cf13651 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgExternalConnectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` +This example shows how to use the New-MgExternalConnectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md index 34d560a9d10..49bf7f2ae40 100644 --- a/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/New-MgExternalConnectionGroupMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgExternalConnectionGroupMember Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -7,7 +7,9 @@ $params = @{ } New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgExternalConnectionGroupMember Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -16,7 +18,9 @@ $params = @{ } New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgExternalConnectionGroupMember Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -25,3 +29,5 @@ $params = @{ } New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` +This example shows how to use the New-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md index 37f49c496c1..8cba0fa7fa1 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnection.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgExternalConnection Cmdlet ```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` +This example shows how to use the Remove-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md index ae271f9df9c..594a7d0bcee 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgExternalConnectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` +This example shows how to use the Remove-MgExternalConnectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md index f13eb1f9f5c..c7b3afefb9e 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionGroupMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgExternalConnectionGroupMember Cmdlet ```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -IdentityId $identityId ``` +This example shows how to use the Remove-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md index 82927357365..42ba2ec9a58 100644 --- a/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Remove-MgExternalConnectionItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgExternalConnectionItem Cmdlet ```powershell Import-Module Microsoft.Graph.Search Remove-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` +This example shows how to use the Remove-MgExternalConnectionItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md index 3e7058af164..95ba5a033aa 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnection.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgExternalConnection Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgExternalConnection -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` +This example shows how to use the Update-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md index bd8144399e6..a3f8bbc234e 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgExternalConnectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` +This example shows how to use the Update-MgExternalConnectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md index 40c0b3e507b..794b988a6e2 100644 --- a/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0/Update-MgExternalConnectionItem.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgExternalConnectionItem Cmdlet ```powershell Import-Module Microsoft.Graph.Search $params = @{ @@ -12,3 +12,5 @@ $params = @{ } Update-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId -BodyParameter $params ``` +This example shows how to use the Update-MgExternalConnectionItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 80f0412d3a3..1c44fc280a2 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` -### Example 2 +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 2e0e8a94c9d..e3baa654bbe 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` -### Example 2 +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index f3b521541a3..b6e1f76e52c 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index b1594a89319..aa7cfa45bc7 100644 --- a/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/Security/examples/v1.0/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md index 35c20a1cc76..5ffb1c9ec9a 100644 --- a/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Close-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Close-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security Close-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Close-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md index 7979802a2e5..e6e1a8cfc20 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityAlert.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityAlert Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityAlert -AlertId $alertId ``` -### Example 2 +This example shows how to use the Get-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityAlert Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityAlert ``` +This example shows how to use the Get-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md index 5ecd041f14f..3d9541dd0b2 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCase.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCase ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md index 343af34d913..343b7051d3a 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md index c74e95bed6e..9c5674f5b13 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index d501e914189..a9425b42824 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 8cbd3cd8278..69b31909c64 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 70df5202271..11d59b1d65f 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index e6fd6468e29..38e8ed9a58c 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" -OutFile $outFileId ``` -### Example 3 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -ExpandProperty "dataSource" ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md index 5f1d042bb65..c743c44a57a 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId -CaseOperationId $caseOperationId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md index 17345fdce02..7533ab2d84c 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 87edebf3741..6b2dba5fe8e 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md index c768db77f31..bea4e904d74 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index b0e3f5ef54f..96e59da1742 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -OutFile $outFileId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md index a94e0213dd2..80b8003a105 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md index 8ce9f1104e1..3aa80af3e2d 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md index 16b3afebe91..96a866a7172 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md index 09ea2e78c13..0d925d1c95b 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSetting Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md index 248c476e687..c9c0e0f6731 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId ``` -### Example 2 +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md index cb976dd98d6..cb722b4ea79 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScore.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecuritySecureScore Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScore -SecureScoreId $secureScoreId ``` -### Example 2 +This example shows how to use the Get-MgSecuritySecureScore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecuritySecureScore Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScore -Top 1 ``` +This example shows how to use the Get-MgSecuritySecureScore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md index e276a01647d..689af4a4aa7 100644 --- a/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Get-MgSecuritySecureScoreControlProfile.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSecuritySecureScoreControlProfile Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId ``` -### Example 2 +This example shows how to use the Get-MgSecuritySecureScoreControlProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecuritySecureScoreControlProfile Cmdlet ```powershell Import-Module Microsoft.Graph.Security Get-MgSecuritySecureScoreControlProfile ``` +This example shows how to use the Get-MgSecuritySecureScoreControlProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md index ebec0a5f883..ba8abb2fd68 100644 --- a/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Initialize-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell Import-Module Microsoft.Graph.Security Initialize-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Initialize-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md index f6c39fe3082..0507d216070 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy Cmdlet ```powershell Import-Module Microsoft.Graph.Security Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index afdbd2e8a29..13dbba9cdee 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet ```powershell Import-Module Microsoft.Graph.Security Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` +This example shows how to use the Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md index 506b5c3e0aa..2e23f482516 100644 --- a/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Invoke-MgReopenSecurityCaseEdiscoveryCase.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgReopenSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security Invoke-MgReopenSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Invoke-MgReopenSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md index 934645f5060..8d48d254019 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCase.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCase -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md index 472724e53ae..ded74992aeb 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index cdc95e04675..d65cb5ded4d 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 84760272330..f92b550b31a 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -9,7 +9,9 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -18,7 +20,9 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -27,3 +31,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index ea197bd1726..a8e4d85bf21 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md index 9bd5d77b904..3e35fb4657f 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 6f197291dbb..881672dd475 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md index 70869fd2ec3..43a5392a8df 100644 --- a/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/New-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -16,3 +16,5 @@ $params = @{ } New-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md index 25e9b45b067..db8b130356a 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Publish-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell Import-Module Microsoft.Graph.Security Publish-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Publish-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index a1b12b8f6f2..cb8353eab9a 100644 --- a/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell Import-Module Microsoft.Graph.Security Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` +This example shows how to use the Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md index 659f0032058..4f94cc69fb8 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCase.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md index b0fdf8d7a81..ef2a5bd0316 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 0e76320f500..ca20510ea87 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` -### Example 2 +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 77c7e705bd7..1cd6012b1b4 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md index 50cf9a1395b..bc15c9d5bc1 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md index 074fccd6bd9..25b221923d5 100644 --- a/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0/Remove-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseTag Cmdlet ```powershell Import-Module Microsoft.Graph.Security Remove-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md index 1c478ae6e80..1fd692c1732 100644 --- a/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/Security/examples/v1.0/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet ```powershell Import-Module Microsoft.Graph.Security Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId ``` +This example shows how to use the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md index 2109a359300..f96730d858b 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityAlert.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityAlert Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -19,7 +19,9 @@ $params = @{ } Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgSecurityAlert Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -40,3 +42,5 @@ $params = @{ } Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` +This example shows how to use the Update-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md index 2f0ee079c05..8b8e49cf037 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCase.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` +This example shows how to use the Update-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md index 8cd2a2128ba..a0d1c1d1518 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet ```powershell Import-Module Microsoft.Graph.Security Update-MgSecurityCaseEdiscoveryCaseCustodianIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index ceeb93964f4..25f9a7f767b 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet ```powershell Import-Module Microsoft.Graph.Security Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 97797e02385..a145c5f8494 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md index ffed2bb600b..0f357fb2d80 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -BodyParameter $params ``` +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md index 1330208ecdd..6bb7f565180 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseSetting Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -15,3 +15,5 @@ $params = @{ } Update-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md index f28b84b649f..3ee33f799b8 100644 --- a/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0/Update-MgSecuritySecureScoreControlProfile.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSecuritySecureScoreControlProfile Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -14,7 +14,9 @@ $params = @{ } Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Update-MgSecuritySecureScoreControlProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgSecuritySecureScoreControlProfile Cmdlet ```powershell Import-Module Microsoft.Graph.Security $params = @{ @@ -30,3 +32,5 @@ $params = @{ } Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params ``` +This example shows how to use the Update-MgSecuritySecureScoreControlProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md index e6f18471a7f..e97b7e16de3 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopy.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgSiteListContentTypeCopy Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Add-MgSiteListContentTypeCopy -SiteId $siteId -ListId $listId -BodyParameter $params ``` +This example shows how to use the Add-MgSiteListContentTypeCopy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md index 8da14cad5f1..ae45a5e322a 100644 --- a/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md +++ b/src/Sites/Sites/examples/v1.0/Add-MgSiteListContentTypeCopyFromContentTypeHub.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -6,7 +6,9 @@ $params = @{ } Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -14,7 +16,9 @@ $params = @{ } Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -22,3 +26,5 @@ $params = @{ } Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` +This example shows how to use the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md index 9d4b217a7f8..89c2c33ead5 100644 --- a/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md +++ b/src/Sites/Sites/examples/v1.0/Copy-MgSiteContentTypeToDefaultContentLocation.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgSiteContentTypeToDefaultContentLocation Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -12,3 +12,5 @@ $params = @{ } Copy-MgSiteContentTypeToDefaultContentLocation -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` +This example shows how to use the Copy-MgSiteContentTypeToDefaultContentLocation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSite.md index ee8f4d58b71..d06a8565629 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSite.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgSite Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSite -SiteId $siteId ``` -### Example 2 +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSite Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSite -Search "{query}" ``` -### Example 3 +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSite Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSite -Search "{query}" -OutFile $outFileId ``` +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md index a17bd6a1f66..8aa3eaeb358 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteColumn.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteColumn -SiteId $siteId ``` +This example shows how to use the Get-MgSiteColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md index ef9609d2181..b628661025a 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentType.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId ``` -### Example 2 +This example shows how to use the Get-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId -OutFile $outFileId ``` -### Example 3 +This example shows how to use the Get-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` +This example shows how to use the Get-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md index cb4f69a0634..5fac8bfbf93 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteContentTypeColumn.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSiteContentTypeColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` -### Example 2 +This example shows how to use the Get-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteContentTypeColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId ``` +This example shows how to use the Get-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md index 0654804431f..c7215430c65 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDefaultDrive.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteDefaultDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteDefaultDrive -SiteId $siteId ``` +This example shows how to use the Get-MgSiteDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md index e7b543a2fd7..d866195ee41 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteDrive.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteDrive Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteDrive -SiteId $siteId ``` +This example shows how to use the Get-MgSiteDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md index 391edae102f..ce9d9e98c3e 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteList.md @@ -1,30 +1,42 @@ -### Example 1 +### Example 1: Using the Get-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId ``` -### Example 2 +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` -### Example 3 +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` -### Example 4 +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId -Property "id,name,lastModifiedDateTime" -ExpandProperty "columns(select=name,description),items)" ``` -### Example 5 +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` -### Example 6 +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteList -SiteId $siteId -ListId $listId ``` +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md index d1a888522d4..21ad68064b3 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListColumn.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteListColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListColumn -SiteId $siteId -ListId $listId ``` +This example shows how to use the Get-MgSiteListColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md index 049e2dbb4e5..707302fc487 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentType.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteListContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListContentType -SiteId $siteId -ListId $listId ``` +This example shows how to use the Get-MgSiteListContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md index 6b87d0a1f4e..e7bbf581224 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListContentTypeCompatibleHubContentType.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteListContentTypeCompatibleHubContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListContentTypeCompatibleHubContentType -SiteId $siteId -ListId $listId ``` +This example shows how to use the Get-MgSiteListContentTypeCompatibleHubContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md index d6ad319efdf..e5814197197 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteListItem Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId -ExpandProperty "fields" ``` +This example shows how to use the Get-MgSiteListItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md index bd81be791d5..c0a41576121 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemDocumentSetVersion.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSiteListItemDocumentSetVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` -### Example 2 +This example shows how to use the Get-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteListItemDocumentSetVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` +This example shows how to use the Get-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md index 322047f245e..3f5c7aaedd1 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteListItemVersion.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSiteListItemVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` -### Example 2 +This example shows how to use the Get-MgSiteListItemVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteListItemVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId -ExpandProperty "fields" ``` +This example shows how to use the Get-MgSiteListItemVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md index c9b5794b762..a81d9eb2f3a 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSitePermission.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgSitePermission Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` -### Example 2 +This example shows how to use the Get-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSitePermission Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSitePermission -SiteId $siteId ``` +This example shows how to use the Get-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md index 3ca2cad6442..5dc284c5bab 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStore.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStore Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStore -SiteId $siteId -OutFile $outFileId ``` +This example shows how to use the Get-MgSiteTermStore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md index f6caea29dff..a3eedaf9fdf 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroup.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStoreGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -OutFile $outFileId ``` -### Example 2 +This example shows how to use the Get-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteTermStoreGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` -### Example 3 +This example shows how to use the Get-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSiteTermStoreGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId -Property "*,parentSiteId" ``` +This example shows how to use the Get-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md index 3c6184a2210..2f1a43dee16 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSet.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStoreGroupSet Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroupSet -SiteId $siteId -GroupId $groupId ``` +This example shows how to use the Get-MgSiteTermStoreGroupSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md index 01d37687d2d..9a610109fce 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreGroupSetTerm.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStoreGroupSetTerm Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreGroupSetTerm -SiteId $siteId -GroupId $groupId -SetId $setId -TermId $termId ``` +This example shows how to use the Get-MgSiteTermStoreGroupSetTerm Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md index d0de88d1c83..27e4b693762 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSet.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStoreSet Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` +This example shows how to use the Get-MgSiteTermStoreSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md index a9b143956de..c40c71470a9 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetChild.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStoreSetChild Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId ``` +This example shows how to use the Get-MgSiteTermStoreSetChild Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md index 5455fc896f1..9ec6d9d35ef 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSiteTermStoreSetRelation.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSiteTermStoreSetRelation Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSiteTermStoreSetRelation -SiteId $siteId -SetId $setId ``` +This example shows how to use the Get-MgSiteTermStoreSetRelation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md index 0dd3e4f140e..63b4711da7c 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgSubSite.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgSubSite Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Get-MgSubSite -SiteId $siteId ``` +This example shows how to use the Get-MgSubSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md index ed0288099cf..e389c2ac152 100644 --- a/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md +++ b/src/Sites/Sites/examples/v1.0/Get-MgUserFollowedSite.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserFollowedSite Cmdlet ```powershell Import-Module Microsoft.Graph.Sites # A UPN can also be used as -UserId. Get-MgUserFollowedSite -UserId $userId ``` +This example shows how to use the Get-MgUserFollowedSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md index 9970a30e971..1f88c9eae4d 100644 --- a/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md +++ b/src/Sites/Sites/examples/v1.0/Join-MgSiteContentTypeWithHubSite.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Join-MgSiteContentTypeWithHubSite Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Join-MgSiteContentTypeWithHubSite -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` +This example shows how to use the Join-MgSiteContentTypeWithHubSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md index 33ca4a7d6db..e89d734a213 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteColumn.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -16,3 +16,5 @@ $params = @{ } New-MgSiteColumn -SiteId $siteId -BodyParameter $params ``` +This example shows how to use the New-MgSiteColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md index 852f77ebed5..27f532b11fa 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentType.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -12,3 +12,5 @@ $params = @{ } New-MgSiteContentType -SiteId $siteId -BodyParameter $params ``` +This example shows how to use the New-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md index b98e1c3ed44..ce1951bff30 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteContentTypeColumn.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteContentTypeColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` +This example shows how to use the New-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md index 3c5eb8e8994..66083c9b800 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteList.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteList Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -21,3 +21,5 @@ $params = @{ } New-MgSiteList -SiteId $siteId -BodyParameter $params ``` +This example shows how to use the New-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md index 51ac572cbcc..499765fcb5e 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListColumn.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteListColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -16,3 +16,5 @@ $params = @{ } New-MgSiteListColumn -SiteId $siteId -ListId $listId -BodyParameter $params ``` +This example shows how to use the New-MgSiteListColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md index a71c08b328e..2b5c2b22fcf 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItem.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteListItem Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -10,3 +10,5 @@ $params = @{ } New-MgSiteListItem -SiteId $siteId -ListId $listId -BodyParameter $params ``` +This example shows how to use the New-MgSiteListItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md index f4aae23160b..a94e05f8e23 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteListItemDocumentSetVersion.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteListItemDocumentSetVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` +This example shows how to use the New-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md index b0b38cfe544..363e7ee368f 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSitePermission.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSitePermission Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -16,3 +16,5 @@ $params = @{ } New-MgSitePermission -SiteId $siteId -BodyParameter $params ``` +This example shows how to use the New-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md index 8764bb73f19..09006f89d26 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteTermStoreGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgSiteTermStoreGroup -SiteId $siteId -BodyParameter $params ``` +This example shows how to use the New-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md index b75aaaf9706..36a8e7d271c 100644 --- a/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md +++ b/src/Sites/Sites/examples/v1.0/New-MgSiteTermStoreSetChild.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgSiteTermStoreSetChild Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -12,3 +12,5 @@ $params = @{ } New-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId -BodyParameter $params ``` +This example shows how to use the New-MgSiteTermStoreSetChild Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md index fb99d209f40..a49d972730c 100644 --- a/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Publish-MgSiteContentType.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Publish-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Publish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` +This example shows how to use the Publish-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md index 58dae877f0f..bbbb9224a1f 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentType.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` +This example shows how to use the Remove-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md index 90575599bdc..2bb8fe25e24 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteContentTypeColumn.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteContentTypeColumn Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` +This example shows how to use the Remove-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md index a48246db81b..7abc69f7410 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItem.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteListItem Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` +This example shows how to use the Remove-MgSiteListItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md index e828298f042..699d5742c71 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteListItemDocumentSetVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` +This example shows how to use the Remove-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md index 8237c853d2e..87f483f71df 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSitePermission.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSitePermission Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` +This example shows how to use the Remove-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md index cdeb5b84cc3..b8b7c3405cf 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteTermStoreGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` +This example shows how to use the Remove-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md index 834560cfc11..6c0382684fe 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSet.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteTermStoreSet Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` +This example shows how to use the Remove-MgSiteTermStoreSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md index d2758014626..bed5734bc55 100644 --- a/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Remove-MgSiteTermStoreSetTerm.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgSiteTermStoreSetTerm Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Remove-MgSiteTermStoreSetTerm -SiteId $siteId -SetId $setId -TermId $termId ``` +This example shows how to use the Remove-MgSiteTermStoreSetTerm Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md index a9567d5a88c..5b3f69954de 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemDocumentSetVersion.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Restore-MgSiteListItemDocumentSetVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Restore-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` +This example shows how to use the Restore-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md index d25d115e09c..891779c0c8f 100644 --- a/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md +++ b/src/Sites/Sites/examples/v1.0/Restore-MgSiteListItemVersion.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Restore-MgSiteListItemVersion Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Restore-MgSiteListItemVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -ListItemVersionId $listItemVersionId ``` +This example shows how to use the Restore-MgSiteListItemVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md index 02fb6eb74be..b3c39701bfd 100644 --- a/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md +++ b/src/Sites/Sites/examples/v1.0/Test-MgSiteContentTypePublished.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Test-MgSiteContentTypePublished Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Test-MgSiteContentTypePublished -SiteId $siteId -ContentTypeId $contentTypeId ``` +This example shows how to use the Test-MgSiteContentTypePublished Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md index 83823f2624b..aef59ec8ca2 100644 --- a/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Unpublish-MgSiteContentType.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Unpublish-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites Unpublish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` +This example shows how to use the Unpublish-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md index f14246f1e6b..3b10d9efe98 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteContentType.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSiteContentType Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -45,3 +45,5 @@ $params = @{ } Update-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` +This example shows how to use the Update-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md index 08b53978506..04f565c666f 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteListItemField.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSiteListItemField Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -7,3 +7,5 @@ $params = @{ } Update-MgSiteListItemField -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` +This example shows how to use the Update-MgSiteListItemField Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md index 38a6a74faaf..9990ad6d08e 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSitePermission.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSitePermission Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Update-MgSitePermission -SiteId $siteId -PermissionId $permissionId -BodyParameter $params ``` +This example shows how to use the Update-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md index 2534822bad4..fd55c698022 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStore.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSiteTermStore Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgSiteTermStore -SiteId $siteId -BodyParameter $params ``` +This example shows how to use the Update-MgSiteTermStore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md index 7c55fc957d6..486653b947a 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSet.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSiteTermStoreSet Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgSiteTermStoreSet -SiteId $siteId -SetId $setId -BodyParameter $params ``` +This example shows how to use the Update-MgSiteTermStoreSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md index a24bf1a070c..09d8a5fb541 100644 --- a/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md +++ b/src/Sites/Sites/examples/v1.0/Update-MgSiteTermStoreSetTerm.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgSiteTermStoreSetTerm Cmdlet ```powershell Import-Module Microsoft.Graph.Sites $params = @{ @@ -12,3 +12,5 @@ $params = @{ } Update-MgSiteTermStoreSetTerm -SiteId $siteId -SetId $setId -TermId $termId -BodyParameter $params ``` +This example shows how to use the Update-MgSiteTermStoreSetTerm Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md index c894bbb7dfc..6f859aea166 100644 --- a/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Add-MgTeamMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Add-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -20,7 +20,9 @@ $params = @{ } Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Add-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -42,7 +44,9 @@ $params = @{ } Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Add-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Add-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -64,3 +68,5 @@ $params = @{ } Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the Add-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md index 14d597f233e..9c4dafda6ab 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamChannelMigration.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Complete-MgTeamChannelMigration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Complete-MgTeamChannelMigration -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Complete-MgTeamChannelMigration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md index 3d4dfa65392..795dcfe6125 100644 --- a/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md +++ b/src/Teams/Teams/examples/v1.0/Complete-MgTeamMigration.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Complete-MgTeamMigration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Complete-MgTeamMigration -TeamId $teamId ``` +This example shows how to use the Complete-MgTeamMigration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md index e82ffd5ce73..968077d9544 100644 --- a/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Copy-MgTeam.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -10,3 +10,5 @@ $params = @{ } Copy-MgTeam -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the Copy-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md index 636e96fb1ee..f561d263263 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamApp.md @@ -1,25 +1,35 @@ -### Example 1 +### Example 1: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -### Example 2 +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5'" ``` -### Example 3 +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -ExpandProperty "appDefinitions(`$expand=bot)" -Filter "appDefinitions/any(a:a/bot ne null)" ``` -### Example 4 +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "id eq '876df28f-2e78-423b-94a5-44181bd0e225'" -ExpandProperty "appDefinitions" ``` -### Example 5 +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamApp -Filter "distributionMethod eq 'organization'" ``` +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md index 8204be87855..b824ccbf164 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgAppCatalogTeamAppDefinitionBot.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgAppCatalogTeamAppDefinitionBot Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgAppCatalogTeamAppDefinitionBot -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionBot Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChat.md b/src/Teams/Teams/examples/v1.0/Get-MgChat.md index 224f490b31b..7aba3b16c0c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChat.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId -ExpandProperty "members" ``` -### Example 2 +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId ``` -### Example 3 +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -ChatId $chatId ``` -### Example 4 +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChat -Sort "lastMessagePreview/createdDateTime desc" ``` +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md index 9d3acb0468c..494295a7604 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatInstalledApp.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` -### Example 2 +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -### Example 3 +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsAppDefinition(`$expand=bot)" ``` -### Example 4 +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatInstalledApp -ChatId $chatId ``` +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md index 596d37ffca6..d1744db6365 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMember.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` -### Example 2 +This example shows how to use the Get-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMember -ChatId $chatId ``` +This example shows how to use the Get-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md index 2235cf0358f..abe16ce95cd 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessage.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgChatMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessage -ChatId $chatId -Top 2 ``` -### Example 2 +This example shows how to use the Get-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessage -ChatId $chatId -ChatMessageId $chatMessageId ``` +This example shows how to use the Get-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md index ad4da7dfae5..7758bbb64e0 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatMessageHostedContent.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgChatMessageHostedContent Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId -ChatMessageHostedContentId $chatMessageHostedContentId ``` -### Example 2 +This example shows how to use the Get-MgChatMessageHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatMessageHostedContent Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId ``` +This example shows how to use the Get-MgChatMessageHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md index 6b703caf613..7f0e9194507 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgChatTab.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgChatTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -ExpandProperty "teamsApp" ``` -### Example 2 +This example shows how to use the Get-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.web'" ``` -### Example 3 +This example shows how to use the Get-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChatTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" ``` +This example shows how to use the Get-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md index 6a46c254303..c5775d5c57f 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeam.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeam -TeamId $teamId ``` +This example shows how to use the Get-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md index 515d3a90af6..d14da61da70 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannel.md @@ -1,25 +1,35 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` -### Example 2 +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId ``` -### Example 3 +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'shared'" ``` -### Example 4 +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId ``` -### Example 5 +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'private'" ``` +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md index ebf2742c62c..3a0a9e0f4e1 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelFileFolder.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelFileFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelFileFolder -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Get-MgTeamChannelFileFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md index 72a3f7895f4..5cace31bf2d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMember.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` -### Example 2 +This example shows how to use the Get-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Get-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md index 45a0cf19b49..87b3587b2d6 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessage.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -Filter "lastModifiedDateTime gt 2019-11-01T00:00:00Z and lastModifiedDateTime lt 2021-11-01T00:00:00Z" ``` -### Example 2 +This example shows how to use the Get-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` -### Example 3 +This example shows how to use the Get-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -Top 3 ``` +This example shows how to use the Get-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md index 1c09ea30037..e9e6185b450 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageHostedContent.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelMessageHostedContent Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` +This example shows how to use the Get-MgTeamChannelMessageHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md index 1a321041f1c..bacc45a32ae 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReply.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelMessageReply Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` +This example shows how to use the Get-MgTeamChannelMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md index 4216f0efa5a..f876d7a2d53 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelMessageReplyHostedContent.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelMessageReplyHostedContent Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelMessageReplyHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -ChatMessageId1 $chatMessageId1 ``` +This example shows how to use the Get-MgTeamChannelMessageReplyHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md index 16ff399c184..5d2198e61df 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeam.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelSharedWithTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` -### Example 2 +This example shows how to use the Get-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelSharedWithTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Get-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md index 86cea2237ad..0926580fe35 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelSharedWithTeamAllowedMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelSharedWithTeamAllowedMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelSharedWithTeamAllowedMember -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` +This example shows how to use the Get-MgTeamChannelSharedWithTeamAllowedMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md index 86dd415be27..d004d32e819 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamChannelTab.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamChannelTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" ``` -### Example 2 +This example shows how to use the Get-MgTeamChannelTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.planner'" ``` +This example shows how to use the Get-MgTeamChannelTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md index e937bd7a8c0..89fe35c9364 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamIncomingChannel.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamIncomingChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamIncomingChannel -TeamId $teamId ``` +This example shows how to use the Get-MgTeamIncomingChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md index 60a66535301..2b8be82e065 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamInstalledApp.md @@ -1,25 +1,35 @@ -### Example 1 +### Example 1: Using the Get-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId -ExpandProperty "teamsAppDefinition" ``` -### Example 2 +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` -### Example 3 +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -### Example 4 +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId ``` -### Example 5 +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsAppDefinition" ``` +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md index 3e4f36fe5a3..ba822ca71cd 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamMember.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/userId eq '73761f06-2ac9-469c-9f10-279a8cc267f9')" ``` -### Example 2 +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/displayName eq 'Harry Johnson' or microsoft.graph.aadUserConversationMember/email eq 'admin@M365x987948.OnMicrosoft.com')" ``` -### Example 3 +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId ``` -### Example 4 +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md index 94f10c1f613..64ad86680d5 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamPrimaryChannel.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamPrimaryChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamPrimaryChannel -TeamId $teamId ``` +This example shows how to use the Get-MgTeamPrimaryChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md index e39cb38c0cf..5233393eb90 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamSchedule.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgTeamSchedule Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamSchedule -TeamId $teamId ``` +This example shows how to use the Get-MgTeamSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md index 826e3264d5b..4201e583e31 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOfferShiftRequest.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleOfferShiftRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId -OfferShiftRequestId $offerShiftRequestId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleOfferShiftRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleOfferShiftRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId ``` +This example shows how to use the Get-MgTeamScheduleOfferShiftRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md index 2ecda0c9907..c171548a5af 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShift.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleOpenShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleOpenShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShift -TeamId $teamId ``` +This example shows how to use the Get-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md index 18e2c3ec7cc..5f9c485ee64 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -OpenShiftChangeRequestId $openShiftChangeRequestId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId ``` +This example shows how to use the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md index bf938150534..9aa3e33a34d 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSchedulingGroup.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleSchedulingGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleSchedulingGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSchedulingGroup -TeamId $teamId ``` +This example shows how to use the Get-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md index 6720124ebe6..5856cd5487a 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleShift.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleShift -TeamId $teamId -Filter "sharedShift/startDateTime ge 2019-03-11T00:00:00.000Z and sharedShift/endDateTime le 2019-03-18T00:00:00.000Z and draftShift/startDateTime ge 2019-03-11T00:00:00.000Z and draftShift/endDateTime le 2019-03-18T00:00:00.000Z" ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` +This example shows how to use the Get-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md index e7524240e7d..426030f97e3 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -SwapShiftsChangeRequestId $swapShiftsChangeRequestId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId ``` +This example shows how to use the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md index d16792722ba..c68ca73e003 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOff.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleTimeOff Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOff -TeamId $teamId -Filter "sharedTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and sharedTimeOff/endDateTime le 2019-03-18T00:00:00.000Z and draftTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and draftTimeOff/endDateTime le 2019-03-18T00:00:00.000Z" ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeOff Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` +This example shows how to use the Get-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md index 926fff8446b..0d3610ebf81 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffReason.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleTimeOffReason Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffReason -TeamId $teamId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeOffReason Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` +This example shows how to use the Get-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md index c14a7b7d261..64509cad0c8 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamScheduleTimeOffRequest.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamScheduleTimeOffRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` -### Example 2 +This example shows how to use the Get-MgTeamScheduleTimeOffRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeOffRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamScheduleTimeOffRequest -TeamId $teamId ``` +This example shows how to use the Get-MgTeamScheduleTimeOffRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md index fd602c8b0d7..c68b8ea2fb2 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgTeamworkWorkforceIntegration.md @@ -1,10 +1,14 @@ -### Example 1 +### Example 1: Using the Get-MgTeamworkWorkforceIntegration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` -### Example 2 +This example shows how to use the Get-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamworkWorkforceIntegration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgTeamworkWorkforceIntegration ``` +This example shows how to use the Get-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md index e74a7ea5b21..b9ae90daa5c 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChat.md @@ -1,15 +1,21 @@ -### Example 1 +### Example 1: Using the Get-MgUserChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId -ChatId $chatId ``` -### Example 2 +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId -ExpandProperty "members" ``` -### Example 3 +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserChat -UserId $userId ``` +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md index d30629ea6e1..17c02b1a7bc 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserChatMember.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserChatMember -UserId $userId -ChatId $chatId ``` +This example shows how to use the Get-MgUserChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md index bba9a39e5e3..9abe90500f2 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserJoinedTeam.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserJoinedTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserJoinedTeam -UserId $userId ``` +This example shows how to use the Get-MgUserJoinedTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md index 789388e4865..7e79ecbc9df 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkAssociatedTeam.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserTeamworkAssociatedTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams # A UPN can also be used as -UserId. Get-MgUserTeamworkAssociatedTeam -UserId $userId ``` +This example shows how to use the Get-MgUserTeamworkAssociatedTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md index f4dbef07d90..622f8cedbc9 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledApp.md @@ -1,20 +1,28 @@ -### Example 1 +### Example 1: Using the Get-MgUserTeamworkInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` -### Example 2 +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTeamworkInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId ``` -### Example 3 +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserTeamworkInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` -### Example 4 +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserTeamworkInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsAppDefinition" ``` +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md index e99adebaa13..8a1104237c5 100644 --- a/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md +++ b/src/Teams/Teams/examples/v1.0/Get-MgUserTeamworkInstalledAppChat.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserTeamworkInstalledAppChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Get-MgUserTeamworkInstalledAppChat -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` +This example shows how to use the Get-MgUserTeamworkInstalledAppChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md index 2f56f2c71d5..ab6c0a80cc9 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgArchiveTeam.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgArchiveTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Invoke-MgArchiveTeam -TeamId $teamId ``` +This example shows how to use the Invoke-MgArchiveTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md index 8ca39474385..c0df618453e 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgShareTeamSchedule.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgShareTeamSchedule Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -8,3 +8,5 @@ $params = @{ } Invoke-MgShareTeamSchedule -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the Invoke-MgShareTeamSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md index 12e8a20d0ce..f914c8b2ff3 100644 --- a/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0/Invoke-MgUnarchiveTeam.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgUnarchiveTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Invoke-MgUnarchiveTeam -TeamId $teamId ``` +This example shows how to use the Invoke-MgUnarchiveTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md index 775441c7106..ef5f8789a92 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgAppCatalogTeamApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the New-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams New-MgAppCatalogTeamApp -Requiresreview true ``` +This example shows how to use the New-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgChat.md b/src/Teams/Teams/examples/v1.0/New-MgChat.md index 3758d8401f8..37c4169c6c9 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChat.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -30,7 +30,9 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -62,7 +64,9 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -94,7 +98,9 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -119,7 +125,9 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -143,7 +151,9 @@ $params = @{ } New-MgChat -BodyParameter $params ``` -### Example 6 +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -167,3 +177,5 @@ $params = @{ } New-MgChat -BodyParameter $params ``` +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md index b9afd8cd676..b6dd816d25f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatInstalledApp.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgChatInstalledApp -ChatId $chatId -BodyParameter $params ``` +This example shows how to use the New-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md index 49f70fe8c28..8c6924e5762 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -11,7 +11,9 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -24,7 +26,9 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -36,7 +40,9 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -49,3 +55,5 @@ $params = @{ } New-MgChatMember -ChatId $chatId -BodyParameter $params ``` +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md index e0119df695a..b63d3653478 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgChatMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -20,7 +20,9 @@ $params = @{ } New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgChatMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -30,3 +32,5 @@ $params = @{ } New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` +This example shows how to use the New-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md index 4302937d1ad..d3b2d1e153f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/New-MgChatTab.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgChatTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -13,3 +13,5 @@ $params = @{ } New-MgChatTab -ChatId $chatId -BodyParameter $params ``` +This example shows how to use the New-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeam.md b/src/Teams/Teams/examples/v1.0/New-MgTeam.md index 74c57519553..b761ac785bf 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeam.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -32,7 +32,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -42,7 +44,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -77,7 +81,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -86,7 +92,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -167,7 +175,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 6 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -186,7 +196,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 7 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -196,7 +208,9 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` -### Example 8 +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the New-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -215,3 +229,5 @@ $params = @{ } New-MgTeam -BodyParameter $params ``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md index a9292b65eb3..bc0b86b38a8 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannel.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -9,7 +9,9 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -19,7 +21,9 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -39,7 +43,9 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -59,7 +65,9 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -78,3 +86,5 @@ $params = @{ } New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md index 3a42d6432bb..9891e05aa78 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelEmail.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the New-MgTeamChannelEmail Cmdlet ```powershell Import-Module Microsoft.Graph.Teams New-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the New-MgTeamChannelEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md index 8ac9576561c..b54f2b0b4b6 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -10,12 +10,16 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` -### Example 3 +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -27,7 +31,9 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -38,7 +44,9 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -49,7 +57,9 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 6 +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -60,7 +70,9 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 7 +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -72,3 +84,5 @@ $params = @{ } New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md index a801dd9a72d..706fd97793a 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -8,7 +8,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -18,7 +20,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 3 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -42,7 +46,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 4 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -77,7 +83,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 5 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -96,7 +104,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 6 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -209,7 +219,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 7 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -233,7 +245,9 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` -### Example 8 +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the New-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -259,3 +273,5 @@ $params = @{ } New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md index 95e1e61404c..148720384ee 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamChannelMessageReply.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamChannelMessageReply Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -9,7 +9,9 @@ $params = @{ } New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgTeamChannelMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannelMessageReply Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -20,3 +22,5 @@ $params = @{ } New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` +This example shows how to use the New-MgTeamChannelMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md index 1112956070a..2f1e30fcb97 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamInstalledApp.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgTeamInstalledApp -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md index d7cca129aa2..9c9e8d3623e 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -10,7 +10,9 @@ $params = @{ } New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -22,3 +24,5 @@ $params = @{ } New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md index daebca6206e..5b52d6fde3c 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOfferShiftRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleOfferShiftRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgTeamScheduleOfferShiftRequest -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleOfferShiftRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md index d3abb18d6c2..5e48c4e3cca 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShift.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleOpenShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -36,3 +36,5 @@ $params = @{ } New-MgTeamScheduleOpenShift -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md index 25b091b9656..e49ac34efd1 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleOpenShiftChangeRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -7,3 +7,5 @@ $params = @{ } New-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleOpenShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md index 24aa2b9eb51..c2fef1a223f 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSchedulingGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleSchedulingGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -11,3 +11,5 @@ $params = @{ } New-MgTeamScheduleSchedulingGroup -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md index 78419774054..00ae35bfce1 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleShift.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -40,3 +40,5 @@ $params = @{ } New-MgTeamScheduleShift -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md index 1fcfcf9953c..6871b318d41 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleSwapShiftChangeRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -9,3 +9,5 @@ $params = @{ } New-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleSwapShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md index 4daff183729..09f871a00b9 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOff.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleTimeOff Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -18,3 +18,5 @@ $params = @{ } New-MgTeamScheduleTimeOff -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md index 50fb9cc697f..3452d478074 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamScheduleTimeOffReason.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamScheduleTimeOffReason Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -8,3 +8,5 @@ $params = @{ } New-MgTeamScheduleTimeOffReason -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the New-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md index c2c2d99d700..81bf71d74ab 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/New-MgTeamworkWorkforceIntegration.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgTeamworkWorkforceIntegration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -14,3 +14,5 @@ $params = @{ } New-MgTeamworkWorkforceIntegration -BodyParameter $params ``` +This example shows how to use the New-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md index 764ee28d72f..d628d59ee6e 100644 --- a/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/New-MgUserTeamworkInstalledApp.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserTeamworkInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -6,3 +6,5 @@ $params = @{ } New-MgUserTeamworkInstalledApp -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md index 1b57568a44c..772453c5e48 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgAppCatalogTeamApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgAppCatalogTeamApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgAppCatalogTeamApp -TeamsAppId $teamsAppId ``` +This example shows how to use the Remove-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md index 3ffe37f14f9..c9b09294f71 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatInstalledApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` +This example shows how to use the Remove-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md index 5ce5e49ce6f..f488c163441 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgChatMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` +This example shows how to use the Remove-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md index b8596e7a4bf..fd001facd28 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgChatTab.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgChatTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId ``` +This example shows how to use the Remove-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md index 85a25440d8e..8a8ef994ba2 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannel.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Remove-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md index 0b66f0f1ed3..bcee4a41896 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelEmail.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamChannelEmail Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Remove-MgTeamChannelEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md index 47b38825993..85c27485640 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` +This example shows how to use the Remove-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md index 766c5ff904a..f02708aff2b 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamChannelSharedWithTeam.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamChannelSharedWithTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` +This example shows how to use the Remove-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md index 9e010218361..adc66855ad1 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamInstalledApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` +This example shows how to use the Remove-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md index 5ec52db5e36..6b8152c9664 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamMember.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` +This example shows how to use the Remove-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md index 820d7c648ca..589613a7e42 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleOpenShift.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamScheduleOpenShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` +This example shows how to use the Remove-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md index b44031dba05..8d6489822f4 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleSchedulingGroup.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamScheduleSchedulingGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` +This example shows how to use the Remove-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md index 103003f2342..ae7c5ad23a8 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleShift.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamScheduleShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` +This example shows how to use the Remove-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md index 3e2a17bae8b..f239484debf 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOff.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamScheduleTimeOff Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` +This example shows how to use the Remove-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md index 72d430ab2d4..ccb9258089d 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffReason.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamScheduleTimeOffReason Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` +This example shows how to use the Remove-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md index 41523a79610..dc587b1ac9a 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamScheduleTimeOffRequest.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamScheduleTimeOffRequest Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` +This example shows how to use the Remove-MgTeamScheduleTimeOffRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md index 0406f22f521..f857bac3fb1 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgTeamworkWorkforceIntegration.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgTeamworkWorkforceIntegration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` +This example shows how to use the Remove-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md index dfd4b71f74a..b6fe582e58c 100644 --- a/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Remove-MgUserTeamworkInstalledApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Remove-MgUserTeamworkInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Remove-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` +This example shows how to use the Remove-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md index 0bd15ba99c9..a2714d05ba4 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgChatActivityNotification.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Send-MgChatActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -23,7 +23,9 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgChatActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -48,7 +50,9 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgChatActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -74,7 +78,9 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -### Example 4 +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Send-MgChatActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -100,7 +106,9 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` -### Example 5 +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Send-MgChatActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -125,3 +133,5 @@ $params = @{ } Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md index af08be3a38d..0833be706af 100644 --- a/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0/Send-MgTeamActivityNotification.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Send-MgTeamActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -24,7 +24,9 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgTeamActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -49,7 +51,9 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgTeamActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -78,7 +82,9 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` -### Example 4 +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Send-MgTeamActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -107,3 +113,5 @@ $params = @{ } Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChat.md b/src/Teams/Teams/examples/v1.0/Update-MgChat.md index 635f05ef288..7d3d89e4caf 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChat.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChat.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgChat Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgChat -ChatId $chatId -BodyParameter $params ``` +This example shows how to use the Update-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md index 321fdbbf55c..02b587bcdc1 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatInstalledApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Update-MgChatInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Update-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` +This example shows how to use the Update-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md index 91b213756bd..81a3376c7ea 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgChatTab.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgChatTab Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Update-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -BodyParameter $params ``` +This example shows how to use the Update-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md index 86d9c6293d6..7bde45ee6c4 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeam.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeam Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -16,3 +16,5 @@ $params = @{ } Update-MgTeam -TeamId $teamId -BodyParameter $params ``` +This example shows how to use the Update-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md index 0449d11a47a..d8e8a20f2a0 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannel.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Update-MgTeamChannel Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Update-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` +This example shows how to use the Update-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md index 69048045abd..0b2d2bba171 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeamChannelMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Update-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` +This example shows how to use the Update-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md index ace62533047..73c9c8450e7 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamChannelMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeamChannelMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -16,3 +16,5 @@ $params = @{ } Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` +This example shows how to use the Update-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md index 46fb7cf299b..4a1d0192432 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamInstalledApp.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Update-MgTeamInstalledApp Cmdlet ```powershell Import-Module Microsoft.Graph.Teams Update-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` +This example shows how to use the Update-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md index 6a53451aeec..83b8cbdcd60 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamMember.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeamMember Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Update-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` +This example shows how to use the Update-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md index 826e741d4f6..f17df55b110 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleOpenShift.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeamScheduleOpenShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -24,3 +24,5 @@ $params = @{ } Update-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId -BodyParameter $params ``` +This example shows how to use the Update-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md index 1c12f3b4618..252b9100683 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamScheduleShift.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeamScheduleShift Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -51,3 +51,5 @@ $params = @{ } Update-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId -BodyParameter $params ``` +This example shows how to use the Update-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md index e70cc178cb1..e8fc8ee8ad4 100644 --- a/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0/Update-MgTeamworkWorkforceIntegration.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgTeamworkWorkforceIntegration Cmdlet ```powershell Import-Module Microsoft.Graph.Teams $params = @{ @@ -14,3 +14,5 @@ $params = @{ } Update-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId -BodyParameter $params ``` +This example shows how to use the Update-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md index 18ba179fce9..fe8662d194e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Clear-MgUserPresence.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Clear-MgUserPresence Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Clear-MgUserPresence -UserId $userId -BodyParameter $params ``` +This example shows how to use the Clear-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md index 405d65dc541..dcb56a01465 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Confirm-MgUserMemberGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -10,3 +10,5 @@ $params = @{ # A UPN can also be used as -UserId. Confirm-MgUserMemberGroup -UserId $userId -BodyParameter $params ``` +This example shows how to use the Confirm-MgUserMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md index d9567c5ee78..c3dcebd3b87 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Confirm-MgUserMemberObject.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Confirm-MgUserMemberObject Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -12,3 +12,5 @@ $params = @{ # A UPN can also be used as -UserId. Confirm-MgUserMemberObject -UserId $userId -BodyParameter $params ``` +This example shows how to use the Confirm-MgUserMemberObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md index 1c8a8de2fb0..a7ab132ebe2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMailFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Copy-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` +This example shows how to use the Copy-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md index 07fda129d8f..2bb387173c0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Copy-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the Copy-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md index d31841acdf5..207cf1c94ce 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteNotebook.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgUserOnenoteNotebook Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. Copy-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` +This example shows how to use the Copy-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md index 7d8fc478c84..ec711fd2458 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenotePageToSection.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgUserOnenotePageToSection Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. Copy-MgUserOnenotePageToSection -UserId $userId -OnenotePageId $onenotePageId -BodyParameter $params ``` +This example shows how to use the Copy-MgUserOnenotePageToSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md index 6ee52f28fe1..31494b93715 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToNotebook.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgUserOnenoteSectionToNotebook Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -9,3 +9,5 @@ $params = @{ # A UPN can also be used as -UserId. Copy-MgUserOnenoteSectionToNotebook -UserId $userId -OnenoteSectionId $onenoteSectionId -BodyParameter $params ``` +This example shows how to use the Copy-MgUserOnenoteSectionToNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md index 1db0bde3e6b..a6df0ab32dc 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Copy-MgUserOnenoteSectionToSectionGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Copy-MgUserOnenoteSectionToSectionGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -9,3 +9,5 @@ $params = @{ # A UPN can also be used as -UserId. Copy-MgUserOnenoteSectionToSectionGroup -UserId $userId -OnenoteSectionId $onenoteSectionId -BodyParameter $params ``` +This example shows how to use the Copy-MgUserOnenoteSectionToSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md index b9386f56e13..077e34b1887 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Disable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Disable-MgUserAuthenticationPhoneMethodSmSign Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Disable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` +This example shows how to use the Disable-MgUserAuthenticationPhoneMethodSmSign Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md index 9a28954e70d..8748de6a37c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Enable-MgUserAuthenticationPhoneMethodSmSign.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Enable-MgUserAuthenticationPhoneMethodSmSign Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Enable-MgUserAuthenticationPhoneMethodSmSign -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` +This example shows how to use the Enable-MgUserAuthenticationPhoneMethodSmSign Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md index 7a8de3e4183..4121a126eb0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Export-MgUserPersonalData.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Export-MgUserPersonalData Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -6,3 +6,5 @@ $params = @{ } Export-MgUserPersonalData -UserId $userId -BodyParameter $params ``` +This example shows how to use the Export-MgUserPersonalData Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md index b91a890b2fd..3cfa9bd1ad0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Find-MgUserMeetingTime.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Find-MgUserMeetingTime Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -44,3 +44,5 @@ $params = @{ # A UPN can also be used as -UserId. Find-MgUserMeetingTime -UserId $userId -BodyParameter $params ``` +This example shows how to use the Find-MgUserMeetingTime Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md index 762e908310f..aabc8af8cec 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserDefaultCalendarSchedule.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgUserDefaultCalendarSchedule Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -19,3 +19,5 @@ $params = @{ # A UPN can also be used as -UserId. Get-MgUserDefaultCalendarSchedule -UserId $userId -BodyParameter $params ``` +This example shows how to use the Get-MgUserDefaultCalendarSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md index c99731b5ecb..f683fd04749 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMailTip.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgUserMailTip Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -11,3 +11,5 @@ $params = @{ # A UPN can also be used as -UserId. Get-MgUserMailTip -UserId $userId -BodyParameter $params ``` +This example shows how to use the Get-MgUserMailTip Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md index b62f4db7c8b..33ac2fa0597 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserMemberGroup.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgUserMemberGroup Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Get-MgUserMemberGroup -UserId $userId -BodyParameter $params ``` +This example shows how to use the Get-MgUserMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md index 5a9bd6943a4..f14c810a39b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Get-MgUserOnenoteNotebookFromWebUrl.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Get-MgUserOnenoteNotebookFromWebUrl Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Get-MgUserOnenoteNotebookFromWebUrl -UserId $userId -BodyParameter $params ``` +This example shows how to use the Get-MgUserOnenoteNotebookFromWebUrl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md index 71e581f1a3b..c67608fef6e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgAcceptUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgAcceptUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Invoke-MgAcceptUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md index 3e687bdcbce..45686d6a7d6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgAcceptUserEventTentatively.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgAcceptUserEventTentatively Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -18,3 +18,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgAcceptUserEventTentatively -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Invoke-MgAcceptUserEventTentatively Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md index eeb0c219d94..ef0fb716927 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgCreateOrGetUserOnlineMeeting.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgCreateOrGetUserOnlineMeeting Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -22,3 +22,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgCreateOrGetUserOnlineMeeting -UserId $userId -BodyParameter $params ``` +This example shows how to use the Invoke-MgCreateOrGetUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md index 29b754e9a82..d3f053a702e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDeclineUserEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgDeclineUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -18,3 +18,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgDeclineUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Invoke-MgDeclineUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md index 73b430c06d6..96e40d71f32 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgDismissUserEventReminder.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Invoke-MgDismissUserEventReminder Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId ``` +This example shows how to use the Invoke-MgDismissUserEventReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md index a1a5820d96f..12c5120e046 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgForwardUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -15,3 +15,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgForwardUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Invoke-MgForwardUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md index 1e2d5ef4d81..7a8f5c89c15 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgForwardUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgForwardUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -15,3 +15,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgForwardUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the Invoke-MgForwardUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md index 8af40cfa972..4aa1d470fc0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgLicenseUser.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Invoke-MgLicenseUser Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions Invoke-MgLicenseUser -UserId $userId ``` +This example shows how to use the Invoke-MgLicenseUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md index 6cc6e3072c7..919fc786105 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyAllUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgReplyAllUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgReplyAllUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the Invoke-MgReplyAllUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md index 79d2e9ebe4b..d3f00ee2031 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgReplyUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgReplyUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -23,3 +23,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgReplyUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the Invoke-MgReplyUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md index d6d1342aa03..c39f7a6bb07 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgSnoozeUserEventReminder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgSnoozeUserEventReminder Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -10,3 +10,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgSnoozeUserEventReminder -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Invoke-MgSnoozeUserEventReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md index fc81537def9..708a092d56c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Invoke-MgTranslateUserExchangeId.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Invoke-MgTranslateUserExchangeId Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -12,3 +12,5 @@ $params = @{ # A UPN can also be used as -UserId. Invoke-MgTranslateUserExchangeId -UserId $userId -BodyParameter $params ``` +This example shows how to use the Invoke-MgTranslateUserExchangeId Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md index bf2d8dab10f..3e00a97a0df 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMailFolder.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Move-MgUserMailFolder Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Move-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` +This example shows how to use the Move-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md index 8de569d5dde..e52a126588e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Move-MgUserMessage.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Move-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Move-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the Move-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md index d236a97ed89..473e05ff164 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageAttachmentUploadSession.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserMessageAttachmentUploadSession Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -13,7 +13,9 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` -### Example 2 +This example shows how to use the New-MgUserMessageAttachmentUploadSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMessageAttachmentUploadSession Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -26,3 +28,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` +This example shows how to use the New-MgUserMessageAttachmentUploadSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md index d6639476f62..0b62b075cba 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageForward.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the New-MgUserMessageForward Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageForward -UserId $userId -MessageId $messageId ``` +This example shows how to use the New-MgUserMessageForward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md index ed7ac9ccbf2..6226905bc8a 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReply.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the New-MgUserMessageReply Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageReply -UserId $userId -MessageId $messageId ``` +This example shows how to use the New-MgUserMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md index d48b4044bd3..016679dacec 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/New-MgUserMessageReplyAll.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the New-MgUserMessageReplyAll Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. New-MgUserMessageReplyAll -UserId $userId -MessageId $messageId ``` +This example shows how to use the New-MgUserMessageReplyAll Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md index 86c406664e7..7332e13350f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Revoke-MgUserSign.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Revoke-MgUserSign Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Revoke-MgUserSign -UserId $userId ``` +This example shows how to use the Revoke-MgUserSign Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md index 4151f3da089..26423b8d60c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMail.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Send-MgUserMail Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -28,7 +28,9 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserMail -UserId $userId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgUserMail Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -58,7 +60,9 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserMail -UserId $userId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgUserMail Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -90,3 +94,5 @@ $params = @{ # A UPN can also be used as -UserId. Send-MgUserMail -UserId $userId -BodyParameter $params ``` +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md index 1b38db96321..e7f17dc06a8 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserMessage.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Send-MgUserMessage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions # A UPN can also be used as -UserId. Send-MgUserMessage -UserId $userId -MessageId $messageId ``` +This example shows how to use the Send-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md index e1a7fe2299d..ff942758b2a 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Send-MgUserTeamworkActivityNotification.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Send-MgUserTeamworkActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -20,7 +20,9 @@ $params = @{ } Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` -### Example 2 +This example shows how to use the Send-MgUserTeamworkActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgUserTeamworkActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -42,7 +44,9 @@ $params = @{ } Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` -### Example 3 +This example shows how to use the Send-MgUserTeamworkActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgUserTeamworkActivityNotification Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -63,3 +67,5 @@ $params = @{ } Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` +This example shows how to use the Send-MgUserTeamworkActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md index 21d7ac00d53..68b1a007611 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Set-MgUserPresence.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Set-MgUserPresence Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -9,3 +9,5 @@ $params = @{ } Set-MgUserPresence -UserId $userId -BodyParameter $params ``` +This example shows how to use the Set-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md index eb1aefabfa9..5a299284c4d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Stop-MgUserEvent.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Stop-MgUserEvent Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Stop-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` +This example shows how to use the Stop-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md index 685ba36d0f8..8e06e075417 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0/Update-MgUserPassword.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserPassword Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Actions $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserPassword -UserId $userId -BodyParameter $params ``` +This example shows how to use the Update-MgUserPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md index d683305e1c8..0a72151ee17 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserContactFolderDelta.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserContactFolderDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Get-MgUserContactFolderDelta -UserId $userId ``` +This example shows how to use the Get-MgUserContactFolderDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md index c8f1bd0d15f..b10fcfcdfbd 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserDelta.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Functions Get-MgUserDelta ``` +This example shows how to use the Get-MgUserDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md index 6a84d4dc3bd..0b012ef85d9 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Get-MgUserMailFolderMessageDelta.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserMailFolderMessageDelta Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Get-MgUserMailFolderMessageDelta -UserId $userId -MailFolderId $mailFolderId ``` +This example shows how to use the Get-MgUserMailFolderMessageDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md index 3855a06a7ba..0ef4e1d3126 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgRecentUserActivity.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Invoke-MgRecentUserActivity Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgRecentUserActivity -UserId $userId ``` +This example shows how to use the Invoke-MgRecentUserActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md index af662804568..78a637ae5b0 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgSupportedUserOutlookLanguage.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Invoke-MgSupportedUserOutlookLanguage Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgSupportedUserOutlookLanguage -UserId $userId ``` +This example shows how to use the Invoke-MgSupportedUserOutlookLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md index 12dd8594b58..b77a1749486 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0/Invoke-MgTimeUserOutlook.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Invoke-MgTimeUserOutlook Cmdlet ```powershell Import-Module Microsoft.Graph.Users.Functions # A UPN can also be used as -UserId. Invoke-MgTimeUserOutlook -UserId $userId ``` +This example shows how to use the Invoke-MgTimeUserOutlook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md index 21cdb6b5da8..3eeacbbd72b 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Users Get-MgUserMemberOf -UserId $userId ``` +This example shows how to use the Get-MgUserMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md index 2ff9abcc6f7..1e7da3ce532 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOutlookMasterCategory.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserOutlookMasterCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOutlookMasterCategory -UserId $userId ``` -### Example 2 +This example shows how to use the Get-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOutlookMasterCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId ``` +This example shows how to use the Get-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md index 29fdd8568c8..e4c8fdea8bb 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedDevice.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOwnedDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOwnedDevice -UserId $userId ``` +This example shows how to use the Get-MgUserOwnedDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md index 9daa25f5629..b59c6d655ba 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserOwnedObject.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserOwnedObject Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserOwnedObject -UserId $userId ``` +This example shows how to use the Get-MgUserOwnedObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md index 20bfefc1ea4..d86d125f429 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserRegisteredDevice.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Get-MgUserRegisteredDevice Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserRegisteredDevice -UserId $userId ``` +This example shows how to use the Get-MgUserRegisteredDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md index 85c2169a387..ba6b419dae4 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserSettingShiftPreference.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserSettingShiftPreference Cmdlet ```powershell Import-Module Microsoft.Graph.Users Get-MgUserSettingShiftPreference -UserId $userId ``` +This example shows how to use the Get-MgUserSettingShiftPreference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md index a248b167011..07c42e0a05b 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoList.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserTodoList Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoList -UserId $userId ``` -### Example 2 +This example shows how to use the Get-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoList Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId ``` +This example shows how to use the Get-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md index 5d62dc76731..2ccbc553c27 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTask.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserTodoListTask Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` -### Example 2 +This example shows how to use the Get-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTask Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId ``` +This example shows how to use the Get-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md index 1b58d63a04f..245e9dab25b 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskChecklistItem.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserTodoListTaskChecklistItem Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` -### Example 2 +This example shows how to use the Get-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTaskChecklistItem Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` +This example shows how to use the Get-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md index d0e63db2849..b96401fbcbf 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTodoListTaskLinkedResource.md @@ -1,12 +1,16 @@ -### Example 1 +### Example 1: Using the Get-MgUserTodoListTaskLinkedResource Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` -### Example 2 +This example shows how to use the Get-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTaskLinkedResource Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` +This example shows how to use the Get-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md index 396a9bb5a66..2eb54d10f6a 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md +++ b/src/Users/Users/examples/v1.0/Get-MgUserTransitiveMemberOf.md @@ -1,5 +1,7 @@ -### Example 1 +### Example 1: Using the Get-MgUserTransitiveMemberOf Cmdlet ```powershell Import-Module Microsoft.Graph.Users Get-MgUserTransitiveMemberOf -UserId $userId ``` +This example shows how to use the Get-MgUserTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md index 1dfed7824fc..29b84411e73 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/New-MgUserOutlookMasterCategory.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserOutlookMasterCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -8,3 +8,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserOutlookMasterCategory -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md index 84ab802382a..968f5aca2ad 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoList.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserTodoList Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserTodoList -UserId $userId -BodyParameter $params ``` +This example shows how to use the New-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md index 5e1150a423b..2f4c7f25573 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTask.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserTodoListTask Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -17,3 +17,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -BodyParameter $params ``` +This example shows how to use the New-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md index ff5cdd03b24..1fec86600c5 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskChecklistItem.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserTodoListTaskChecklistItem Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` +This example shows how to use the New-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md index c03d380a206..aa024556e9d 100644 --- a/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/New-MgUserTodoListTaskLinkedResource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the New-MgUserTodoListTaskLinkedResource Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -10,3 +10,5 @@ $params = @{ # A UPN can also be used as -UserId. New-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` +This example shows how to use the New-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md index 795d502f7d6..be11c037c74 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserOutlookMasterCategory.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserOutlookMasterCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId ``` +This example shows how to use the Remove-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md index ac221c4541d..409d70e637f 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoList.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserTodoList Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId ``` +This example shows how to use the Remove-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md index c0085472bc9..d8856b7fac6 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTask.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserTodoListTask Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` +This example shows how to use the Remove-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md index c0dd9909d93..9cc123bcd0c 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskChecklistItem.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserTodoListTaskChecklistItem Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` +This example shows how to use the Remove-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md index 274f3d8bbbd..b2f28e07467 100644 --- a/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Remove-MgUserTodoListTaskLinkedResource.md @@ -1,6 +1,8 @@ -### Example 1 +### Example 1: Using the Remove-MgUserTodoListTaskLinkedResource Cmdlet ```powershell Import-Module Microsoft.Graph.Users # A UPN can also be used as -UserId. Remove-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` +This example shows how to use the Remove-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md index 359fbdde7b5..8b9ee3dc9aa 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserOutlookMasterCategory.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserOutlookMasterCategory Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId -BodyParameter $params ``` +This example shows how to use the Update-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md index 244772f1b77..b1cb0acf99b 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserSettingShiftPreference.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserSettingShiftPreference Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -27,3 +27,5 @@ $params = @{ } Update-MgUserSettingShiftPreference -UserId $userId -BodyParameter $params ``` +This example shows how to use the Update-MgUserSettingShiftPreference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md index 9b7b5363021..ea0f86bd3da 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoList.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserTodoList Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId -BodyParameter $params ``` +This example shows how to use the Update-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md index 181a9ca8030..725862a4aea 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTask.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserTodoListTask Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -10,3 +10,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` +This example shows how to use the Update-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md index 37f9da69fec..32fb98c75a3 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskChecklistItem.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserTodoListTaskChecklistItem Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -7,3 +7,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId -BodyParameter $params ``` +This example shows how to use the Update-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md index 6c8f77388c5..c98c7a11e0a 100644 --- a/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0/Update-MgUserTodoListTaskLinkedResource.md @@ -1,4 +1,4 @@ -### Example 1 +### Example 1: Using the Update-MgUserTodoListTaskLinkedResource Cmdlet ```powershell Import-Module Microsoft.Graph.Users $params = @{ @@ -10,3 +10,5 @@ $params = @{ # A UPN can also be used as -UserId. Update-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId -BodyParameter $params ``` +This example shows how to use the Update-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). From 73f820ae442d5c01ff760682dbb2527a87979a5f Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Thu, 15 Sep 2022 10:19:01 +0300 Subject: [PATCH 17/30] Added a try catch --- .../Authentication/custom/common/GraphUri.ps1 | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/Authentication/Authentication/custom/common/GraphUri.ps1 b/src/Authentication/Authentication/custom/common/GraphUri.ps1 index 8b23c38585f..5656cb6a1aa 100644 --- a/src/Authentication/Authentication/custom/common/GraphUri.ps1 +++ b/src/Authentication/Authentication/custom/common/GraphUri.ps1 @@ -54,14 +54,21 @@ function GraphUri_TokenizeIds { # Segment contains an integer/id and is not API version. if ($Uri.Segments[$i] -match "[^v1.0|beta]\d") { #For Uris whose last segments match the regex '(?<={)(.*?)(?=})', all characters from the first '(' are substituted with '.*' - if($i -eq $Uri.Segments.length - 1){ - if($UnescapedUri -match '(?<={)(.*?)(?=})'){ - $UpdatedLastSegment = $LastSegment.Substring(0,$LastSegment.IndexOf("(")) - $TokenizedUri += $UpdatedLastSegment + ".*" + if ($i -eq $Uri.Segments.length - 1) { + if ($UnescapedUri -match '(?<={)(.*?)(?=})') { + try { + $UpdatedLastSegment = $LastSegment.Substring(0, $LastSegment.IndexOf("(")) + $TokenizedUri += $UpdatedLastSegment + ".*" + + } + catch { + $TokenizedUri += "{id}/" + } } - }else{ - # Substitute integers/ids with {id} tokens, e.g, /users/289ee2a5-9450-4837-aa87-6bd8d8e72891 -> users/{id}. - $TokenizedUri += "{id}/" + } + else { + # Substitute integers/ids with {id} tokens, e.g, /users/289ee2a5-9450-4837-aa87-6bd8d8e72891 -> users/{id}. + $TokenizedUri += "{id}/" } } else { From 11bd37ead316b713adae20ff7ac401da0d141bc4 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa <10947120+timayabi2020@users.noreply.github.com> Date: Thu, 15 Sep 2022 13:57:49 +0300 Subject: [PATCH 18/30] Corrected one failing test --- src/Authentication/Authentication/custom/common/GraphUri.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Authentication/Authentication/custom/common/GraphUri.ps1 b/src/Authentication/Authentication/custom/common/GraphUri.ps1 index 5656cb6a1aa..1dd19cd027e 100644 --- a/src/Authentication/Authentication/custom/common/GraphUri.ps1 +++ b/src/Authentication/Authentication/custom/common/GraphUri.ps1 @@ -55,7 +55,7 @@ function GraphUri_TokenizeIds { if ($Uri.Segments[$i] -match "[^v1.0|beta]\d") { #For Uris whose last segments match the regex '(?<={)(.*?)(?=})', all characters from the first '(' are substituted with '.*' if ($i -eq $Uri.Segments.length - 1) { - if ($UnescapedUri -match '(?<={)(.*?)(?=})') { + if ($UnescapedUri -match '(.*?)') { try { $UpdatedLastSegment = $LastSegment.Substring(0, $LastSegment.IndexOf("(")) $TokenizedUri += $UpdatedLastSegment + ".*" @@ -75,6 +75,7 @@ function GraphUri_TokenizeIds { $TokenizedUri += $Uri.Segments[$i] } } + Write-host $TokenizedUri return $TokenizedUri.TrimEnd("/") } From 3a65bb50d6635fe83e36655f19fe2b6d46931b24 Mon Sep 17 00:00:00 2001 From: Eunice Waweru <73849846+msewaweru@users.noreply.github.com> Date: Thu, 15 Sep 2022 21:34:51 +0300 Subject: [PATCH 19/30] Updated example 1 in Get-MgUser (#1516) --- src/Users/Users/examples/v1.0-beta/Get-MgUser.md | 2 +- src/Users/Users/examples/v1.0/Get-MgUser.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUser.md b/src/Users/Users/examples/v1.0-beta/Get-MgUser.md index ce4ad75df50..d7bc4d792be 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUser.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUser.md @@ -2,7 +2,7 @@ ```powershell Connect-MgGraph -Scopes 'User.Read.All' -Get-MgUser | Format-List ID, DisplayName, Mail, UserPrincipalName +Get-MgUser -All | Format-List ID, DisplayName, Mail, UserPrincipalName Id : e4e2b110-8d4f-434f-a990-7cd63e23aed6 DisplayName : Kristi Laar diff --git a/src/Users/Users/examples/v1.0/Get-MgUser.md b/src/Users/Users/examples/v1.0/Get-MgUser.md index ce4ad75df50..d7bc4d792be 100644 --- a/src/Users/Users/examples/v1.0/Get-MgUser.md +++ b/src/Users/Users/examples/v1.0/Get-MgUser.md @@ -2,7 +2,7 @@ ```powershell Connect-MgGraph -Scopes 'User.Read.All' -Get-MgUser | Format-List ID, DisplayName, Mail, UserPrincipalName +Get-MgUser -All | Format-List ID, DisplayName, Mail, UserPrincipalName Id : e4e2b110-8d4f-434f-a990-7cd63e23aed6 DisplayName : Kristi Laar From 65f2d9b160503b70a2fb8a298469b00c459d1187 Mon Sep 17 00:00:00 2001 From: SteveWilkins1123 Date: Thu, 15 Sep 2022 13:10:37 -0700 Subject: [PATCH 20/30] Imported Beta Snippets --- .../v1.0-beta/Add-MgApplicationKey.md | 44 +- ...ServicePrincipalTokenSigningCertificate.md | 25 +- .../Clear-MgApplicationVerifiedPublisher.md | 21 +- ...ncipalSynchronizationJobSchemaDirectory.md | 21 +- .../v1.0-beta/Get-MgApplicationDelta.md | 21 +- .../Get-MgApplicationExtensionProperty.md | 24 +- ...gApplicationFederatedIdentityCredential.md | 24 +- .../v1.0-beta/Get-MgApplicationOwner.md | 21 +- ...MgApplicationSynchronizationAccessToken.md | 28 +- .../v1.0-beta/Get-MgApplicationTemplate.md | 24 +- .../Get-MgApplicationTokenIssuancePolicy.md | 21 +- .../Get-MgApplicationTokenLifetimePolicy.md | 21 +- .../Get-MgOnPremisePublishingProfile.md | 21 +- .../Get-MgOnPremisePublishingProfileAgent.md | 24 +- ...-MgOnPremisePublishingProfileAgentGroup.md | 24 +- ...t-MgOnPremisePublishingProfileConnector.md | 24 +- ...nPremisePublishingProfileConnectorGroup.md | 24 +- ...lishingProfileConnectorGroupApplication.md | 21 +- ...sePublishingProfileConnectorGroupMember.md | 21 +- ...emisePublishingProfileConnectorMemberOf.md | 21 +- ...emisePublishingProfilePublishedResource.md | 24 +- ...Get-MgServicePrincipalAppRoleAssignedTo.md | 21 +- ...et-MgServicePrincipalClaimMappingPolicy.md | 21 +- .../Get-MgServicePrincipalCreatedObject.md | 21 +- ...ncipalDelegatedPermissionClassification.md | 21 +- .../v1.0-beta/Get-MgServicePrincipalDelta.md | 21 +- ...ervicePrincipalHomeRealmDiscoveryPolicy.md | 21 +- .../Get-MgServicePrincipalMemberOf.md | 21 +- ...MgServicePrincipalOauth2PermissionGrant.md | 21 +- .../Get-MgServicePrincipalOwnedObject.md | 21 +- ...rincipalPasswordSingleSignOnCredentials.md | 24 +- ...et-MgServicePrincipalSynchronizationJob.md | 24 +- ...ervicePrincipalSynchronizationJobSchema.md | 31 +- ...ServicePrincipalSynchronizationTemplate.md | 21 +- ...et-MgServicePrincipalTransitiveMemberOf.md | 21 +- ...incipalSynchronizationJobSchemaOperator.md | 21 +- ...ervicePrincipalSynchronizationJobSchema.md | 21 +- ...Invoke-MgInstantiateApplicationTemplate.md | 24 +- ...w-MgApplicationAppManagementPolicyByRef.md | 24 +- .../New-MgApplicationExtensionProperty.md | 28 +- ...gApplicationFederatedIdentityCredential.md | 29 +- ...ew-MgApplicationSynchronizationTemplate.md | 26 +- ...w-MgApplicationTokenIssuancePolicyByRef.md | 24 +- ...-MgOnPremisePublishingProfileAgentGroup.md | 21 +- ...nPremisePublishingProfileConnectorGroup.md | 31 +- ...PublishingProfileConnectorMemberOfByRef.md | 24 +- ...emisePublishingProfilePublishedResource.md | 25 +- ...New-MgServicePrincipalAppRoleAssignedTo.md | 26 +- ...New-MgServicePrincipalAppRoleAssignment.md | 45 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 24 +- ...ncipalDelegatedPermissionClassification.md | 26 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 24 +- ...rincipalPasswordSingleSignOnCredentials.md | 36 +- ...ew-MgServicePrincipalSynchronizationJob.md | 24 +- ...vicePrincipalSynchronizationJobOnDemand.md | 102 +++- .../Remove-MgApplicationExtensionProperty.md | 21 +- ...gApplicationFederatedIdentityCredential.md | 21 +- .../v1.0-beta/Remove-MgApplicationKey.md | 25 +- .../Remove-MgApplicationOwnerByRef.md | 21 +- .../v1.0-beta/Remove-MgApplicationPassword.md | 24 +- ...e-MgApplicationTokenIssuancePolicyByRef.md | 21 +- ...e-MgApplicationTokenLifetimePolicyByRef.md | 21 +- .../Remove-MgGroupAppRoleAssignment.md | 21 +- ...-MgOnPremisePublishingProfileAgentGroup.md | 21 +- ...nPremisePublishingProfileConnectorGroup.md | 21 +- ...ProfilePublishedResourceAgentGroupByRef.md | 24 +- .../v1.0-beta/Remove-MgServicePrincipal.md | 21 +- ...ove-MgServicePrincipalAppRoleAssignedTo.md | 21 +- ...ServicePrincipalClaimMappingPolicyByRef.md | 21 +- ...ncipalDelegatedPermissionClassification.md | 21 +- ...ePrincipalHomeRealmDiscoveryPolicyByRef.md | 21 +- ...rincipalPasswordSingleSignOnCredentials.md | 24 +- ...ve-MgServicePrincipalSynchronizationJob.md | 21 +- ...rt-MgServicePrincipalSynchronizationJob.md | 26 +- .../Set-MgApplicationConnectorGroupByRef.md | 24 +- .../Set-MgApplicationVerifiedPublisher.md | 24 +- ...rt-MgServicePrincipalSynchronizationJob.md | 21 +- ...nd-MgServicePrincipalSynchronizationJob.md | 21 +- ...gApplicationFederatedIdentityCredential.md | 30 +- ...-MgOnPremisePublishingProfileAgentGroup.md | 24 +- ...nPremisePublishingProfileConnectorGroup.md | 25 +- ...rincipalPasswordSingleSignOnCredentials.md | 36 +- .../v1.0-beta/Get-MgBookingBusiness.md | 31 +- .../Get-MgBookingBusinessAppointment.md | 24 +- .../Get-MgBookingBusinessCalendarView.md | 21 +- .../Get-MgBookingBusinessCustomQuestion.md | 24 +- .../Get-MgBookingBusinessCustomer.md | 24 +- .../v1.0-beta/Get-MgBookingBusinessService.md | 24 +- .../Get-MgBookingBusinessStaffMember.md | 24 +- .../v1.0-beta/Get-MgBookingCurrency.md | 24 +- .../v1.0-beta/New-MgBookingBusiness.md | 36 +- .../New-MgBookingBusinessAppointment.md | 165 +++++- .../New-MgBookingBusinessCustomer.md | 55 +- .../v1.0-beta/New-MgBookingBusinessService.md | 84 ++- .../New-MgBookingBusinessStaffMember.md | 100 +++- .../v1.0-beta/Publish-MgBookingBusiness.md | 21 +- .../v1.0-beta/Remove-MgBookingBusiness.md | 21 +- .../Remove-MgBookingBusinessAppointment.md | 21 +- .../Remove-MgBookingBusinessCustomQuestion.md | 21 +- .../Remove-MgBookingBusinessCustomer.md | 21 +- .../Remove-MgBookingBusinessService.md | 21 +- .../Remove-MgBookingBusinessStaffMember.md | 21 +- .../Stop-MgBookingBusinessAppointment.md | 24 +- .../v1.0-beta/Unpublish-MgBookingBusiness.md | 21 +- .../v1.0-beta/Update-MgBookingBusiness.md | 31 +- .../Update-MgBookingBusinessAppointment.md | 39 +- .../Update-MgBookingBusinessCustomQuestion.md | 28 +- .../Update-MgBookingBusinessCustomer.md | 25 +- .../Update-MgBookingBusinessService.md | 25 +- .../Update-MgBookingBusinessStaffMember.md | 85 ++- .../examples/v1.0-beta/Get-MgGroupEvent.md | 24 +- .../v1.0-beta/Get-MgGroupEventExtension.md | 21 +- .../examples/v1.0-beta/Get-MgPlace.md | 52 +- .../examples/v1.0-beta/Get-MgUserCalendar.md | 22 +- .../v1.0-beta/Get-MgUserCalendarGroup.md | 26 +- .../Get-MgUserCalendarGroupCalendar.md | 22 +- .../v1.0-beta/Get-MgUserCalendarPermission.md | 21 +- .../v1.0-beta/Get-MgUserCalendarView.md | 22 +- .../v1.0-beta/Get-MgUserDefaultCalendar.md | 22 +- .../examples/v1.0-beta/Get-MgUserEvent.md | 58 +- .../v1.0-beta/Get-MgUserEventAttachment.md | 26 +- .../v1.0-beta/Get-MgUserEventInstance.md | 22 +- .../examples/v1.0-beta/New-MgGroupEvent.md | 48 +- .../v1.0-beta/New-MgGroupEventExtension.md | 28 +- .../examples/v1.0-beta/New-MgUserCalendar.md | 25 +- .../v1.0-beta/New-MgUserCalendarEvent.md | 83 ++- .../v1.0-beta/New-MgUserCalendarGroup.md | 25 +- .../New-MgUserCalendarGroupCalendar.md | 25 +- .../examples/v1.0-beta/New-MgUserEvent.md | 246 ++++++++- .../v1.0-beta/New-MgUserEventAttachment.md | 70 ++- .../examples/v1.0-beta/Remove-MgGroupEvent.md | 21 +- .../v1.0-beta/Remove-MgUserCalendarGroup.md | 22 +- .../Remove-MgUserCalendarPermission.md | 21 +- .../examples/v1.0-beta/Remove-MgUserEvent.md | 22 +- .../v1.0-beta/Remove-MgUserEventAttachment.md | 22 +- .../examples/v1.0-beta/Update-MgGroupEvent.md | 32 +- .../examples/v1.0-beta/Update-MgPlace.md | 66 ++- .../v1.0-beta/Update-MgUserCalendarGroup.md | 25 +- .../Update-MgUserCalendarPermission.md | 24 +- .../examples/v1.0-beta/Update-MgUserEvent.md | 40 +- .../examples/v1.0-beta/Get-MgSubscription.md | 24 +- .../examples/v1.0-beta/New-MgSubscription.md | 29 +- .../v1.0-beta/Remove-MgSubscription.md | 21 +- .../v1.0-beta/Update-MgSubscription.md | 24 +- ...Add-MgCommunicationCallLargeGalleryView.md | 24 +- .../v1.0-beta/Get-MgCommunicationCall.md | 24 +- ...et-MgCommunicationCallAudioRoutingGroup.md | 24 +- ...gCommunicationCallContentSharingSession.md | 24 +- .../Get-MgCommunicationCallOperation.md | 21 +- .../Get-MgCommunicationCallParticipant.md | 24 +- .../Get-MgCommunicationCallRecord.md | 38 +- .../Get-MgCommunicationCallRecordSession.md | 24 +- .../Get-MgCommunicationOnlineMeeting.md | 21 +- .../v1.0-beta/Get-MgCommunicationPresence.md | 21 +- .../Get-MgCommunicationPresenceByUserId.md | 27 +- ...Get-MgUserOnlineMeetingAttendanceReport.md | 26 +- ...MeetingAttendanceReportAttendanceRecord.md | 22 +- .../Get-MgUserOnlineMeetingRecording.md | 22 +- .../Get-MgUserOnlineMeetingRegistration.md | 26 +- ...OnlineMeetingRegistrationCustomQuestion.md | 22 +- .../Get-MgUserOnlineMeetingTranscript.md | 24 +- ...et-MgUserOnlineMeetingTranscriptContent.md | 38 +- .../examples/v1.0-beta/Get-MgUserPresence.md | 25 +- .../Invoke-MgAnswerCommunicationCall.md | 49 +- ...ke-MgInviteCommunicationCallParticipant.md | 189 ++++++- .../Invoke-MgKeepCommunicationCallAlive.md | 21 +- ...nicationCallTeleconferenceDeviceQuality.md | 105 +++- ...e-MgMuteAllCommunicationCallParticipant.md | 27 +- .../Invoke-MgMuteCommunicationCall.md | 24 +- ...voke-MgMuteCommunicationCallParticipant.md | 24 +- .../Invoke-MgPlayCommunicationCallPrompt.md | 35 +- ...nvoke-MgRecordCommunicationCallResponse.md | 39 +- .../Invoke-MgRedirectCommunicationCall.md | 55 +- .../Invoke-MgRejectCommunicationCall.md | 30 +- ...voke-MgSubscribeCommunicationCallToTone.md | 24 +- .../Invoke-MgUnmuteCommunicationCall.md | 24 +- .../v1.0-beta/Move-MgCommunicationCall.md | 129 ++++- .../v1.0-beta/New-MgCommunicationCall.md | 503 +++++++++++++++++- ...ew-MgCommunicationCallAudioRoutingGroup.md | 31 +- .../v1.0-beta/New-MgUserOnlineMeeting.md | 27 +- .../v1.0-beta/Remove-MgCommunicationCall.md | 21 +- ...ve-MgCommunicationCallAudioRoutingGroup.md | 21 +- .../Remove-MgCommunicationCallParticipant.md | 31 +- .../v1.0-beta/Remove-MgUserOnlineMeeting.md | 22 +- .../Remove-MgUserOnlineMeetingRegistration.md | 26 +- ...OnlineMeetingRegistrationCustomQuestion.md | 22 +- ...me-MgCommunicationCallScreenSharingRole.md | 24 +- ...MgCommunicationCallParticipantHoldMusic.md | 31 +- ...Stop-MgCommunicationCallMediaProcessing.md | 24 +- ...MgCommunicationCallParticipantHoldMusic.md | 24 +- ...te-MgCommunicationCallAudioRoutingGroup.md | 32 +- ...date-MgCommunicationCallRecordingStatus.md | 25 +- .../v1.0-beta/Update-MgUserOnlineMeeting.md | 36 +- .../Update-MgUserOnlineMeetingRegistration.md | 37 +- ...OnlineMeetingRegistrationCustomQuestion.md | 32 +- ...mplianceEdiscoveryCaseReviewSetQueryTag.md | 28 +- ...ianceEdiscoveryCaseReviewSetToReviewSet.md | 27 +- ...ianceEdiscoveryCaseSourceCollectionData.md | 21 +- .../Close-MgComplianceEdiscoveryCase.md | 21 +- ...ort-MgComplianceEdiscoveryCaseReviewSet.md | 27 +- .../Get-MgComplianceEdiscoveryCase.md | 24 +- ...Get-MgComplianceEdiscoveryCaseCustodian.md | 24 +- ...lianceEdiscoveryCaseCustodianSiteSource.md | 24 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 24 +- ...lianceEdiscoveryCaseCustodianUserSource.md | 24 +- ...Get-MgComplianceEdiscoveryCaseLegalHold.md | 24 +- ...lianceEdiscoveryCaseLegalHoldSiteSource.md | 21 +- ...lianceEdiscoveryCaseLegalHoldUserSource.md | 21 +- ...nceEdiscoveryCaseNoncustodialDataSource.md | 24 +- ...Get-MgComplianceEdiscoveryCaseOperation.md | 21 +- ...discoveryCaseExportOperationDownloadUrl.md | 7 + ...Get-MgComplianceEdiscoveryCaseReviewSet.md | 24 +- ...gComplianceEdiscoveryCaseReviewSetQuery.md | 24 +- .../Get-MgComplianceEdiscoveryCaseSetting.md | 24 +- ...omplianceEdiscoveryCaseSourceCollection.md | 24 +- ...SourceCollectionAddToReviewSetOperation.md | 21 +- ...eryCaseSourceCollectionAdditionalSource.md | 21 +- ...veryCaseSourceCollectionCustodianSource.md | 21 +- ...llectionLastEstimateStatisticsOperation.md | 21 +- ...yCaseSourceCollectionNoncustodialSource.md | 24 +- .../Get-MgComplianceEdiscoveryCaseTag.md | 24 +- ...t-MgComplianceEdiscoveryCaseTagChildTag.md | 21 +- ...ize-MgComplianceEdiscoveryCaseCustodian.md | 21 +- ...gAsComplianceEdiscoveryCaseTagHierarchy.md | 21 +- ...discoveryCaseSourceCollectionStatistics.md | 21 +- ...Invoke-MgReopenComplianceEdiscoveryCase.md | 21 +- .../New-MgComplianceEdiscoveryCase.md | 24 +- ...New-MgComplianceEdiscoveryCaseCustodian.md | 25 +- ...lianceEdiscoveryCaseCustodianSiteSource.md | 26 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 34 +- ...lianceEdiscoveryCaseCustodianUserSource.md | 25 +- ...New-MgComplianceEdiscoveryCaseLegalHold.md | 35 +- ...lianceEdiscoveryCaseLegalHoldSiteSource.md | 26 +- ...lianceEdiscoveryCaseLegalHoldUserSource.md | 25 +- ...nceEdiscoveryCaseNoncustodialDataSource.md | 37 +- ...New-MgComplianceEdiscoveryCaseReviewSet.md | 24 +- ...gComplianceEdiscoveryCaseReviewSetQuery.md | 25 +- ...omplianceEdiscoveryCaseSourceCollection.md | 28 +- ...eryCaseSourceCollectionAdditionalSource.md | 41 +- ...aseSourceCollectionCustodianSourceByRef.md | 10 + ...SourceCollectionNoncustodialSourceByRef.md | 10 + .../New-MgComplianceEdiscoveryCaseTag.md | 26 +- ...ish-MgComplianceEdiscoveryCaseCustodian.md | 21 +- ...nceEdiscoveryCaseNoncustodialDataSource.md | 21 +- .../Remove-MgComplianceEdiscoveryCase.md | 21 +- ...lianceEdiscoveryCaseCustodianSiteSource.md | 21 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 21 +- ...lianceEdiscoveryCaseCustodianUserSource.md | 21 +- ...ove-MgComplianceEdiscoveryCaseLegalHold.md | 21 +- ...gComplianceEdiscoveryCaseReviewSetQuery.md | 21 +- ...omplianceEdiscoveryCaseSourceCollection.md | 21 +- .../Remove-MgComplianceEdiscoveryCaseTag.md | 21 +- ...omplianceEdiscoveryCaseSettingToDefault.md | 21 +- .../Update-MgComplianceEdiscoveryCase.md | 26 +- ...ate-MgComplianceEdiscoveryCaseCustodian.md | 24 +- ...ate-MgComplianceEdiscoveryCaseLegalHold.md | 24 +- ...gComplianceEdiscoveryCaseReviewSetQuery.md | 24 +- ...pdate-MgComplianceEdiscoveryCaseSetting.md | 60 ++- ...omplianceEdiscoveryCaseSourceCollection.md | 24 +- .../Update-MgComplianceEdiscoveryCaseTag.md | 24 +- .../v1.0-beta/Remove-MgUserActivity.md | 22 +- ...mentManagedDeviceSetCloudPcReviewStatus.md | 32 +- ...oreDeviceManagementManagedDeviceCloudPc.md | 29 +- ...ionDeviceManagementManagedDeviceCloudPc.md | 21 +- ...nDeviceManagementVirtualEndpointCloudPc.md | 25 +- ...iceManagementVirtualEndpointDeviceImage.md | 21 +- ...tDeviceManagementVirtualEndpointCloudPc.md | 21 +- ...ntVirtualEndpointCloudPcUserAccountType.md | 24 +- ...-MgDeviceManagementManagedDeviceCloudPc.md | 24 +- ...gDeviceManagementVirtualEndpointCloudPc.md | 21 +- ...-MgDeviceManagementManagedDeviceCloudPc.md | 24 +- ...agementManagedDeviceCloudPcReviewStatus.md | 28 +- ...gementVirtualEndpointProvisioningPolicy.md | 33 +- ...iceManagementVirtualEndpointUserSetting.md | 32 +- ...alEndpointOnPremisConnectionHealthCheck.md | 21 +- ...gementVirtualEndpointCloudPcGracePeriod.md | 21 +- ...pointOnPremisConnectionAdDomainPassword.md | 24 +- ...viceManagementVirtualEndpointAuditEvent.md | 24 +- ...gDeviceManagementVirtualEndpointCloudPC.md | 31 +- ...iceManagementVirtualEndpointDeviceImage.md | 24 +- ...ntVirtualEndpointExternalPartnerSetting.md | 38 +- ...ceManagementVirtualEndpointGalleryImage.md | 24 +- ...mentVirtualEndpointOnPremisesConnection.md | 31 +- ...ementVirtualEndpointOrganizationSetting.md | 21 +- ...gementVirtualEndpointProvisioningPolicy.md | 38 +- ...iceManagementVirtualEndpointServicePlan.md | 21 +- ...DeviceManagementVirtualEndpointSnapshot.md | 31 +- ...anagementVirtualEndpointSupportedRegion.md | 21 +- ...iceManagementVirtualEndpointUserSetting.md | 31 +- ...iceManagementVirtualEndpointDeviceImage.md | 29 +- ...ntVirtualEndpointExternalPartnerSetting.md | 26 +- ...mentVirtualEndpointOnPremisesConnection.md | 34 +- ...gementVirtualEndpointProvisioningPolicy.md | 38 +- ...iceManagementVirtualEndpointUserSetting.md | 31 +- ...iceManagementVirtualEndpointDeviceImage.md | 21 +- ...mentVirtualEndpointOnPremisesConnection.md | 21 +- ...gementVirtualEndpointProvisioningPolicy.md | 21 +- ...iceManagementVirtualEndpointUserSetting.md | 21 +- ...ntVirtualEndpointExternalPartnerSetting.md | 25 +- ...mentVirtualEndpointOnPremisesConnection.md | 33 +- ...ementVirtualEndpointOrganizationSetting.md | 30 +- ...gementVirtualEndpointProvisioningPolicy.md | 33 +- ...iceManagementVirtualEndpointUserSetting.md | 31 +- ...t-MgRoleManagementCloudPcRoleAssignment.md | 52 +- ...t-MgRoleManagementCloudPcRoleDefinition.md | 24 +- ...anagementDeviceManagementRoleAssignment.md | 45 +- ...oleManagementDirectoryResourceNamespace.md | 24 +- ...irectoryResourceNamespaceResourceAction.md | 31 +- ...MgRoleManagementDirectoryRoleAssignment.md | 38 +- ...MgRoleManagementDirectoryRoleDefinition.md | 38 +- ...gementDirectoryTransitiveRoleAssignment.md | 31 +- ...mentEntitlementManagementRoleAssignment.md | 21 +- ...mentEntitlementManagementRoleDefinition.md | 24 +- ...w-MgRoleManagementCloudPcRoleAssignment.md | 31 +- ...w-MgRoleManagementCloudPcRoleDefinition.md | 33 +- ...anagementDeviceManagementRoleAssignment.md | 49 +- ...MgRoleManagementDirectoryRoleAssignment.md | 49 +- ...MgRoleManagementDirectoryRoleDefinition.md | 33 +- ...mentEntitlementManagementRoleAssignment.md | 26 +- ...e-MgRoleManagementCloudPcRoleAssignment.md | 21 +- ...e-MgRoleManagementCloudPcRoleDefinition.md | 21 +- ...anagementDeviceManagementRoleAssignment.md | 21 +- ...MgRoleManagementDirectoryRoleAssignment.md | 21 +- ...MgRoleManagementDirectoryRoleDefinition.md | 21 +- ...tDirectoryRoleAssignmentScheduleRequest.md | 21 +- ...DirectoryRoleEligibilityScheduleRequest.md | 21 +- ...e-MgRoleManagementCloudPcRoleAssignment.md | 25 +- ...e-MgRoleManagementCloudPcRoleDefinition.md | 33 +- ...anagementDeviceManagementRoleAssignment.md | 27 +- ...MgRoleManagementDirectoryRoleDefinition.md | 32 +- ...tManagedDeviceCloudPcRemoteActionResult.md | 21 +- ...agementManagedDeviceCloudPcReviewStatus.md | 21 +- ...tualEndpointAuditEventAuditActivityType.md | 21 +- ...rtualEndpointCloudPcConnectivityHistory.md | 21 +- ...ntVirtualEndpointDeviceImageSourceImage.md | 21 +- ...ementVirtualEndpointEffectivePermission.md | 21 +- ...mentVirtualEndpointSnapshotSubscription.md | 21 +- .../v1.0-beta/Get-MgPrintConnector.md | 24 +- .../v1.0-beta/Get-MgPrintOperation.md | 21 +- .../examples/v1.0-beta/Get-MgPrintPrinter.md | 24 +- .../v1.0-beta/Get-MgPrintPrinterCapability.md | 21 +- .../v1.0-beta/Get-MgPrintPrinterConnector.md | 21 +- .../Get-MgPrintPrinterTaskTrigger.md | 24 +- .../examples/v1.0-beta/Get-MgPrintService.md | 24 +- .../v1.0-beta/Get-MgPrintServiceEndpoint.md | 24 +- .../examples/v1.0-beta/Get-MgPrintShare.md | 24 +- .../v1.0-beta/Get-MgPrintShareAllowedGroup.md | 21 +- .../v1.0-beta/Get-MgPrintShareAllowedUser.md | 21 +- .../v1.0-beta/Get-MgPrintTaskDefinition.md | 24 +- .../Get-MgPrintTaskDefinitionTask.md | 24 +- .../examples/v1.0-beta/New-MgPrintShare.md | 25 +- .../New-MgPrintShareAllowedGroupByRef.md | 24 +- .../New-MgPrintShareAllowedUserByRef.md | 24 +- .../v1.0-beta/New-MgPrintTaskDefinition.md | 27 +- .../v1.0-beta/Remove-MgPrintConnector.md | 21 +- .../v1.0-beta/Remove-MgPrintPrinter.md | 21 +- ...ove-MgPrintPrinterShareAllowedUserByRef.md | 21 +- .../Remove-MgPrintPrinterTaskTrigger.md | 21 +- .../examples/v1.0-beta/Remove-MgPrintShare.md | 21 +- .../Remove-MgPrintShareAllowedGroupByRef.md | 21 +- .../v1.0-beta/Remove-MgPrintTaskDefinition.md | 21 +- .../Restore-MgPrintPrinterFactoryDefault.md | 21 +- .../v1.0-beta/Update-MgPrintConnector.md | 32 +- .../v1.0-beta/Update-MgPrintPrinter.md | 29 +- .../examples/v1.0-beta/Update-MgPrintShare.md | 26 +- .../v1.0-beta/Update-MgPrintTaskDefinition.md | 27 +- ...Get-MgServiceAnnouncementHealthOverview.md | 38 +- .../Get-MgServiceAnnouncementIssue.md | 24 +- .../Get-MgServiceAnnouncementMessage.md | 24 +- ...-MgServiceAnnouncementMessageAttachment.md | 24 +- ...iceAnnouncementMessageAttachmentArchive.md | 24 +- ...iceAnnouncementMessageAttachmentContent.md | 24 +- ...oke-MgArchiveServiceAnnouncementMessage.md | 27 +- ...ke-MgFavoriteServiceAnnouncementMessage.md | 27 +- ...ke-MgMarkServiceAnnouncementMessageRead.md | 27 +- ...-MgMarkServiceAnnouncementMessageUnread.md | 27 +- ...gReportServiceAnnouncementIssueIncident.md | 21 +- ...e-MgUnarchiveServiceAnnouncementMessage.md | 27 +- ...-MgUnfavoriteServiceAnnouncementMessage.md | 27 +- .../Confirm-MgDirectoryObjectMemberGroup.md | 30 +- .../v1.0-beta/Get-MgDirectoryObject.md | 21 +- .../v1.0-beta/Get-MgDirectoryObjectById.md | 34 +- .../Get-MgDirectoryObjectMemberGroup.md | 24 +- .../v1.0-beta/Remove-MgDirectoryObject.md | 21 +- .../Test-MgDirectoryObjectProperty.md | 27 +- .../v1.0-beta/Get-MgEducationClass.md | 24 +- .../Get-MgEducationClassAssignment.md | 38 +- .../Get-MgEducationClassAssignmentCategory.md | 24 +- ...MgEducationClassAssignmentCategoryDelta.md | 38 +- .../Get-MgEducationClassAssignmentDefault.md | 21 +- .../Get-MgEducationClassAssignmentDelta.md | 31 +- .../Get-MgEducationClassAssignmentResource.md | 59 +- .../Get-MgEducationClassAssignmentRubric.md | 21 +- .../Get-MgEducationClassAssignmentSetting.md | 21 +- ...et-MgEducationClassAssignmentSubmission.md | 52 +- ...ucationClassAssignmentSubmissionOutcome.md | 24 +- ...cationClassAssignmentSubmissionResource.md | 59 +- .../v1.0-beta/Get-MgEducationClassDelta.md | 21 +- .../v1.0-beta/Get-MgEducationClassGroup.md | 21 +- .../v1.0-beta/Get-MgEducationClassMember.md | 21 +- .../v1.0-beta/Get-MgEducationClassSchool.md | 21 +- .../v1.0-beta/Get-MgEducationClassTeacher.md | 21 +- .../v1.0-beta/Get-MgEducationMeAssignment.md | 21 +- .../v1.0-beta/Get-MgEducationMeClass.md | 21 +- .../v1.0-beta/Get-MgEducationMeRubric.md | 24 +- .../v1.0-beta/Get-MgEducationMeSchool.md | 21 +- .../v1.0-beta/Get-MgEducationSchool.md | 24 +- ...Get-MgEducationSchoolAdministrativeUnit.md | 21 +- .../v1.0-beta/Get-MgEducationSchoolClass.md | 21 +- .../v1.0-beta/Get-MgEducationSchoolDelta.md | 21 +- .../v1.0-beta/Get-MgEducationSchoolUser.md | 21 +- .../Get-MgEducationSynchronizationProfile.md | 24 +- ...-MgEducationSynchronizationProfileError.md | 21 +- ...MgEducationSynchronizationProfileStatus.md | 21 +- .../examples/v1.0-beta/Get-MgEducationUser.md | 24 +- .../Get-MgEducationUserAssignment.md | 24 +- .../v1.0-beta/Get-MgEducationUserDelta.md | 21 +- ...ssignEducationClassAssignmentSubmission.md | 24 +- ...eturnEducationClassAssignmentSubmission.md | 21 +- ...ubmitEducationClassAssignmentSubmission.md | 21 +- ...ploadEducationSynchronizationProfileUrl.md | 21 +- .../v1.0-beta/New-MgEducationClass.md | 30 +- .../New-MgEducationClassAssignment.md | 38 +- .../New-MgEducationClassAssignmentResource.md | 118 +++- ...ucationClassAssignmentSubmissionOutcome.md | 28 +- ...cationClassAssignmentSubmissionResource.md | 94 +++- .../New-MgEducationClassMemberByRef.md | 24 +- .../New-MgEducationClassTeacherByRef.md | 24 +- .../v1.0-beta/New-MgEducationMeRubric.md | 167 +++++- .../v1.0-beta/New-MgEducationSchool.md | 41 +- .../New-MgEducationSchoolClassByRef.md | 24 +- .../New-MgEducationSchoolUserByRef.md | 24 +- .../examples/v1.0-beta/New-MgEducationUser.md | 51 +- .../Publish-MgEducationClassAssignment.md | 21 +- .../v1.0-beta/Remove-MgEducationClass.md | 21 +- .../Remove-MgEducationClassAssignment.md | 21 +- ...move-MgEducationClassAssignmentCategory.md | 21 +- ...move-MgEducationClassAssignmentResource.md | 21 +- ...e-MgEducationClassAssignmentRubricByRef.md | 21 +- ...ucationClassAssignmentSubmissionOutcome.md | 21 +- ...cationClassAssignmentSubmissionResource.md | 21 +- .../v1.0-beta/Remove-MgEducationMeRubric.md | 21 +- .../v1.0-beta/Remove-MgEducationSchool.md | 21 +- ...emove-MgEducationSynchronizationProfile.md | 21 +- .../v1.0-beta/Remove-MgEducationUser.md | 21 +- ...Reset-MgEducationSynchronizationProfile.md | 21 +- ...esume-MgEducationSynchronizationProfile.md | 21 +- ...t-MgEducationClassAssignmentRubricByRef.md | 24 +- ...Start-MgEducationSynchronizationProfile.md | 21 +- ...it-MgEducationClassAssignmentSubmission.md | 21 +- ...spend-MgEducationSynchronizationProfile.md | 21 +- .../v1.0-beta/Update-MgEducationClass.md | 25 +- .../Update-MgEducationClassAssignment.md | 31 +- ...pdate-MgEducationClassAssignmentDefault.md | 26 +- ...pdate-MgEducationClassAssignmentSetting.md | 24 +- ...ucationClassAssignmentSubmissionOutcome.md | 48 +- .../v1.0-beta/Update-MgEducationMeRubric.md | 24 +- .../v1.0-beta/Update-MgEducationSchool.md | 25 +- .../v1.0-beta/Update-MgEducationUser.md | 61 ++- .../Files/examples/v1.0-beta/Get-MgDrive.md | 21 +- .../v1.0-beta/Get-MgDriveItemAnalytic.md | 21 +- .../v1.0-beta/Get-MgDriveItemChild.md | 21 +- .../v1.0-beta/Get-MgGroupDefaultDrive.md | 21 +- .../examples/v1.0-beta/Get-MgGroupDrive.md | 21 +- .../v1.0-beta/Get-MgShareDriveItem.md | 24 +- ...t-MgShareSharedDriveItemSharedDriveItem.md | 21 +- .../v1.0-beta/Get-MgUserDefaultDrive.md | 25 +- .../examples/v1.0-beta/Get-MgUserDrive.md | 25 +- .../v1.0-beta/Grant-MgSharePermission.md | 34 +- .../v1.0-beta/Invoke-MgCheckinDriveItem.md | 24 +- .../v1.0-beta/Invoke-MgCheckoutDriveItem.md | 21 +- .../v1.0-beta/Restore-MgDriveItemVersion.md | 21 +- .../examples/v1.0-beta/Add-MgGroupFavorite.md | 21 +- .../v1.0-beta/Get-MgGroupAcceptedSender.md | 21 +- .../v1.0-beta/Get-MgGroupConversation.md | 31 +- .../Get-MgGroupConversationThread.md | 21 +- .../examples/v1.0-beta/Get-MgGroupDelta.md | 24 +- .../examples/v1.0-beta/Get-MgGroupEndpoint.md | 24 +- .../v1.0-beta/Get-MgGroupLifecyclePolicy.md | 24 +- .../Get-MgGroupLifecyclePolicyByGroup.md | 21 +- .../examples/v1.0-beta/Get-MgGroupMemberOf.md | 21 +- .../v1.0-beta/Get-MgGroupPermissionGrant.md | 21 +- .../examples/v1.0-beta/Get-MgGroupPhoto.md | 21 +- .../v1.0-beta/Get-MgGroupRejectedSender.md | 21 +- .../examples/v1.0-beta/Get-MgGroupThread.md | 31 +- .../v1.0-beta/Get-MgGroupThreadPost.md | 21 +- .../Get-MgGroupThreadPostAttachment.md | 21 +- .../Get-MgGroupThreadPostExtension.md | 21 +- .../v1.0-beta/Get-MgGroupTransitiveMember.md | 21 +- .../Get-MgGroupTransitiveMemberOf.md | 21 +- .../Invoke-MgForwardGroupThreadPost.md | 32 +- .../examples/v1.0-beta/Invoke-MgGraphGroup.md | 21 +- .../examples/v1.0-beta/Invoke-MgRenewGroup.md | 21 +- .../Invoke-MgRenewGroupLifecyclePolicy.md | 24 +- .../v1.0-beta/Invoke-MgReplyGroupThread.md | 97 +++- .../Invoke-MgReplyGroupThreadPost.md | 97 +++- .../Invoke-MgSubscribeGroupByMail.md | 21 +- .../New-MgGroupAcceptedSenderByRef.md | 24 +- .../v1.0-beta/New-MgGroupConversation.md | 75 ++- .../New-MgGroupConversationThread.md | 32 +- .../v1.0-beta/New-MgGroupLifecyclePolicy.md | 26 +- .../v1.0-beta/New-MgGroupMemberByRef.md | 24 +- .../New-MgGroupRejectedSenderByRef.md | 24 +- .../examples/v1.0-beta/New-MgGroupSetting.md | 30 +- .../examples/v1.0-beta/New-MgGroupThread.md | 40 +- .../v1.0-beta/Remove-MgGroupConversation.md | 24 +- .../v1.0-beta/Remove-MgGroupFavorite.md | 21 +- .../Remove-MgGroupLifecyclePolicy.md | 21 +- .../v1.0-beta/Remove-MgGroupMemberByRef.md | 21 +- .../v1.0-beta/Remove-MgGroupOwnerByRef.md | 21 +- .../v1.0-beta/Remove-MgGroupThread.md | 24 +- .../v1.0-beta/Reset-MgGroupUnseenCount.md | 21 +- .../examples/v1.0-beta/Set-MgGroupLicense.md | 51 +- .../Test-MgGroupDynamicMembership.md | 24 +- .../Test-MgGroupDynamicMembershipRule.md | 25 +- .../v1.0-beta/Test-MgGroupProperty.md | 26 +- .../Update-MgGroupLifecyclePolicy.md | 26 +- .../v1.0-beta/Update-MgGroupThread.md | 28 +- .../Update-MgGroupThreadPostExtension.md | 33 +- .../examples/v1.0-beta/Confirm-MgDomain.md | 21 +- .../Get-MgAdministrativeUnitDelta.md | 21 +- ...et-MgAdministrativeUnitScopedRoleMember.md | 24 +- .../examples/v1.0-beta/Get-MgContactDelta.md | 21 +- .../v1.0-beta/Get-MgContactDirectReport.md | 21 +- .../v1.0-beta/Get-MgContactManager.md | 21 +- .../v1.0-beta/Get-MgContactMemberOf.md | 21 +- .../examples/v1.0-beta/Get-MgContract.md | 24 +- .../examples/v1.0-beta/Get-MgDevice.md | 52 +- .../v1.0-beta/Get-MgDeviceMemberOf.md | 21 +- .../v1.0-beta/Get-MgDeviceRegisteredOwner.md | 21 +- .../v1.0-beta/Get-MgDeviceRegisteredUser.md | 21 +- .../Get-MgDeviceTransitiveMemberOf.md | 21 +- .../v1.0-beta/Get-MgDeviceUsageRights.md | 24 +- .../v1.0-beta/Get-MgDirectoryAttributeSet.md | 38 +- ...ectoryCustomSecurityAttributeDefinition.md | 38 +- ...SecurityAttributeDefinitionAllowedValue.md | 24 +- .../Get-MgDirectoryFederationConfiguration.md | 24 +- .../v1.0-beta/Get-MgDirectoryRoleDelta.md | 21 +- .../Get-MgDirectoryRoleScopedMember.md | 24 +- .../v1.0-beta/Get-MgDirectoryRoleTemplate.md | 24 +- .../v1.0-beta/Get-MgDirectorySetting.md | 24 +- .../Get-MgDirectorySettingTemplate.md | 24 +- .../v1.0-beta/Get-MgDomainNameReference.md | 21 +- .../Get-MgDomainServiceConfigurationRecord.md | 21 +- .../Get-MgDomainVerificationDnsRecord.md | 21 +- .../examples/v1.0-beta/Get-MgOrganization.md | 24 +- .../v1.0-beta/Get-MgOrganizationBranding.md | 31 +- .../Get-MgOrganizationBrandingLocalization.md | 24 +- ...anizationBrandingLocalizationBannerLogo.md | 31 +- .../v1.0-beta/Get-MgOrganizationSetting.md | 21 +- .../Get-MgOrganizationSettingItemInsight.md | 21 +- ...onSettingMicrosoftApplicationDataAccess.md | 21 +- .../Get-MgOrganizationSettingPersonInsight.md | 21 +- ...gOrganizationSettingProfileCardProperty.md | 24 +- .../v1.0-beta/Get-MgUserScopedRoleMemberOf.md | 22 +- .../Initialize-MgOrganizationService.md | 25 +- .../v1.0-beta/Invoke-MgForceDomainDelete.md | 24 +- .../v1.0-beta/Invoke-MgPromoteDomain.md | 21 +- .../v1.0-beta/New-MgAdministrativeUnit.md | 22 +- .../New-MgAdministrativeUnitMemberByRef.md | 24 +- ...ew-MgAdministrativeUnitScopedRoleMember.md | 27 +- .../examples/v1.0-beta/New-MgDevice.md | 35 +- .../New-MgDeviceRegisteredOwnerByRef.md | 24 +- .../New-MgDeviceRegisteredUserByRef.md | 10 + .../v1.0-beta/New-MgDirectoryAttributeSet.md | 26 +- ...ectoryCustomSecurityAttributeDefinition.md | 75 ++- ...SecurityAttributeDefinitionAllowedValue.md | 25 +- .../New-MgDirectoryFederationConfiguration.md | 36 +- .../examples/v1.0-beta/New-MgDirectoryRole.md | 24 +- .../v1.0-beta/New-MgDirectorySetting.md | 42 +- .../examples/v1.0-beta/New-MgDomain.md | 24 +- .../New-MgOrganizationBrandingLocalization.md | 26 +- ...gOrganizationSettingProfileCardProperty.md | 35 +- ...ve-MgAdministrativeUnitScopedRoleMember.md | 21 +- .../examples/v1.0-beta/Remove-MgDevice.md | 21 +- .../Remove-MgDeviceRegisteredOwnerByRef.md | 21 +- .../Remove-MgDirectoryDeletedItem.md | 21 +- ...move-MgDirectoryFederationConfiguration.md | 21 +- .../Remove-MgDirectoryRoleMemberByRef.md | 21 +- .../v1.0-beta/Remove-MgDirectorySetting.md | 21 +- .../examples/v1.0-beta/Remove-MgDomain.md | 21 +- ...move-MgOrganizationBrandingLocalization.md | 21 +- ...gOrganizationSettingProfileCardProperty.md | 21 +- .../Restore-MgDirectoryDeletedItem.md | 21 +- .../examples/v1.0-beta/Update-MgDevice.md | 32 +- .../Update-MgDirectoryAttributeSet.md | 25 +- ...ectoryCustomSecurityAttributeDefinition.md | 41 +- ...SecurityAttributeDefinitionAllowedValue.md | 24 +- .../v1.0-beta/Update-MgDirectorySetting.md | 29 +- .../examples/v1.0-beta/Update-MgDomain.md | 28 +- .../v1.0-beta/Update-MgOrganization.md | 39 +- .../Update-MgOrganizationBranding.md | 25 +- ...date-MgOrganizationBrandingLocalization.md | 32 +- ...Update-MgOrganizationSettingItemInsight.md | 24 +- ...onSettingMicrosoftApplicationDataAccess.md | 24 +- ...date-MgOrganizationSettingPersonInsight.md | 25 +- ...gOrganizationSettingProfileCardProperty.md | 33 +- .../v1.0-beta/Add-MgAccessReviewDecision.md | 21 +- ...eAccessReviewDefinitionInstanceDecision.md | 21 +- .../examples/v1.0-beta/Get-MgAccessReview.md | 24 +- .../v1.0-beta/Get-MgAccessReviewDecision.md | 21 +- .../v1.0-beta/Get-MgAccessReviewMyDecision.md | 21 +- .../v1.0-beta/Get-MgAccessReviewReviewer.md | 21 +- .../v1.0-beta/Get-MgBusinessFlowTemplate.md | 21 +- ...ccessPackageApplicablePolicyRequirement.md | 21 +- ...lementManagementAccessPackageAssignment.md | 31 +- ...mentAccessPackageAssignmentResourceRole.md | 24 +- ...logCustomAccessPackageWorkflowExtension.md | 24 +- ...tAccessPackageIncompatibleAccessPackage.md | 21 +- ...anagementAccessPackageIncompatibleGroup.md | 21 +- ...ManagementAccessPackageIncompatibleWith.md | 21 +- ...agementAccessPackageResourceEnvironment.md | 24 +- ...itlementManagementConnectedOrganization.md | 24 +- ...entConnectedOrganizationExternalSponsor.md | 21 +- ...entConnectedOrganizationInternalSponsor.md | 21 +- ...gIdentityGovernanceAccessReviewDecision.md | 21 +- ...dentityGovernanceAccessReviewDefinition.md | 38 +- ...overnanceAccessReviewDefinitionInstance.md | 31 +- ...viewDefinitionInstanceContactedReviewer.md | 21 +- ...eAccessReviewDefinitionInstanceDecision.md | 38 +- ...anceAccessReviewDefinitionInstanceStage.md | 31 +- ...ssReviewDefinitionInstanceStageDecision.md | 31 +- ...GovernanceAccessReviewHistoryDefinition.md | 24 +- ...ceAccessReviewHistoryDefinitionInstance.md | 21 +- ...-MgIdentityGovernanceAccessReviewPolicy.md | 21 +- ...t-MgIdentityGovernanceAppConsentRequest.md | 38 +- ...anceAppConsentRequestUserConsentRequest.md | 31 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 38 +- ...dentityGovernanceTermOfUseAgreementFile.md | 21 +- .../Get-MgPrivilegedAccessResource.md | 21 +- .../Get-MgPrivilegedAccessRoleSetting.md | 21 +- .../v1.0-beta/Get-MgPrivilegedApproval.md | 24 +- .../Get-MgPrivilegedOperationEvent.md | 38 +- .../v1.0-beta/Get-MgPrivilegedRole.md | 24 +- .../Get-MgPrivilegedRoleAssignmentRequest.md | 21 +- .../Get-MgPrivilegedRoleRoleAssignment.md | 45 +- .../v1.0-beta/Get-MgPrivilegedRoleSetting.md | 21 +- .../v1.0-beta/Get-MgPrivilegedRoleSummary.md | 21 +- .../examples/v1.0-beta/Get-MgProgram.md | 21 +- .../v1.0-beta/Get-MgProgramControl.md | 21 +- .../v1.0-beta/Get-MgProgramControlType.md | 21 +- .../Get-MgUserAgreementAcceptance.md | 22 +- .../Invoke-MgMyPrivilegedApprovalRequest.md | 21 +- .../Invoke-MgMyPrivilegedRoleAssignment.md | 21 +- ...oke-MgMyPrivilegedRoleAssignmentRequest.md | 21 +- .../Invoke-MgSelfPrivilegedRoleActivate.md | 27 +- .../Invoke-MgSelfPrivilegedRoleDeactivate.md | 21 +- .../examples/v1.0-beta/New-MgAccessReview.md | 58 +- .../v1.0-beta/New-MgAccessReviewReviewer.md | 24 +- ...titlementManagementAccessPackageCatalog.md | 26 +- ...logCustomAccessPackageWorkflowExtension.md | 35 +- ...ssPackageIncompatibleAccessPackageByRef.md | 24 +- ...itlementManagementConnectedOrganization.md | 33 +- ...nnectedOrganizationExternalSponsorByRef.md | 24 +- ...nnectedOrganizationInternalSponsorByRef.md | 24 +- ...dentityGovernanceAccessReviewDefinition.md | 292 +++++++++- ...GovernanceAccessReviewHistoryDefinition.md | 59 +- ...iewHistoryDefinitionInstanceDownloadUri.md | 21 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 35 +- ...MgPrivilegedAccessRoleAssignmentRequest.md | 120 ++++- .../v1.0-beta/New-MgPrivilegedApproval.md | 28 +- .../New-MgPrivilegedRoleAssignment.md | 25 +- .../New-MgPrivilegedRoleAssignmentEligible.md | 21 +- ...New-MgPrivilegedRoleAssignmentPermanent.md | 26 +- .../New-MgPrivilegedRoleAssignmentRequest.md | 33 +- .../examples/v1.0-beta/New-MgProgram.md | 25 +- .../v1.0-beta/New-MgProgramControl.md | 26 +- .../v1.0-beta/Remove-MgAccessReview.md | 21 +- .../Remove-MgAccessReviewReviewer.md | 21 +- ...anagementAccessPackageAssignmentRequest.md | 21 +- ...titlementManagementAccessPackageCatalog.md | 21 +- ...logCustomAccessPackageWorkflowExtension.md | 21 +- ...ssPackageIncompatibleAccessPackageByRef.md | 21 +- ...mentAccessPackageIncompatibleGroupByRef.md | 21 +- ...itlementManagementConnectedOrganization.md | 21 +- ...nnectedOrganizationExternalSponsorByRef.md | 21 +- ...nnectedOrganizationInternalSponsorByRef.md | 21 +- ...dentityGovernanceAccessReviewDefinition.md | 21 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 21 +- .../Remove-MgPrivilegedRoleAssignment.md | 21 +- .../examples/v1.0-beta/Remove-MgProgram.md | 21 +- .../v1.0-beta/Remove-MgProgramControl.md | 21 +- .../v1.0-beta/Reset-MgAccessReviewDecision.md | 21 +- ...eAccessReviewDefinitionInstanceDecision.md | 21 +- .../v1.0-beta/Send-MgAccessReviewReminder.md | 21 +- ...eAccessReviewDefinitionInstanceReminder.md | 21 +- .../examples/v1.0-beta/Stop-MgAccessReview.md | 21 +- ...overnanceAccessReviewDefinitionInstance.md | 21 +- ...anceAccessReviewDefinitionInstanceStage.md | 21 +- ...MgPrivilegedAccessRoleAssignmentRequest.md | 21 +- .../Stop-MgPrivilegedRoleAssignmentRequest.md | 21 +- .../v1.0-beta/Update-MgAccessReview.md | 24 +- ...te-MgEntitlementManagementAccessPackage.md | 24 +- ...mentAccessPackageAssignmentApprovalStep.md | 21 +- ...titlementManagementAccessPackageCatalog.md | 24 +- ...itlementManagementConnectedOrganization.md | 26 +- .../Update-MgEntitlementManagementSetting.md | 24 +- ...overnanceAccessReviewDefinitionInstance.md | 61 ++- ...anceAccessReviewDefinitionInstanceStage.md | 40 +- ...ssReviewDefinitionInstanceStageDecision.md | 43 +- ...-MgIdentityGovernanceAccessReviewPolicy.md | 24 +- ...-MgIdentityGovernanceTermOfUseAgreement.md | 25 +- .../Update-MgPrivilegedAccessRoleSetting.md | 29 +- .../v1.0-beta/Update-MgPrivilegedApproval.md | 25 +- .../examples/v1.0-beta/Update-MgProgram.md | 24 +- ...firm-MgRiskyServicePrincipalCompromised.md | 26 +- .../v1.0-beta/Get-MgDataPolicyOperation.md | 21 +- .../v1.0-beta/Get-MgIdentityApiConnector.md | 24 +- .../v1.0-beta/Get-MgIdentityB2CUserFlow.md | 31 +- ...t-MgIdentityB2CUserFlowIdentityProvider.md | 21 +- .../Get-MgIdentityB2CUserFlowLanguage.md | 31 +- ...gIdentityB2CUserFlowLanguageDefaultPage.md | 21 +- ...tyB2CUserFlowLanguageDefaultPageContent.md | 21 +- ...IdentityB2CUserFlowLanguageOverridePage.md | 21 +- ...ntityB2CUserFlowUserAttributeAssignment.md | 38 +- ...B2CUserFlowUserAttributeAssignmentOrder.md | 21 +- .../v1.0-beta/Get-MgIdentityB2XUserFlow.md | 31 +- ...t-MgIdentityB2XUserFlowIdentityProvider.md | 21 +- .../Get-MgIdentityB2XUserFlowLanguage.md | 21 +- ...ntityB2XUserFlowUserAttributeAssignment.md | 24 +- ...cessAuthenticationContextClassReference.md | 31 +- ...IdentityContinuouAccessEvaluationPolicy.md | 21 +- .../v1.0-beta/Get-MgIdentityProvider.md | 80 ++- .../v1.0-beta/Get-MgIdentityUserFlow.md | 24 +- .../Get-MgIdentityUserFlowAttribute.md | 24 +- ...formationProtectionBitlockerRecoveryKey.md | 38 +- ...mationProtectionThreatAssessmentRequest.md | 52 +- .../v1.0-beta/Get-MgOauth2PermissionGrant.md | 24 +- .../Get-MgOauth2PermissionGrantDelta.md | 21 +- ...zationCertificateBasedAuthConfiguration.md | 24 +- .../Get-MgPolicyAccessReviewPolicy.md | 21 +- .../Get-MgPolicyActivityBasedTimeoutPolicy.md | 24 +- .../Get-MgPolicyAdminConsentRequestPolicy.md | 21 +- .../Get-MgPolicyAppManagementPolicy.md | 24 +- .../Get-MgPolicyAppManagementPolicyApplyTo.md | 24 +- .../Get-MgPolicyAuthenticationFlowPolicy.md | 21 +- .../Get-MgPolicyAuthenticationMethodPolicy.md | 21 +- ...PolicyAuthenticationMethodConfiguration.md | 59 +- ...t-MgPolicyB2CAuthenticationMethodPolicy.md | 21 +- .../Get-MgPolicyClaimMappingPolicy.md | 24 +- .../Get-MgPolicyCrossTenantAccessPolicy.md | 21 +- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 21 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 24 +- .../Get-MgPolicyDefaultAppManagementPolicy.md | 21 +- .../Get-MgPolicyDeviceRegistrationPolicy.md | 21 +- .../Get-MgPolicyExternalIdentityPolicy.md | 21 +- .../Get-MgPolicyFeatureRolloutPolicy.md | 31 +- .../Get-MgPolicyHomeRealmDiscoveryPolicy.md | 24 +- ...dentitySecurityDefaultEnforcementPolicy.md | 21 +- .../Get-MgPolicyMobileAppManagementPolicy.md | 24 +- ...yMobileAppManagementPolicyIncludedGroup.md | 24 +- ...et-MgPolicyMobileDeviceManagementPolicy.md | 38 +- ...bileDeviceManagementPolicyIncludedGroup.md | 21 +- .../Get-MgPolicyPermissionGrantPolicy.md | 24 +- ...et-MgPolicyPermissionGrantPolicyExclude.md | 21 +- ...et-MgPolicyPermissionGrantPolicyInclude.md | 21 +- .../Get-MgPolicyRoleManagementPolicy.md | 24 +- ...-MgPolicyRoleManagementPolicyAssignment.md | 24 +- ...PolicyRoleManagementPolicyEffectiveRule.md | 21 +- .../Get-MgPolicyRoleManagementPolicyRule.md | 31 +- .../Get-MgPolicyTokenIssuancePolicy.md | 24 +- .../Get-MgPolicyTokenLifetimePolicy.md | 24 +- .../v1.0-beta/Get-MgRiskyServicePrincipal.md | 24 +- .../Get-MgRiskyServicePrincipalHistory.md | 21 +- .../Get-MgServicePrincipalRiskDetection.md | 31 +- .../v1.0-beta/Get-MgTrustFrameworkKeySet.md | 24 +- .../Get-MgTrustFrameworkKeySetActiveKey.md | 21 +- .../v1.0-beta/Get-MgTrustFrameworkPolicy.md | 21 +- .../Get-MgUserAuthenticationEmailMethod.md | 26 +- .../Get-MgUserAuthenticationFido2Method.md | 26 +- .../Get-MgUserAuthenticationMethod.md | 26 +- ...henticationMicrosoftAuthenticatorMethod.md | 21 +- .../Get-MgUserAuthenticationOperation.md | 21 +- .../Get-MgUserAuthenticationPasswordMethod.md | 26 +- ...asswordlessMicrosoftAuthenticatorMethod.md | 26 +- .../Get-MgUserAuthenticationPhoneMethod.md | 26 +- ...-MgUserAuthenticationSoftwareOathMethod.md | 26 +- ...AuthenticationTemporaryAccessPassMethod.md | 24 +- ...henticationWindowHelloForBusinessMethod.md | 24 +- ...-MgUserInformationProtectionPolicyLabel.md | 26 +- .../Invoke-MgAvailableIdentityProviderType.md | 31 +- .../Invoke-MgDismissRiskyServicePrincipal.md | 26 +- .../v1.0-beta/Invoke-MgDismissRiskyUser.md | 27 +- ...ExtractInformationProtectionPolicyLabel.md | 69 ++- ...adIdentityApiConnectorClientCertificate.md | 25 +- ...MgUploadTrustFrameworkKeySetCertificate.md | 24 +- ...voke-MgUploadTrustFrameworkKeySetPkcs12.md | 25 +- ...voke-MgUploadTrustFrameworkKeySetSecret.md | 27 +- .../v1.0-beta/New-MgIdentityApiConnector.md | 58 +- .../v1.0-beta/New-MgIdentityB2CUserFlow.md | 59 +- ...dentityB2CUserFlowIdentityProviderByRef.md | 24 +- ...ntityB2CUserFlowUserAttributeAssignment.md | 32 +- .../v1.0-beta/New-MgIdentityB2XUserFlow.md | 61 ++- ...ntityB2XUserFlowUserAttributeAssignment.md | 32 +- ...cessAuthenticationContextClassReference.md | 27 +- .../v1.0-beta/New-MgIdentityProvider.md | 90 +++- .../v1.0-beta/New-MgIdentityUserFlow.md | 26 +- .../New-MgIdentityUserFlowAttribute.md | 26 +- ...mationProtectionThreatAssessmentRequest.md | 65 ++- .../v1.0-beta/New-MgOauth2PermissionGrant.md | 29 +- .../New-MgPolicyActivityBasedTimeoutPolicy.md | 28 +- .../New-MgPolicyClaimMappingPolicy.md | 27 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 46 +- .../New-MgPolicyFeatureRolloutPolicy.md | 28 +- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 24 +- .../New-MgPolicyHomeRealmDiscoveryPolicy.md | 28 +- ...leAppManagementPolicyIncludedGroupByRef.md | 24 +- ...eviceManagementPolicyIncludedGroupByRef.md | 30 +- .../New-MgPolicyPermissionGrantPolicy.md | 26 +- ...ew-MgPolicyPermissionGrantPolicyExclude.md | 25 +- ...ew-MgPolicyPermissionGrantPolicyInclude.md | 43 +- .../New-MgPolicyTokenIssuancePolicy.md | 28 +- .../New-MgPolicyTokenLifetimePolicy.md | 28 +- .../v1.0-beta/New-MgTrustFrameworkKeySet.md | 52 +- .../New-MgTrustFrameworkKeySetKey.md | 27 +- .../New-MgUserAuthenticationEmailMethod.md | 24 +- .../New-MgUserAuthenticationPhoneMethod.md | 26 +- ...AuthenticationTemporaryAccessPassMethod.md | 26 +- .../Remove-MgIdentityApiConnector.md | 21 +- .../v1.0-beta/Remove-MgIdentityB2CUserFlow.md | 21 +- ...dentityB2CUserFlowIdentityProviderByRef.md | 21 +- .../Remove-MgIdentityB2CUserFlowLanguage.md | 21 +- ...ntityB2CUserFlowUserAttributeAssignment.md | 21 +- .../v1.0-beta/Remove-MgIdentityB2XUserFlow.md | 21 +- ...dentityB2XUserFlowIdentityProviderByRef.md | 24 +- .../v1.0-beta/Remove-MgIdentityProvider.md | 24 +- .../v1.0-beta/Remove-MgIdentityUserFlow.md | 21 +- .../Remove-MgIdentityUserFlowAttribute.md | 21 +- .../Remove-MgOauth2PermissionGrant.md | 21 +- ...move-MgPolicyActivityBasedTimeoutPolicy.md | 21 +- .../Remove-MgPolicyAppManagementPolicy.md | 21 +- ...PolicyAuthenticationMethodConfiguration.md | 59 +- .../Remove-MgPolicyClaimMappingPolicy.md | 21 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 21 +- .../Remove-MgPolicyFeatureRolloutPolicy.md | 21 +- ...gPolicyFeatureRolloutPolicyApplyToByRef.md | 21 +- ...Remove-MgPolicyHomeRealmDiscoveryPolicy.md | 21 +- ...emove-MgPolicyMobileAppManagementPolicy.md | 21 +- ...leAppManagementPolicyIncludedGroupByRef.md | 21 +- ...ve-MgPolicyMobileDeviceManagementPolicy.md | 24 +- ...eviceManagementPolicyIncludedGroupByRef.md | 21 +- .../Remove-MgPolicyPermissionGrantPolicy.md | 21 +- ...ve-MgPolicyPermissionGrantPolicyExclude.md | 21 +- ...ve-MgPolicyPermissionGrantPolicyInclude.md | 21 +- .../Remove-MgPolicyTokenIssuancePolicy.md | 21 +- .../Remove-MgPolicyTokenLifetimePolicy.md | 21 +- .../Remove-MgTrustFrameworkKeySet.md | 21 +- .../Remove-MgTrustFrameworkPolicy.md | 21 +- .../Remove-MgUserAuthenticationEmailMethod.md | 21 +- .../Remove-MgUserAuthenticationFido2Method.md | 21 +- ...henticationMicrosoftAuthenticatorMethod.md | 21 +- ...asswordlessMicrosoftAuthenticatorMethod.md | 21 +- .../Remove-MgUserAuthenticationPhoneMethod.md | 22 +- ...-MgUserAuthenticationSoftwareOathMethod.md | 21 +- ...AuthenticationTemporaryAccessPassMethod.md | 21 +- ...henticationWindowHelloForBusinessMethod.md | 21 +- ...enantAccessPolicyDefaultToSystemDefault.md | 21 +- ...yB2CUserFlowLanguageOverridePageContent.md | 25 +- ...B2CUserFlowUserAttributeAssignmentOrder.md | 29 +- ...rmationProtectionPolicyLabelApplication.md | 80 ++- ...otectionPolicyLabelClassificationResult.md | 38 +- ...InformationProtectionPolicyLabelRemoval.md | 73 ++- .../Update-MgIdentityApiConnector.md | 54 +- .../v1.0-beta/Update-MgIdentityB2CUserFlow.md | 25 +- ...ntityB2CUserFlowUserAttributeAssignment.md | 24 +- ...cessAuthenticationContextClassReference.md | 25 +- ...IdentityContinuouAccessEvaluationPolicy.md | 25 +- .../v1.0-beta/Update-MgIdentityProvider.md | 64 ++- .../Update-MgIdentityUserFlowAttribute.md | 24 +- .../Update-MgOauth2PermissionGrant.md | 24 +- .../Update-MgPolicyAccessReviewPolicy.md | 24 +- ...date-MgPolicyActivityBasedTimeoutPolicy.md | 28 +- ...Update-MgPolicyAuthenticationFlowPolicy.md | 26 +- ...date-MgPolicyAuthenticationMethodPolicy.md | 38 +- ...PolicyAuthenticationMethodConfiguration.md | 94 +++- .../Update-MgPolicyClaimMappingPolicy.md | 24 +- .../Update-MgPolicyCrossTenantAccessPolicy.md | 27 +- ...-MgPolicyCrossTenantAccessPolicyDefault.md | 43 +- ...-MgPolicyCrossTenantAccessPolicyPartner.md | 28 +- ...date-MgPolicyDefaultAppManagementPolicy.md | 60 ++- .../Update-MgPolicyFeatureRolloutPolicy.md | 27 +- ...Update-MgPolicyHomeRealmDiscoveryPolicy.md | 28 +- ...dentitySecurityDefaultEnforcementPolicy.md | 24 +- ...pdate-MgPolicyMobileAppManagementPolicy.md | 36 +- ...te-MgPolicyMobileDeviceManagementPolicy.md | 27 +- .../Update-MgPolicyPermissionGrantPolicy.md | 24 +- ...Update-MgPolicyRoleManagementPolicyRule.md | 39 +- .../Update-MgPolicyTokenIssuancePolicy.md | 28 +- .../Update-MgPolicyTokenLifetimePolicy.md | 28 +- .../Update-MgUserAuthenticationEmailMethod.md | 24 +- .../Update-MgUserAuthenticationPhoneMethod.md | 26 +- ...t-MgUserInferenceClassificationOverride.md | 22 +- .../v1.0-beta/Get-MgUserMailFolder.md | 34 +- .../Get-MgUserMailFolderChildFolder.md | 26 +- .../v1.0-beta/Get-MgUserMailFolderMessage.md | 22 +- .../Get-MgUserMailFolderMessageRule.md | 26 +- .../examples/v1.0-beta/Get-MgUserMessage.md | 74 ++- .../v1.0-beta/Get-MgUserMessageAttachment.md | 34 +- .../v1.0-beta/Get-MgUserMessageExtension.md | 22 +- ...w-MgUserInferenceClassificationOverride.md | 29 +- .../v1.0-beta/New-MgUserMailFolder.md | 26 +- .../New-MgUserMailFolderChildFolder.md | 39 +- .../v1.0-beta/New-MgUserMailFolderMessage.md | 33 +- .../New-MgUserMailFolderMessageRule.md | 43 +- .../examples/v1.0-beta/New-MgUserMessage.md | 123 ++++- .../v1.0-beta/New-MgUserMessageAttachment.md | 71 ++- .../v1.0-beta/New-MgUserMessageExtension.md | 29 +- ...e-MgUserInferenceClassificationOverride.md | 22 +- .../v1.0-beta/Remove-MgUserMailFolder.md | 22 +- .../Remove-MgUserMailFolderMessageRule.md | 22 +- .../v1.0-beta/Remove-MgUserMessage.md | 26 +- .../Remove-MgUserMessageExtension.md | 22 +- .../v1.0-beta/Remove-MgUserMessageMention.md | 22 +- ...e-MgUserInferenceClassificationOverride.md | 25 +- .../v1.0-beta/Update-MgUserMailFolder.md | 33 +- .../Update-MgUserMailFolderMessageRule.md | 28 +- .../v1.0-beta/Update-MgUserMessage.md | 37 +- .../v1.0-beta/Get-MgUserOnenoteNotebook.md | 34 +- .../Get-MgUserOnenoteNotebookSection.md | 22 +- .../Get-MgUserOnenoteNotebookSectionGroup.md | 22 +- .../v1.0-beta/Get-MgUserOnenoteOperation.md | 22 +- .../v1.0-beta/Get-MgUserOnenoteSection.md | 26 +- .../Get-MgUserOnenoteSectionGroup.md | 26 +- .../Get-MgUserOnenoteSectionGroupSection.md | 22 +- .../v1.0-beta/New-MgUserOnenoteNotebook.md | 25 +- .../New-MgUserOnenoteNotebookSection.md | 25 +- .../New-MgUserOnenoteNotebookSectionGroup.md | 25 +- .../New-MgUserOnenoteSectionGroup.md | 25 +- .../New-MgUserOnenoteSectionGroupSection.md | 25 +- .../v1.0-beta/Remove-MgUserOnenotePage.md | 22 +- .../v1.0-beta/Get-MgUserActivityStatistics.md | 22 +- .../examples/v1.0-beta/Get-MgUserPerson.md | 22 +- .../examples/v1.0-beta/Get-MgUserProfile.md | 26 +- .../v1.0-beta/Get-MgUserProfileAccount.md | 26 +- .../v1.0-beta/Get-MgUserProfileAddress.md | 26 +- .../v1.0-beta/Get-MgUserProfileAnniversary.md | 26 +- .../v1.0-beta/Get-MgUserProfileAward.md | 26 +- .../Get-MgUserProfileCertification.md | 26 +- .../Get-MgUserProfileEducationalActivity.md | 26 +- .../v1.0-beta/Get-MgUserProfileEmail.md | 25 +- .../v1.0-beta/Get-MgUserProfileInterest.md | 26 +- .../v1.0-beta/Get-MgUserProfileLanguage.md | 26 +- .../v1.0-beta/Get-MgUserProfileName.md | 26 +- .../v1.0-beta/Get-MgUserProfileNote.md | 26 +- .../v1.0-beta/Get-MgUserProfilePatent.md | 26 +- .../v1.0-beta/Get-MgUserProfilePhone.md | 26 +- .../v1.0-beta/Get-MgUserProfilePosition.md | 26 +- .../v1.0-beta/Get-MgUserProfileProject.md | 26 +- .../v1.0-beta/Get-MgUserProfilePublication.md | 26 +- .../v1.0-beta/Get-MgUserProfileSkill.md | 26 +- .../v1.0-beta/Get-MgUserProfileWebAccount.md | 26 +- .../v1.0-beta/Get-MgUserProfileWebsite.md | 26 +- .../v1.0-beta/New-MgUserProfileAccount.md | 26 +- .../v1.0-beta/New-MgUserProfileAddress.md | 34 +- .../v1.0-beta/New-MgUserProfileAnniversary.md | 26 +- .../v1.0-beta/New-MgUserProfileAward.md | 30 +- .../New-MgUserProfileCertification.md | 29 +- .../New-MgUserProfileEducationalActivity.md | 52 +- .../v1.0-beta/New-MgUserProfileEmail.md | 25 +- .../v1.0-beta/New-MgUserProfileInterest.md | 30 +- .../v1.0-beta/New-MgUserProfileLanguage.md | 29 +- .../v1.0-beta/New-MgUserProfileName.md | 30 +- .../v1.0-beta/New-MgUserProfileNote.md | 29 +- .../v1.0-beta/New-MgUserProfilePatent.md | 29 +- .../v1.0-beta/New-MgUserProfilePhone.md | 26 +- .../v1.0-beta/New-MgUserProfilePosition.md | 42 +- .../v1.0-beta/New-MgUserProfileProject.md | 44 +- .../v1.0-beta/New-MgUserProfilePublication.md | 30 +- .../v1.0-beta/New-MgUserProfileSkill.md | 33 +- .../v1.0-beta/New-MgUserProfileWebAccount.md | 30 +- .../v1.0-beta/New-MgUserProfileWebsite.md | 29 +- .../v1.0-beta/Remove-MgUserProfile.md | 22 +- .../v1.0-beta/Remove-MgUserProfileAccount.md | 22 +- .../v1.0-beta/Remove-MgUserProfileAddress.md | 21 +- .../Remove-MgUserProfileAnniversary.md | 22 +- .../v1.0-beta/Remove-MgUserProfileAward.md | 21 +- .../Remove-MgUserProfileCertification.md | 21 +- ...Remove-MgUserProfileEducationalActivity.md | 22 +- .../v1.0-beta/Remove-MgUserProfileEmail.md | 22 +- .../v1.0-beta/Remove-MgUserProfileInterest.md | 22 +- .../v1.0-beta/Remove-MgUserProfileLanguage.md | 22 +- .../v1.0-beta/Remove-MgUserProfileName.md | 22 +- .../v1.0-beta/Remove-MgUserProfileNote.md | 21 +- .../v1.0-beta/Remove-MgUserProfilePatent.md | 21 +- .../v1.0-beta/Remove-MgUserProfilePhone.md | 21 +- .../v1.0-beta/Remove-MgUserProfilePosition.md | 22 +- .../v1.0-beta/Remove-MgUserProfileProject.md | 22 +- .../Remove-MgUserProfilePublication.md | 22 +- .../v1.0-beta/Remove-MgUserProfileSkill.md | 22 +- .../Remove-MgUserProfileWebAccount.md | 22 +- .../v1.0-beta/Remove-MgUserProfileWebsite.md | 22 +- .../v1.0-beta/Update-MgUserProfileAccount.md | 25 +- .../v1.0-beta/Update-MgUserProfileAddress.md | 25 +- .../Update-MgUserProfileAnniversary.md | 25 +- .../v1.0-beta/Update-MgUserProfileAward.md | 25 +- .../Update-MgUserProfileCertification.md | 25 +- ...Update-MgUserProfileEducationalActivity.md | 35 +- .../v1.0-beta/Update-MgUserProfileEmail.md | 25 +- .../v1.0-beta/Update-MgUserProfileInterest.md | 27 +- .../v1.0-beta/Update-MgUserProfileLanguage.md | 25 +- .../v1.0-beta/Update-MgUserProfileName.md | 25 +- .../v1.0-beta/Update-MgUserProfileNote.md | 24 +- .../v1.0-beta/Update-MgUserProfilePatent.md | 25 +- .../v1.0-beta/Update-MgUserProfilePhone.md | 24 +- .../v1.0-beta/Update-MgUserProfilePosition.md | 25 +- .../v1.0-beta/Update-MgUserProfileProject.md | 29 +- .../Update-MgUserProfilePublication.md | 25 +- .../v1.0-beta/Update-MgUserProfileSkill.md | 28 +- .../Update-MgUserProfileWebAccount.md | 25 +- .../v1.0-beta/Update-MgUserProfileWebsite.md | 25 +- .../examples/v1.0-beta/Get-MgUserContact.md | 26 +- .../v1.0-beta/Get-MgUserContactFolder.md | 26 +- .../Get-MgUserContactFolderChildFolder.md | 22 +- .../Get-MgUserContactFolderContact.md | 22 +- .../examples/v1.0-beta/New-MgUserContact.md | 45 +- .../v1.0-beta/New-MgUserContactFolder.md | 26 +- .../New-MgUserContactFolderChildFolder.md | 25 +- .../New-MgUserContactFolderContact.md | 30 +- .../v1.0-beta/Remove-MgUserContact.md | 22 +- .../v1.0-beta/Remove-MgUserContactFolder.md | 22 +- .../v1.0-beta/Update-MgUserContact.md | 37 +- .../v1.0-beta/Update-MgUserContactFolder.md | 26 +- .../v1.0-beta/Get-MgGroupPlannerPlan.md | 21 +- .../examples/v1.0-beta/Get-MgPlannerBucket.md | 24 +- .../v1.0-beta/Get-MgPlannerBucketTask.md | 21 +- .../examples/v1.0-beta/Get-MgPlannerPlan.md | 24 +- .../v1.0-beta/Get-MgPlannerPlanBucket.md | 21 +- .../v1.0-beta/Get-MgPlannerPlanDetail.md | 21 +- .../v1.0-beta/Get-MgPlannerPlanTask.md | 21 +- .../examples/v1.0-beta/Get-MgPlannerRoster.md | 21 +- .../v1.0-beta/Get-MgPlannerRosterMember.md | 24 +- .../v1.0-beta/Get-MgPlannerRosterPlan.md | 21 +- .../examples/v1.0-beta/Get-MgPlannerTask.md | 24 +- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 21 +- .../Get-MgPlannerTaskBucketTaskBoardFormat.md | 21 +- .../v1.0-beta/Get-MgPlannerTaskDetail.md | 21 +- ...et-MgPlannerTaskProgressTaskBoardFormat.md | 21 +- .../examples/v1.0-beta/Get-MgUserPlanner.md | 22 +- .../Get-MgUserPlannerFavoritePlan.md | 22 +- .../v1.0-beta/Get-MgUserPlannerPlan.md | 22 +- .../v1.0-beta/Get-MgUserPlannerRecentPlan.md | 22 +- .../v1.0-beta/Get-MgUserPlannerRosterPlan.md | 21 +- .../v1.0-beta/Get-MgUserPlannerTask.md | 22 +- .../examples/v1.0-beta/New-MgPlannerBucket.md | 26 +- .../examples/v1.0-beta/New-MgPlannerPlan.md | 27 +- .../examples/v1.0-beta/New-MgPlannerRoster.md | 24 +- .../v1.0-beta/New-MgPlannerRosterMember.md | 25 +- .../examples/v1.0-beta/New-MgPlannerTask.md | 32 +- .../v1.0-beta/Remove-MgPlannerBucket.md | 21 +- .../v1.0-beta/Remove-MgPlannerPlan.md | 21 +- .../v1.0-beta/Remove-MgPlannerRoster.md | 21 +- .../v1.0-beta/Remove-MgPlannerRosterMember.md | 21 +- .../v1.0-beta/Remove-MgPlannerTask.md | 21 +- .../v1.0-beta/Update-MgPlannerBucket.md | 24 +- .../v1.0-beta/Update-MgPlannerPlan.md | 24 +- .../v1.0-beta/Update-MgPlannerPlanDetail.md | 31 +- .../v1.0-beta/Update-MgPlannerTask.md | 33 +- ...-MgPlannerTaskAssignedToTaskBoardFormat.md | 26 +- ...date-MgPlannerTaskBucketTaskBoardFormat.md | 24 +- .../v1.0-beta/Update-MgPlannerTaskDetail.md | 49 +- ...te-MgPlannerTaskProgressTaskBoardFormat.md | 24 +- .../v1.0-beta/Update-MgUserPlanner.md | 39 +- .../Confirm-MgAuditLogSignInCompromised.md | 28 +- .../v1.0-beta/Confirm-MgAuditLogSignInSafe.md | 28 +- .../v1.0-beta/Get-MgAuditLogDirectoryAudit.md | 24 +- .../v1.0-beta/Get-MgAuditLogProvisioning.md | 24 +- .../v1.0-beta/Get-MgAuditLogSignIn.md | 38 +- ...gReportApplicationSignInDetailedSummary.md | 24 +- ...-MgReportAttackSimulationRepeatOffender.md | 21 +- ...ortAttackSimulationTrainingUserCoverage.md | 21 +- ...et-MgReportAttackSimulationUserCoverage.md | 21 +- ...henticationMethodUserRegistrationDetail.md | 24 +- ...MgReportCredentialUserRegistrationCount.md | 21 +- ...gReportCredentialUserRegistrationDetail.md | 21 +- ...tSecurityAttackSimulationRepeatOffender.md | 21 +- ...ityAttackSimulationTrainingUserCoverage.md | 21 +- ...ortSecurityAttackSimulationUserCoverage.md | 21 +- .../Get-MgReportUserCredentialUsageDetail.md | 21 +- .../v1.0-beta/Get-MgSchemaExtension.md | 24 +- .../v1.0-beta/New-MgSchemaExtension.md | 95 +++- .../v1.0-beta/Remove-MgSchemaExtension.md | 21 +- .../v1.0-beta/Update-MgSchemaExtension.md | 66 ++- .../v1.0-beta/Get-MgExternalConnection.md | 24 +- .../v1.0-beta/Get-MgExternalConnectionItem.md | 21 +- .../Get-MgExternalConnectionOperation.md | 21 +- .../Get-MgExternalConnectionQuota.md | 24 +- .../Get-MgExternalConnectionSchema.md | 21 +- .../examples/v1.0-beta/Get-MgSearchAcronym.md | 24 +- .../v1.0-beta/Get-MgSearchBookmark.md | 24 +- .../examples/v1.0-beta/Get-MgSearchQna.md | 24 +- .../v1.0-beta/Invoke-MgQuerySearch.md | 42 +- .../v1.0-beta/New-MgExternalConnection.md | 26 +- .../New-MgExternalConnectionGroup.md | 26 +- .../New-MgExternalConnectionGroupMember.md | 43 +- .../examples/v1.0-beta/New-MgSearchAcronym.md | 28 +- .../v1.0-beta/New-MgSearchBookmark.md | 49 +- .../examples/v1.0-beta/New-MgSearchQna.md | 52 +- .../v1.0-beta/Remove-MgExternalConnection.md | 21 +- .../Remove-MgExternalConnectionGroup.md | 21 +- .../Remove-MgExternalConnectionGroupMember.md | 21 +- .../Remove-MgExternalConnectionItem.md | 21 +- .../v1.0-beta/Remove-MgSearchAcronym.md | 21 +- .../v1.0-beta/Remove-MgSearchBookmark.md | 21 +- .../examples/v1.0-beta/Remove-MgSearchQna.md | 21 +- .../v1.0-beta/Update-MgExternalConnection.md | 25 +- .../Update-MgExternalConnectionItem.md | 30 +- .../Update-MgExternalConnectionSchema.md | 47 +- .../v1.0-beta/Update-MgSearchAcronym.md | 24 +- .../v1.0-beta/Update-MgSearchBookmark.md | 24 +- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 24 +- ...discoveryCaseNoncustodialDataSourceHold.md | 24 +- ...rityCaseEdiscoveryCaseReviewSetQueryTag.md | 28 +- ...yCaseEdiscoveryCaseReviewSetToReviewSet.md | 27 +- ...-MgSecurityCaseEdiscoveryCaseSearchData.md | 21 +- .../Close-MgSecurityCaseEdiscoveryCase.md | 21 +- ...t-MgSecurityCaseEdiscoveryCaseReviewSet.md | 27 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 27 +- .../v1.0-beta/Get-MgSecurityAction.md | 24 +- .../examples/v1.0-beta/Get-MgSecurityAlert.md | 24 +- .../Get-MgSecurityAttackSimulation.md | 21 +- ...et-MgSecurityAttackSimulationAutomation.md | 21 +- ...MgSecurityAttackSimulationAutomationRun.md | 21 +- .../Get-MgSecurityCaseEdiscoveryCase.md | 24 +- ...t-MgSecurityCaseEdiscoveryCaseCustodian.md | 24 +- ...iscoveryCaseCustodianLastIndexOperation.md | 21 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 24 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 21 +- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 24 +- ...t-MgSecurityCaseEdiscoveryCaseLegalHold.md | 24 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 31 +- ...t-MgSecurityCaseEdiscoveryCaseOperation.md | 31 +- ...t-MgSecurityCaseEdiscoveryCaseReviewSet.md | 24 +- ...SecurityCaseEdiscoveryCaseReviewSetFile.md | 24 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 24 +- .../Get-MgSecurityCaseEdiscoveryCaseSearch.md | 24 +- ...aseEdiscoveryCaseSearchAdditionalSource.md | 24 +- ...CaseEdiscoveryCaseSearchCustodianSource.md | 24 +- ...seSearchLastEstimateStatisticsOperation.md | 21 +- ...eEdiscoveryCaseSearchNoncustodialSource.md | 21 +- ...Get-MgSecurityCaseEdiscoveryCaseSetting.md | 21 +- .../Get-MgSecurityCaseEdiscoveryCaseTag.md | 31 +- .../v1.0-beta/Get-MgSecurityIncident.md | 31 +- .../Get-MgSecurityLabelRetentionLabel.md | 24 +- .../v1.0-beta/Get-MgSecuritySecureScore.md | 21 +- ...Get-MgSecuritySecureScoreControlProfile.md | 21 +- ...t-MgSecurityThreatSubmissionEmailThreat.md | 24 +- ...atSubmissionEmailThreatSubmissionPolicy.md | 24 +- ...et-MgSecurityThreatSubmissionFileThreat.md | 24 +- ...Get-MgSecurityThreatSubmissionUrlThreat.md | 24 +- .../v1.0-beta/Get-MgSecurityTiIndicator.md | 24 +- .../Get-MgSecurityTriggerRetentionEvent.md | 24 +- ...MgSecurityTriggerTypeRetentionEventType.md | 24 +- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 21 +- ...sSecurityCaseEdiscoveryCaseTagHierarchy.md | 21 +- ...urityCaseEdiscoveryCaseSearchStatistics.md | 21 +- ...voke-MgReopenSecurityCaseEdiscoveryCase.md | 21 +- .../v1.0-beta/New-MgSecurityAction.md | 35 +- .../New-MgSecurityCaseEdiscoveryCase.md | 26 +- ...w-MgSecurityCaseEdiscoveryCaseCustodian.md | 24 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 26 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 45 +- ...w-MgSecurityCaseEdiscoveryCaseLegalHold.md | 37 +- ...tyCaseEdiscoveryCaseLegalHoldSiteSource.md | 34 +- ...tyCaseEdiscoveryCaseLegalHoldUserSource.md | 32 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 26 +- ...w-MgSecurityCaseEdiscoveryCaseReviewSet.md | 24 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 25 +- .../New-MgSecurityCaseEdiscoveryCaseSearch.md | 34 +- .../New-MgSecurityLabelRetentionLabel.md | 39 +- ...w-MgSecurityThreatSubmissionEmailThreat.md | 27 +- ...atSubmissionEmailThreatSubmissionPolicy.md | 24 +- ...New-MgSecurityThreatSubmissionUrlThreat.md | 26 +- .../v1.0-beta/New-MgSecurityTiIndicator.md | 42 +- .../New-MgSecurityTriggerRetentionEvent.md | 44 +- ...MgSecurityTriggerTypeRetentionEventType.md | 29 +- ...h-MgSecurityCaseEdiscoveryCaseCustodian.md | 21 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 21 +- .../Remove-MgSecurityCaseEdiscoveryCase.md | 21 +- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 21 +- ...e-MgSecurityCaseEdiscoveryCaseLegalHold.md | 21 +- ...discoveryCaseNoncustodialDataSourceHold.md | 24 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 21 +- ...move-MgSecurityCaseEdiscoveryCaseSearch.md | 21 +- .../Remove-MgSecurityCaseEdiscoveryCaseTag.md | 21 +- .../Remove-MgSecurityLabelRetentionLabel.md | 21 +- .../v1.0-beta/Remove-MgSecurityTiIndicator.md | 21 +- ...emove-MgSecurityTiIndicatorByExternalId.md | 27 +- .../Remove-MgSecurityTiIndicatorMultiple.md | 27 +- .../Remove-MgSecurityTriggerRetentionEvent.md | 21 +- ...MgSecurityTriggerTypeRetentionEventType.md | 21 +- ...urityCaseEdiscoveryCaseSettingToDefault.md | 24 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 21 +- .../v1.0-beta/Stop-MgSecurityAction.md | 21 +- .../v1.0-beta/Submit-MgSecurityTiIndicator.md | 65 ++- .../v1.0-beta/Update-MgSecurityAlert.md | 56 +- .../Update-MgSecurityAlertMultiple.md | 46 +- .../Update-MgSecurityCaseEdiscoveryCase.md | 25 +- ...ecurityCaseEdiscoveryCaseCustodianIndex.md | 21 +- ...iscoveryCaseNoncustodialDataSourceIndex.md | 21 +- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 25 +- ...date-MgSecurityCaseEdiscoveryCaseSearch.md | 24 +- ...ate-MgSecurityCaseEdiscoveryCaseSetting.md | 33 +- .../v1.0-beta/Update-MgSecurityIncident.md | 28 +- .../Update-MgSecurityLabelRetentionLabel.md | 39 +- ...ate-MgSecuritySecureScoreControlProfile.md | 24 +- ...atSubmissionEmailThreatSubmissionPolicy.md | 24 +- .../v1.0-beta/Update-MgSecurityTiIndicator.md | 32 +- .../Update-MgSecurityTiIndicatorMultiple.md | 33 +- .../Add-MgSiteListContentTypeCopy.md | 24 +- ...teListContentTypeCopyFromContentTypeHub.md | 40 +- ...SiteContentTypeToDefaultContentLocation.md | 30 +- .../Sites/examples/v1.0-beta/Get-MgSite.md | 52 +- .../examples/v1.0-beta/Get-MgSiteColumn.md | 21 +- .../v1.0-beta/Get-MgSiteContentType.md | 31 +- .../v1.0-beta/Get-MgSiteContentTypeColumn.md | 24 +- .../v1.0-beta/Get-MgSiteDefaultDrive.md | 21 +- .../examples/v1.0-beta/Get-MgSiteDrive.md | 21 +- .../examples/v1.0-beta/Get-MgSiteList.md | 52 +- .../v1.0-beta/Get-MgSiteListColumn.md | 21 +- .../v1.0-beta/Get-MgSiteListContentType.md | 21 +- ...ListContentTypeCompatibleHubContentType.md | 21 +- .../examples/v1.0-beta/Get-MgSiteListItem.md | 21 +- .../v1.0-beta/Get-MgSiteListItemDelta.md | 38 +- .../Get-MgSiteListItemDocumentSetVersion.md | 24 +- .../examples/v1.0-beta/Get-MgSitePage.md | 24 +- .../v1.0-beta/Get-MgSitePermission.md | 24 +- .../examples/v1.0-beta/Get-MgSiteTermStore.md | 24 +- .../v1.0-beta/Get-MgSiteTermStoreGroup.md | 24 +- .../Get-MgSiteTermStoreGroupSetTerm.md | 24 +- .../v1.0-beta/Get-MgSiteTermStoreSet.md | 21 +- .../Sites/examples/v1.0-beta/Get-MgSubSite.md | 21 +- .../v1.0-beta/Get-MgUserFollowedSite.md | 22 +- .../Join-MgSiteContentTypeWithHubSite.md | 27 +- .../examples/v1.0-beta/New-MgSiteColumn.md | 34 +- .../v1.0-beta/New-MgSiteContentType.md | 30 +- .../v1.0-beta/New-MgSiteContentTypeColumn.md | 24 +- .../examples/v1.0-beta/New-MgSiteList.md | 39 +- .../v1.0-beta/New-MgSiteListColumn.md | 34 +- .../examples/v1.0-beta/New-MgSiteListItem.md | 28 +- .../New-MgSiteListItemDocumentSetVersion.md | 25 +- .../v1.0-beta/New-MgSiteListItemLink.md | 41 +- .../examples/v1.0-beta/New-MgSitePage.md | 45 +- .../v1.0-beta/New-MgSitePermission.md | 34 +- .../v1.0-beta/Publish-MgSiteContentType.md | 21 +- .../v1.0-beta/Remove-MgSiteContentType.md | 21 +- .../Remove-MgSiteContentTypeColumn.md | 21 +- .../v1.0-beta/Remove-MgSiteListItem.md | 21 +- ...Remove-MgSiteListItemDocumentSetVersion.md | 21 +- .../v1.0-beta/Remove-MgSitePermission.md | 21 +- ...estore-MgSiteListItemDocumentSetVersion.md | 21 +- .../Test-MgSiteContentTypePublished.md | 21 +- .../v1.0-beta/Unpublish-MgSiteContentType.md | 21 +- .../v1.0-beta/Update-MgSiteContentType.md | 63 ++- .../Update-MgSiteContentTypeColumn.md | 26 +- .../v1.0-beta/Update-MgSiteListItemField.md | 25 +- .../v1.0-beta/Update-MgSitePermission.md | 26 +- .../examples/v1.0-beta/Add-MgTeamMember.md | 82 ++- .../Complete-MgTeamChannelMigration.md | 21 +- .../v1.0-beta/Complete-MgTeamMigration.md | 21 +- .../Confirm-MgTeamScheduleTimeCard.md | 21 +- .../Teams/examples/v1.0-beta/Copy-MgTeam.md | 28 +- .../v1.0-beta/Get-MgAppCatalogTeamApp.md | 52 +- .../Get-MgAppCatalogTeamAppDefinitionBot.md | 21 +- ...-MgAppCatalogTeamAppDefinitionColorIcon.md | 24 +- ...TeamAppDefinitionColorIconHostedContent.md | 21 +- ...gAppCatalogTeamAppDefinitionOutlineIcon.md | 31 +- .../Teams/examples/v1.0-beta/Get-MgChat.md | 45 +- .../v1.0-beta/Get-MgChatInstalledApp.md | 38 +- .../examples/v1.0-beta/Get-MgChatMember.md | 21 +- .../examples/v1.0-beta/Get-MgChatMessage.md | 24 +- .../Get-MgChatMessageHostedContent.md | 24 +- .../examples/v1.0-beta/Get-MgChatOperation.md | 24 +- .../v1.0-beta/Get-MgChatPermissionGrant.md | 21 +- .../v1.0-beta/Get-MgChatPinnedMessage.md | 31 +- .../Teams/examples/v1.0-beta/Get-MgChatTab.md | 31 +- .../Teams/examples/v1.0-beta/Get-MgTeam.md | 45 +- .../examples/v1.0-beta/Get-MgTeamChannel.md | 45 +- .../v1.0-beta/Get-MgTeamChannelFileFolder.md | 21 +- .../v1.0-beta/Get-MgTeamChannelMember.md | 24 +- .../v1.0-beta/Get-MgTeamChannelMessage.md | 24 +- .../Get-MgTeamChannelMessageHostedContent.md | 21 +- .../Get-MgTeamChannelMessageReply.md | 21 +- ...-MgTeamChannelMessageReplyHostedContent.md | 21 +- .../Get-MgTeamChannelSharedWithTeam.md | 24 +- ...gTeamChannelSharedWithTeamAllowedMember.md | 21 +- .../v1.0-beta/Get-MgTeamChannelTab.md | 24 +- .../v1.0-beta/Get-MgTeamIncomingChannel.md | 21 +- .../v1.0-beta/Get-MgTeamInstalledApp.md | 45 +- .../examples/v1.0-beta/Get-MgTeamMember.md | 45 +- .../v1.0-beta/Get-MgTeamPermissionGrant.md | 21 +- .../v1.0-beta/Get-MgTeamPrimaryChannel.md | 21 +- .../examples/v1.0-beta/Get-MgTeamSchedule.md | 21 +- .../Get-MgTeamScheduleOfferShiftRequest.md | 24 +- .../v1.0-beta/Get-MgTeamScheduleOpenShift.md | 24 +- ...et-MgTeamScheduleOpenShiftChangeRequest.md | 24 +- .../Get-MgTeamScheduleSchedulingGroup.md | 24 +- .../v1.0-beta/Get-MgTeamScheduleShift.md | 24 +- ...et-MgTeamScheduleSwapShiftChangeRequest.md | 24 +- .../v1.0-beta/Get-MgTeamScheduleTimeCard.md | 24 +- .../v1.0-beta/Get-MgTeamScheduleTimeOff.md | 24 +- .../Get-MgTeamScheduleTimeOffReason.md | 24 +- .../Get-MgTeamScheduleTimeOffRequest.md | 24 +- .../Teams/examples/v1.0-beta/Get-MgTeamTag.md | 24 +- .../examples/v1.0-beta/Get-MgTeamTagMember.md | 24 +- .../v1.0-beta/Get-MgTeamworkDeletedTeam.md | 21 +- .../v1.0-beta/Get-MgTeamworkDevice.md | 24 +- .../v1.0-beta/Get-MgTeamworkDeviceActivity.md | 21 +- .../Get-MgTeamworkDeviceConfiguration.md | 21 +- .../v1.0-beta/Get-MgTeamworkDeviceHealth.md | 21 +- .../Get-MgTeamworkDeviceOperation.md | 24 +- .../v1.0-beta/Get-MgTeamworkTeamAppSetting.md | 21 +- .../v1.0-beta/Get-MgTeamworkTeamTemplate.md | 38 +- .../Get-MgTeamworkTeamTemplateDefinition.md | 21 +- .../Get-MgTeamworkWorkforceIntegration.md | 24 +- .../examples/v1.0-beta/Get-MgUserChat.md | 38 +- .../v1.0-beta/Get-MgUserChatMember.md | 22 +- .../v1.0-beta/Get-MgUserJoinedTeam.md | 22 +- .../Get-MgUserTeamworkAssociatedTeam.md | 22 +- .../Get-MgUserTeamworkInstalledApp.md | 45 +- .../Get-MgUserTeamworkInstalledAppChat.md | 21 +- .../examples/v1.0-beta/Hide-MgChatForUser.md | 27 +- .../v1.0-beta/Invoke-MgArchiveTeam.md | 21 +- .../Invoke-MgClockTeamScheduleTimeCardIn.md | 28 +- .../Invoke-MgClockTeamScheduleTimeCardOut.md | 28 +- .../examples/v1.0-beta/Invoke-MgGraphChat.md | 27 +- .../v1.0-beta/Invoke-MgMarkChatReadForUser.md | 27 +- .../Invoke-MgMarkChatUnreadForUser.md | 28 +- .../v1.0-beta/Invoke-MgShareTeamSchedule.md | 26 +- .../Invoke-MgSoftTeamChannelMessageDelete.md | 21 +- ...oke-MgSoftTeamChannelMessageReplyDelete.md | 21 +- .../v1.0-beta/Invoke-MgUnarchiveTeam.md | 21 +- .../v1.0-beta/New-MgAppCatalogTeamApp.md | 21 +- .../Teams/examples/v1.0-beta/New-MgChat.md | 222 +++++++- .../v1.0-beta/New-MgChatInstalledApp.md | 24 +- .../examples/v1.0-beta/New-MgChatMember.md | 69 ++- .../examples/v1.0-beta/New-MgChatMessage.md | 46 +- .../v1.0-beta/New-MgChatPinnedMessage.md | 24 +- .../Teams/examples/v1.0-beta/New-MgChatTab.md | 31 +- .../Teams/examples/v1.0-beta/New-MgTeam.md | 246 ++++++++- .../examples/v1.0-beta/New-MgTeamChannel.md | 118 +++- .../v1.0-beta/New-MgTeamChannelEmail.md | 21 +- .../v1.0-beta/New-MgTeamChannelMember.md | 92 +++- .../v1.0-beta/New-MgTeamChannelMessage.md | 350 +++++++++++- .../New-MgTeamChannelMessageReply.md | 27 +- .../v1.0-beta/New-MgTeamInstalledApp.md | 24 +- .../examples/v1.0-beta/New-MgTeamMember.md | 38 +- .../New-MgTeamScheduleOfferShiftRequest.md | 26 +- .../v1.0-beta/New-MgTeamScheduleOpenShift.md | 54 +- ...ew-MgTeamScheduleOpenShiftChangeRequest.md | 25 +- .../New-MgTeamScheduleSchedulingGroup.md | 29 +- .../v1.0-beta/New-MgTeamScheduleShift.md | 58 +- ...ew-MgTeamScheduleSwapShiftChangeRequest.md | 27 +- .../v1.0-beta/New-MgTeamScheduleTimeCard.md | 53 +- .../v1.0-beta/New-MgTeamScheduleTimeOff.md | 36 +- .../New-MgTeamScheduleTimeOffReason.md | 26 +- .../Teams/examples/v1.0-beta/New-MgTeamTag.md | 32 +- .../examples/v1.0-beta/New-MgTeamTagMember.md | 24 +- .../New-MgTeamworkWorkforceIntegration.md | 32 +- .../New-MgUserTeamworkInstalledApp.md | 24 +- .../v1.0-beta/Remove-MgAppCatalogTeamApp.md | 21 +- .../v1.0-beta/Remove-MgChatInstalledApp.md | 21 +- .../examples/v1.0-beta/Remove-MgChatMember.md | 21 +- .../v1.0-beta/Remove-MgChatPinnedMessage.md | 21 +- .../examples/v1.0-beta/Remove-MgChatTab.md | 21 +- .../v1.0-beta/Remove-MgTeamChannel.md | 21 +- .../v1.0-beta/Remove-MgTeamChannelEmail.md | 21 +- .../v1.0-beta/Remove-MgTeamChannelMember.md | 21 +- .../Remove-MgTeamChannelSharedWithTeam.md | 24 +- .../v1.0-beta/Remove-MgTeamInstalledApp.md | 21 +- .../examples/v1.0-beta/Remove-MgTeamMember.md | 21 +- .../Remove-MgTeamScheduleOpenShift.md | 21 +- .../Remove-MgTeamScheduleSchedulingGroup.md | 21 +- .../v1.0-beta/Remove-MgTeamScheduleShift.md | 21 +- .../Remove-MgTeamScheduleTimeCard.md | 21 +- .../v1.0-beta/Remove-MgTeamScheduleTimeOff.md | 21 +- .../Remove-MgTeamScheduleTimeOffReason.md | 21 +- .../Remove-MgTeamScheduleTimeOffRequest.md | 21 +- .../examples/v1.0-beta/Remove-MgTeamTag.md | 21 +- .../v1.0-beta/Remove-MgTeamTagMember.md | 21 +- .../Remove-MgTeamworkWorkforceIntegration.md | 21 +- .../Remove-MgUserTeamworkInstalledApp.md | 21 +- .../v1.0-beta/Restart-MgTeamworkDevice.md | 21 +- .../Send-MgChatActivityNotification.md | 146 ++++- .../Send-MgTeamActivityNotification.md | 268 +++++++++- ...TeamworkActivityNotificationToRecipient.md | 85 ++- .../Start-MgTeamScheduleTimeCardBreak.md | 28 +- .../Start-MgTeamworkDeviceDiagnostic.md | 21 +- .../Undo-MgTeamChannelMessageSoftDelete.md | 24 +- .../Teams/examples/v1.0-beta/Update-MgChat.md | 24 +- .../v1.0-beta/Update-MgChatInstalledApp.md | 21 +- .../examples/v1.0-beta/Update-MgChatTab.md | 24 +- .../Teams/examples/v1.0-beta/Update-MgTeam.md | 38 +- .../v1.0-beta/Update-MgTeamChannel.md | 31 +- .../v1.0-beta/Update-MgTeamChannelMember.md | 36 +- .../v1.0-beta/Update-MgTeamChannelMessage.md | 429 ++++++++++++++- .../v1.0-beta/Update-MgTeamInstalledApp.md | 21 +- .../examples/v1.0-beta/Update-MgTeamMember.md | 27 +- .../examples/v1.0-beta/Update-MgTeamTag.md | 24 +- .../Update-MgTeamworkDeviceSoftware.md | 25 +- .../Update-MgTeamworkTeamAppSetting.md | 25 +- .../Update-MgTeamworkWorkforceIntegration.md | 32 +- .../v1.0-beta/Clear-MgUserPresence.md | 24 +- .../v1.0-beta/Complete-MgUserOutlookTask.md | 22 +- .../v1.0-beta/Confirm-MgUserMemberGroup.md | 28 +- .../v1.0-beta/Confirm-MgUserMemberObject.md | 30 +- .../v1.0-beta/Copy-MgUserMailFolder.md | 25 +- .../examples/v1.0-beta/Copy-MgUserMessage.md | 25 +- .../v1.0-beta/Copy-MgUserOnenoteNotebook.md | 26 +- .../Copy-MgUserOnenotePageToSection.md | 26 +- .../Copy-MgUserOnenoteSectionToNotebook.md | 27 +- ...Copy-MgUserOnenoteSectionToSectionGroup.md | 27 +- .../v1.0-beta/Export-MgUserPersonalData.md | 24 +- .../v1.0-beta/Find-MgUserMeetingTime.md | 62 ++- .../Get-MgUserDefaultCalendarSchedule.md | 37 +- .../examples/v1.0-beta/Get-MgUserMailTip.md | 29 +- .../v1.0-beta/Get-MgUserMemberGroup.md | 25 +- .../v1.0-beta/Get-MgUserMemberObject.md | 25 +- .../Get-MgUserOnenoteNotebookFromWebUrl.md | 25 +- .../v1.0-beta/Initialize-MgUserServicePlan.md | 26 +- .../v1.0-beta/Invoke-MgAcceptUserEvent.md | 26 +- .../Invoke-MgAcceptUserEventTentatively.md | 36 +- ...ndingAccessReviewInstanceRecommendation.md | 22 +- ...ndingAccessReviewInstanceRecordDecision.md | 27 +- .../Invoke-MgCreateOrGetUserOnlineMeeting.md | 66 ++- .../v1.0-beta/Invoke-MgDeclineUserEvent.md | 36 +- .../Invoke-MgDismissUserEventReminder.md | 22 +- ...nProtectionSensitivityLabelContentLabel.md | 58 +- .../v1.0-beta/Invoke-MgForwardUserEvent.md | 33 +- .../v1.0-beta/Invoke-MgForwardUserMessage.md | 36 +- .../Invoke-MgInvalidateUserRefreshToken.md | 22 +- .../v1.0-beta/Invoke-MgLicenseUser.md | 21 +- .../v1.0-beta/Invoke-MgReplyAllUserMessage.md | 34 +- .../v1.0-beta/Invoke-MgReplyUserMessage.md | 41 +- .../Invoke-MgReprovisionUserCloudPc.md | 22 +- .../Invoke-MgSnoozeUserEventReminder.md | 28 +- .../Invoke-MgSoftUserChatMessageDelete.md | 21 +- .../Invoke-MgTranslateUserExchangeId.md | 30 +- .../Invoke-MgTroubleshootUserCloudPc.md | 22 +- .../Invoke-MgUnsubscribeUserMessage.md | 22 +- .../v1.0-beta/Move-MgUserMailFolder.md | 25 +- .../examples/v1.0-beta/Move-MgUserMessage.md | 25 +- .../v1.0-beta/Move-MgUserTaskListTask.md | 25 +- ...ew-MgUserMessageAttachmentUploadSession.md | 42 +- .../v1.0-beta/New-MgUserMessageForward.md | 36 +- .../v1.0-beta/New-MgUserMessageReply.md | 41 +- .../v1.0-beta/New-MgUserMessageReplyAll.md | 34 +- ...UserTodoListTaskAttachmentUploadSession.md | 29 +- .../v1.0-beta/Rename-MgUserCloudPc.md | 22 +- .../v1.0-beta/Restart-MgUserCloudPc.md | 22 +- .../examples/v1.0-beta/Revoke-MgUserSign.md | 8 + .../examples/v1.0-beta/Send-MgUserMail.md | 137 ++++- .../examples/v1.0-beta/Send-MgUserMessage.md | 22 +- ...Send-MgUserTeamworkActivityNotification.md | 81 ++- .../examples/v1.0-beta/Set-MgUserPresence.md | 27 +- ...Set-MgUserPresenceUserPreferredPresence.md | 26 +- .../examples/v1.0-beta/Stop-MgUserEvent.md | 25 +- .../examples/v1.0-beta/Test-MgUserPassword.md | 24 +- ...onProtectionSensitivityLabelApplication.md | 84 ++- ...mationProtectionSensitivityLabelRemoval.md | 66 ++- .../Undo-MgUserChatMessageSoftDelete.md | 21 +- .../v1.0-beta/Update-MgUserPassword.md | 26 +- .../examples/v1.0-beta/Find-MgUserRoom.md | 22 +- .../examples/v1.0-beta/Find-MgUserRoomList.md | 22 +- .../v1.0-beta/Get-MgUserCloudPcLaunchInfo.md | 22 +- .../examples/v1.0-beta/Get-MgUserDelta.md | 21 +- .../v1.0-beta/Get-MgUserPlannerAllDelta.md | 22 +- .../v1.0-beta/Get-MgUserTaskListDelta.md | 22 +- .../v1.0-beta/Get-MgUserTaskListTaskDelta.md | 22 +- .../Invoke-MgSupportedUserOutlookLanguage.md | 22 +- .../v1.0-beta/Invoke-MgTimeUserOutlook.md | 22 +- .../examples/v1.0-beta/Get-MgUserMemberOf.md | 21 +- .../Get-MgUserOutlookMasterCategory.md | 26 +- .../v1.0-beta/Get-MgUserOutlookTask.md | 34 +- .../Get-MgUserOutlookTaskAttachment.md | 21 +- .../v1.0-beta/Get-MgUserOutlookTaskFolder.md | 26 +- .../Get-MgUserOutlookTaskFolderTask.md | 22 +- .../v1.0-beta/Get-MgUserOutlookTaskGroup.md | 26 +- .../Get-MgUserOutlookTaskGroupTaskFolder.md | 22 +- .../v1.0-beta/Get-MgUserOwnedDevice.md | 22 +- .../v1.0-beta/Get-MgUserOwnedObject.md | 22 +- .../v1.0-beta/Get-MgUserRegisteredDevice.md | 22 +- ...Get-MgUserSettingContactMergeSuggestion.md | 22 +- .../v1.0-beta/Get-MgUserSettingItemInsight.md | 22 +- ...MgUserSettingRegionalAndLanguageSetting.md | 22 +- .../Get-MgUserSettingShiftPreference.md | 21 +- .../examples/v1.0-beta/Get-MgUserTodoList.md | 26 +- .../v1.0-beta/Get-MgUserTodoListTask.md | 26 +- .../Get-MgUserTodoListTaskAttachment.md | 26 +- .../Get-MgUserTodoListTaskChecklistItem.md | 34 +- .../Get-MgUserTodoListTaskLinkedResource.md | 26 +- .../v1.0-beta/Get-MgUserTransitiveMemberOf.md | 21 +- .../New-MgUserOutlookMasterCategory.md | 26 +- .../v1.0-beta/New-MgUserOutlookTask.md | 33 +- .../New-MgUserOutlookTaskAttachment.md | 39 +- .../v1.0-beta/New-MgUserOutlookTaskFolder.md | 25 +- .../New-MgUserOutlookTaskFolderTask.md | 33 +- .../v1.0-beta/New-MgUserOutlookTaskGroup.md | 25 +- .../New-MgUserOutlookTaskGroupTaskFolder.md | 25 +- .../examples/v1.0-beta/New-MgUserTodoList.md | 25 +- .../v1.0-beta/New-MgUserTodoListTask.md | 35 +- .../New-MgUserTodoListTaskAttachment.md | 28 +- .../New-MgUserTodoListTaskChecklistItem.md | 32 +- .../New-MgUserTodoListTaskLinkedResource.md | 28 +- .../Remove-MgUserOutlookMasterCategory.md | 22 +- .../v1.0-beta/Remove-MgUserOutlookTask.md | 22 +- .../Remove-MgUserOutlookTaskFolder.md | 22 +- .../Remove-MgUserOutlookTaskGroup.md | 22 +- .../v1.0-beta/Remove-MgUserTodoList.md | 22 +- .../v1.0-beta/Remove-MgUserTodoListTask.md | 22 +- .../Remove-MgUserTodoListTaskAttachment.md | 22 +- .../Remove-MgUserTodoListTaskChecklistItem.md | 22 +- ...Remove-MgUserTodoListTaskLinkedResource.md | 22 +- .../Update-MgUserOutlookMasterCategory.md | 25 +- .../v1.0-beta/Update-MgUserOutlookTask.md | 28 +- .../Update-MgUserOutlookTaskFolder.md | 25 +- .../Update-MgUserOutlookTaskGroup.md | 25 +- ...ate-MgUserSettingContactMergeSuggestion.md | 25 +- .../Update-MgUserSettingItemInsight.md | 24 +- ...MgUserSettingRegionalAndLanguageSetting.md | 35 +- .../v1.0-beta/Update-MgUserTodoList.md | 25 +- .../v1.0-beta/Update-MgUserTodoListTask.md | 28 +- .../Update-MgUserTodoListTaskChecklistItem.md | 25 +- ...Update-MgUserTodoListTaskLinkedResource.md | 28 +- ...dd-MgWindowsUpdatesUpdatableAssetMember.md | 29 +- ...gWindowsUpdatesUpdatableAssetMemberById.md | 29 +- .../Get-MgWindowsUpdatesCatalogEntry.md | 21 +- .../Get-MgWindowsUpdatesDeployment.md | 24 +- ...ndowsUpdatesDeploymentAudienceExclusion.md | 21 +- ...gWindowsUpdatesDeploymentAudienceMember.md | 21 +- .../Get-MgWindowsUpdatesResourceConnection.md | 38 +- .../Get-MgWindowsUpdatesUpdatableAsset.md | 59 +- ...ke-MgEnrollWindowsUpdatesUpdatableAsset.md | 30 +- ...gEnrollWindowsUpdatesUpdatableAssetById.md | 30 +- ...oke-MgGraphWindowsUpdatesUpdatableAsset.md | 30 +- ...-MgUnenrollWindowsUpdatesUpdatableAsset.md | 30 +- .../New-MgWindowsUpdatesDeployment.md | 44 +- .../New-MgWindowsUpdatesResourceConnection.md | 27 +- .../New-MgWindowsUpdatesUpdatableAsset.md | 24 +- .../Remove-MgWindowsUpdatesDeployment.md | 21 +- ...move-MgWindowsUpdatesResourceConnection.md | 24 +- .../Remove-MgWindowsUpdatesUpdatableAsset.md | 31 +- ...ve-MgWindowsUpdatesUpdatableAssetMember.md | 29 +- ...gWindowsUpdatesUpdatableAssetMemberById.md | 29 +- .../Update-MgWindowsUpdatesDeployment.md | 46 +- ...date-MgWindowsUpdatesDeploymentAudience.md | 47 +- ...-MgWindowsUpdatesDeploymentAudienceById.md | 36 +- 1546 files changed, 21767 insertions(+), 23841 deletions(-) create mode 100644 src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl.md create mode 100644 src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef.md create mode 100644 src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef.md create mode 100644 src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredUserByRef.md create mode 100644 src/Users.Actions/Users.Actions/examples/v1.0-beta/Revoke-MgUserSign.md diff --git a/src/Applications/Applications/examples/v1.0-beta/Add-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0-beta/Add-MgApplicationKey.md index 093355d11d5..a9022723b6b 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Add-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0-beta/Add-MgApplicationKey.md @@ -1,18 +1,34 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgApplicationKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyCredential = @{ + Type = "AsymmetricX509Cert" + Usage = "Verify" + Key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...") + } + PasswordCredential = $null + Proof = "eyJ0eXAiOiJ..." +} +Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Add-MgApplicationKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgApplicationKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyCredential = @{ + Type = "X509CertAndPassword" + Usage = "Sign" + Key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...") + } + PasswordCredential = @{ + SecretText = "MKTr0w1..." + } + Proof = "eyJ0eXAiOiJ..." +} +Add-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Add-MgApplicationKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Add-MgServicePrincipalTokenSigningCertificate.md b/src/Applications/Applications/examples/v1.0-beta/Add-MgServicePrincipalTokenSigningCertificate.md index 093355d11d5..57a548717d1 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Add-MgServicePrincipalTokenSigningCertificate.md +++ b/src/Applications/Applications/examples/v1.0-beta/Add-MgServicePrincipalTokenSigningCertificate.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgServicePrincipalTokenSigningCertificate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + DisplayName = "CN=customDisplayName" + EndDateTime = [System.DateTime]::Parse("2024-01-25T00:00:00Z") +} +Add-MgServicePrincipalTokenSigningCertificate -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgServicePrincipalTokenSigningCertificate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Clear-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0-beta/Clear-MgApplicationVerifiedPublisher.md index 093355d11d5..77f5447e896 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Clear-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0-beta/Clear-MgApplicationVerifiedPublisher.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Clear-MgApplicationVerifiedPublisher Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Clear-MgApplicationVerifiedPublisher -ApplicationId $applicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Clear-MgApplicationVerifiedPublisher Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md b/src/Applications/Applications/examples/v1.0-beta/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md index 093355d11d5..bdb3ce04afc 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md +++ b/src/Applications/Applications/examples/v1.0-beta/Find-MgServicePrincipalSynchronizationJobSchemaDirectory.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Find-MgServicePrincipalSynchronizationJobSchemaDirectory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Find-MgServicePrincipalSynchronizationJobSchemaDirectory -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -DirectoryDefinitionId $directoryDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Find-MgServicePrincipalSynchronizationJobSchemaDirectory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationDelta.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationDelta.md index 093355d11d5..4b42606118c 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationDelta.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationExtensionProperty.md index 093355d11d5..14b1502be22 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationExtensionProperty.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationExtensionProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationExtensionProperty -ApplicationId $applicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgApplicationExtensionProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationFederatedIdentityCredential.md index 093355d11d5..869826d975b 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationFederatedIdentityCredential Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgApplicationFederatedIdentityCredential Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationOwner.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationOwner.md index 093355d11d5..9e432ab20d0 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationOwner.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationOwner.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationOwner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationOwner -ApplicationId $applicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationOwner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationSynchronizationAccessToken.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationSynchronizationAccessToken.md index 093355d11d5..0f9e5b6795b 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationSynchronizationAccessToken.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationSynchronizationAccessToken.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationSynchronizationAccessToken Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Credentials = @( + @{ + "@odata.type" = "microsoft.graph.synchronizationSecretKeyStringValuePair" + } + ) +} +Get-MgApplicationSynchronizationAccessToken -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationSynchronizationAccessToken Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTemplate.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTemplate.md index 093355d11d5..3d6e1be9646 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTemplate.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTemplate -ApplicationTemplateId $applicationTemplateId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgApplicationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgApplicationTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTemplate ``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenIssuancePolicy.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenIssuancePolicy.md index 093355d11d5..7451d402851 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenIssuancePolicy.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenIssuancePolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationTokenIssuancePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTokenIssuancePolicy -ApplicationId $applicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenLifetimePolicy.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenLifetimePolicy.md index 093355d11d5..d5f59e6c02e 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenLifetimePolicy.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgApplicationTokenLifetimePolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgApplicationTokenLifetimePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgApplicationTokenLifetimePolicy -ApplicationId $applicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgApplicationTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfile.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfile.md index 093355d11d5..7f636232108 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfile.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfile -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "publishedResources,agents,agentGroups" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgent.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgent.md index 093355d11d5..a1d94d98b5c 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgent.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgent.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileAgent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileAgent -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agentGroups" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOnPremisePublishingProfileAgent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOnPremisePublishingProfileAgent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileAgent -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentId $onPremisesAgentId -ExpandProperty "agentGroups" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileAgent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgentGroup.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgentGroup.md index 093355d11d5..26b31edd002 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgentGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileAgentGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileAgentGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agents,publishedResources" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOnPremisePublishingProfileAgentGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOnPremisePublishingProfileAgentGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentGroupId $onPremisesAgentGroupId -ExpandProperty "publishedResources,agents" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileAgentGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnector.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnector.md index 093355d11d5..de0b43cfc78 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnector.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnector.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnector -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOnPremisePublishingProfileConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOnPremisePublishingProfileConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnector -OnPremisesPublishingProfileId $onPremisesPublishingProfileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroup.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroup.md index 093355d11d5..c3f6983e85f 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileConnectorGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOnPremisePublishingProfileConnectorGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOnPremisePublishingProfileConnectorGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileConnectorGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupApplication.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupApplication.md index 093355d11d5..943c7a846e0 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupApplication.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupApplication.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileConnectorGroupApplication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnectorGroupApplication -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileConnectorGroupApplication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupMember.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupMember.md index 093355d11d5..b5a64f5fd4a 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupMember.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorGroupMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileConnectorGroupMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnectorGroupMember -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileConnectorGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorMemberOf.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorMemberOf.md index 093355d11d5..567e71d2ac7 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorMemberOf.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfileConnectorMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfileConnectorMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfileConnectorMemberOf -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfileConnectorMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfilePublishedResource.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfilePublishedResource.md index 093355d11d5..dddbad0a051 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfilePublishedResource.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgOnPremisePublishingProfilePublishedResource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOnPremisePublishingProfilePublishedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -PublishedResourceId $publishedResourceId -ExpandProperty "agentGroups" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOnPremisePublishingProfilePublishedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOnPremisePublishingProfilePublishedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agentGroups" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOnPremisePublishingProfilePublishedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalAppRoleAssignedTo.md index 093355d11d5..82ca0f055ea 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalAppRoleAssignedTo.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalAppRoleAssignedTo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalAppRoleAssignedTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalClaimMappingPolicy.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalClaimMappingPolicy.md index 093355d11d5..5ddf2575c67 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalClaimMappingPolicy.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalClaimMappingPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalClaimMappingPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalClaimMappingPolicy -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalCreatedObject.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalCreatedObject.md index 093355d11d5..246a628170e 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalCreatedObject.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalCreatedObject.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalCreatedObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalCreatedObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelegatedPermissionClassification.md index 093355d11d5..710883795e7 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalDelegatedPermissionClassification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalDelegatedPermissionClassification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelta.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelta.md index 093355d11d5..2d3f5c4b44b 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelta.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md index 093355d11d5..20b4ce0ea49 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalHomeRealmDiscoveryPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalHomeRealmDiscoveryPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalHomeRealmDiscoveryPolicy -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalMemberOf.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalMemberOf.md index 093355d11d5..e2a2cd77235 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalMemberOf.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalMemberOf -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOauth2PermissionGrant.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOauth2PermissionGrant.md index 093355d11d5..ebf19f7c46d 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOauth2PermissionGrant.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOauth2PermissionGrant.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalOauth2PermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalOauth2PermissionGrant -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOwnedObject.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOwnedObject.md index 093355d11d5..7443ae80461 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOwnedObject.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalOwnedObject.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalOwnedObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalOwnedObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalPasswordSingleSignOnCredentials.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalPasswordSingleSignOnCredentials.md index 093355d11d5..bbc25b76d28 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalPasswordSingleSignOnCredentials.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalPasswordSingleSignOnCredentials.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Id = "5793aa3b-cca9-4794-679a240f8b58" +} +Get-MgServicePrincipalPasswordSingleSignOnCredentials -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJob.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJob.md index 093355d11d5..0b9406c3057 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJob.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJob.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJobSchema.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJobSchema.md index 093355d11d5..a086ee7d47b 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJobSchema.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationJobSchema.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet +```powershell +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId +``` +This example shows how to use the Get-MgServicePrincipalSynchronizationJobSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationTemplate.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationTemplate.md index 093355d11d5..8b619ee2f26 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationTemplate.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalSynchronizationTemplate.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalSynchronizationTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalSynchronizationTemplate -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalSynchronizationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalTransitiveMemberOf.md b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalTransitiveMemberOf.md index 093355d11d5..26d11050a49 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalTransitiveMemberOf.md +++ b/src/Applications/Applications/examples/v1.0-beta/Get-MgServicePrincipalTransitiveMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalTransitiveMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Get-MgServicePrincipalTransitiveMemberOf -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md b/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md index 093355d11d5..47f0dcf9239 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md +++ b/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md b/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md index 093355d11d5..b789eb88bf4 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md +++ b/src/Applications/Applications/examples/v1.0-beta/Invoke-MgFunctionServicePrincipalSynchronizationJobSchema.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgFunctionServicePrincipalSynchronizationJobSchema Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Invoke-MgFunctionServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgFunctionServicePrincipalSynchronizationJobSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Invoke-MgInstantiateApplicationTemplate.md b/src/Applications/Applications/examples/v1.0-beta/Invoke-MgInstantiateApplicationTemplate.md index 093355d11d5..39a99662a9e 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Invoke-MgInstantiateApplicationTemplate.md +++ b/src/Applications/Applications/examples/v1.0-beta/Invoke-MgInstantiateApplicationTemplate.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgInstantiateApplicationTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + DisplayName = "testProperties" +} +Invoke-MgInstantiateApplicationTemplate -ApplicationTemplateId $applicationTemplateId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgInstantiateApplicationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationAppManagementPolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationAppManagementPolicyByRef.md index 093355d11d5..e6572e1c4dd 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationAppManagementPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationAppManagementPolicyByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgApplicationAppManagementPolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/policies/appManagementPolicies/{id}" +} +New-MgApplicationAppManagementPolicyByRef -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgApplicationAppManagementPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationExtensionProperty.md index 093355d11d5..eb112b818fd 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationExtensionProperty.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgApplicationExtensionProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "jobGroup" + DataType = "String" + TargetObjects = @( + "User" + ) +} +New-MgApplicationExtensionProperty -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationFederatedIdentityCredential.md index 093355d11d5..334052bdac3 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgApplicationFederatedIdentityCredential Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "testing02" + Issuer = "https://login.microsoftonline.com/3d1e2be9-a10a-4a0c-8380-7ce190f98ed9/v2.0" + Subject = "a7d388c3-5e3f-4959-ac7d-786b3383006a" + Audiences = @( + "api://AzureADTokenExchange" + ) +} +New-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationSynchronizationTemplate.md b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationSynchronizationTemplate.md index 093355d11d5..cffb81ce3f8 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationSynchronizationTemplate.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationSynchronizationTemplate.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgApplicationSynchronizationTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Id = "SCIM-Test1" + ApplicationId = "{id}" + FactoryTag = "CustomSCIM" +} +New-MgApplicationSynchronizationTemplate -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgApplicationSynchronizationTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationTokenIssuancePolicyByRef.md index 093355d11d5..30b6ed2c9cc 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgApplicationTokenIssuancePolicyByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgApplicationTokenIssuancePolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/policies/tokenIssuancePolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" +} +New-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgApplicationTokenIssuancePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileAgentGroup.md b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileAgentGroup.md index 093355d11d5..b565e7c2c6d 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileAgentGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileAgentGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOnPremisePublishingProfileAgentGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +New-MgOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgOnPremisePublishingProfileAgentGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorGroup.md b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorGroup.md index 093355d11d5..c5ad2376cb5 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorGroup.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOnPremisePublishingProfileConnectorGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "name-value" + IsDefault = $false +} +New-MgOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgOnPremisePublishingProfileConnectorGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgOnPremisePublishingProfileConnectorGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "Connector Group Demo" +} +New-MgOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgOnPremisePublishingProfileConnectorGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorMemberOfByRef.md b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorMemberOfByRef.md index 093355d11d5..cf053b629f0 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorMemberOfByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfileConnectorMemberOfByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOnPremisePublishingProfileConnectorMemberOfByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/onPremisesPublishingProfiles/applicationProxy/connectorGroups/{id}" +} +New-MgOnPremisePublishingProfileConnectorMemberOfByRef -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgOnPremisePublishingProfileConnectorMemberOfByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfilePublishedResource.md b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfilePublishedResource.md index 093355d11d5..9e2874a5263 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfilePublishedResource.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgOnPremisePublishingProfilePublishedResource.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOnPremisePublishingProfilePublishedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + DisplayName = "New provisioning" + ResourceName = "domain1.contoso.com" +} +New-MgOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgOnPremisePublishingProfilePublishedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignedTo.md index 093355d11d5..ecb8a812e56 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignedTo.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalAppRoleAssignedTo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + PrincipalId = "33ad69f9-da99-4bed-acd0-3f24235cb296" + ResourceId = "9028d19c-26a9-4809-8e3f-20ff73e2d75e" + AppRoleId = "ef7437e6-4f94-4a0a-a110-a439eb2aa8f7" +} +New-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalAppRoleAssignedTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignment.md index 39f9ee467b4..2fbc476eb3c 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalAppRoleAssignment.md @@ -1,37 +1,12 @@ -### Example 1: {{ Add title here }} - +### Example 1: Using the New-MgServicePrincipalAppRoleAssignment Cmdlet ```powershell -$appRoleAssignment = @{ - "principalId"= "0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61" - "resourceId"= "557aedfc-007c-4904-918a-7e6fed2e7403" - "appRoleId"= "00000000-0000-0000-0000-000000000000" - } - -New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId 0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61 -BodyParameter $appRoleAssignment | Format-List - -AppRoleId : 00000000-0000-0000-0000-000000000000 -CreatedDateTime : 8/31/2021 2:01:28 PM -DeletedDateTime : -Id : PRLbC6e4yUyMwr0XutBvYfZHkKGzlbxDr2I-QJWN9rs -PrincipalDisplayName : Example App -PrincipalId : 0bdb123d-b8a7-4cc9-8cc2-bd17bad06f61 -PrincipalType : ServicePrincipal -ResourceDisplayName : Office 365 Management APIs -ResourceId : 557aedfc-007c-4904-918a-7e6fed2e7403 -AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#servicePrincipals('0bdb123d-b8a7-4cc9-8cc2-bd17 - bad06f61')/appRoleAssignments/$entity], [@odata.id, https://graph.microsoft.com/v2/fb625e04-52aa-42da-b10d-1 - 4f1195d665f/directoryObjects/$/Microsoft.DirectoryServices.ServicePrincipal('0bdb123d-b8a7-4cc9-8cc2-bd17bad - 06f61')/appRoleAssignments/PRLbC6e4yUyMwr0XutBvYfZHkKGzlbxDr2I-QJWN9rs]} +Import-Module Microsoft.Graph.Applications +$params = @{ + PrincipalId = "9028d19c-26a9-4809-8e3f-20ff73e2d75e" + ResourceId = "8fce32da-1246-437b-99cd-76d1d4677bd5" + AppRoleId = "498476ce-e0fe-48b0-b801-37ba7e2685c6" +} +New-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -In this example, the first command defines the `$appRoleAssignment` variable that defines the following: - --`principalId`: The id of the client service principal to which you are assigning the app role. - --`resourceId`: The id of the resource `servicePrincipal` (the API) which has defined the app role (the application permission). - --`appRoleId`: The id of the appRole (defined on the resource service principal) to assign to the client service principal. - -Learn more about the [AppRoleAssignment resource](/graph/api/resources/approleassignment?view=graph-rest-1.0). - -The second command adds the role to the specified service principal. +This example shows how to use the New-MgServicePrincipalAppRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalClaimMappingPolicyByRef.md index 093355d11d5..1200cdb4596 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalClaimMappingPolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/policies/claimsMappingPolicies/cd3d9b57-0aee-4f25-8ee3-ac74ef5986a9" +} +New-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalDelegatedPermissionClassification.md index 093355d11d5..10a2a668b0e 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalDelegatedPermissionClassification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + PermissionId = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" + PermissionName = "User.Read" + Classification = "low" +} +New-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalDelegatedPermissionClassification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 093355d11d5..6b6b3a8b3a6 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/policies/homeRealmDiscoveryPolicies/6c6f154f-cb39-4ff9-bf5b-62d5ad585cde" +} +New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalPasswordSingleSignOnCredentials.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalPasswordSingleSignOnCredentials.md index 093355d11d5..50cad4f588e 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalPasswordSingleSignOnCredentials.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalPasswordSingleSignOnCredentials.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Id = "5793aa3b-cca9-4794-679a240f8b58" + Credentials = @( + @{ + FieldId = "param_username" + Value = "myusername" + Type = "username" + } + @{ + FieldId = "param_password" + Value = "pa$$w0rd" + Type = "password" + } + ) +} +New-MgServicePrincipalPasswordSingleSignOnCredentials -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJob.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJob.md index 093355d11d5..27cd1b8b712 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJob.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJob.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + TemplateId = "BoxOutDelta" +} +New-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJobOnDemand.md b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJobOnDemand.md index 093355d11d5..c3994b68235 100644 --- a/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJobOnDemand.md +++ b/src/Applications/Applications/examples/v1.0-beta/New-MgServicePrincipalSynchronizationJobOnDemand.md @@ -1,18 +1,92 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Parameters = @( + @{ + RuleId = "6c409270-f78a-4bc6-af23-7cf3ab6482fe" + Subjects = @( + @{ + ObjectId = "CN=AdeleV,CN=Users,DC=corp,DC=chicago,DC=com" + ObjectTypeName = "user" + } + ) + } + ) +} +New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Parameters = @( + @{ + Subjects = @( + @{ + ObjectId = "9bb0f679-a883-4a6f-8260-35b491b8b8c8" + ObjectTypeName = "User" + } + ) + RuleId = "ea807875-5618-4f0a-9125-0b46a05298ca" + } + ) +} +New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet +```powershell +Import-Module Microsoft.Graph.Applications +$params = @{ + Parameters = @( + @{ + RuleId = "33f7c90d-bf71-41b1-bda6-aaf0ddbee5d8#V2" + Subjects = @( + @{ + ObjectId = "8213fd99-d6b6-417b-8e13-af6334856215" + ObjectTypeName = "Group" + Links = @{ + Members = @( + @{ + ObjectId = "cbc86211-6ada-4803-b73f-8039cf56d8a2" + ObjectTypeName = "User" + } + @{ + ObjectId = "2bc86211-6ada-4803-b73f-8039cf56d8a2" + ObjectTypeName = "User" + } + ) + } + } + ) + } + ) +} +New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet +```powershell +Import-Module Microsoft.Graph.Applications +$params = @{ + Parameters = @( + @{ + Subjects = @( + @{ + ObjectId = "9bb0f679-a883-4a6f-8260-35b491b8b8c8" + ObjectTypeName = "User" + } + ) + RuleId = "ea807875-5618-4f0a-9125-0b46a05298ca" + } + ) +} +New-MgServicePrincipalSynchronizationJobOnDemand -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params +``` +This example shows how to use the New-MgServicePrincipalSynchronizationJobOnDemand Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationExtensionProperty.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationExtensionProperty.md index 093355d11d5..a9d88ed5110 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationExtensionProperty.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationExtensionProperty.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationExtensionProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationExtensionProperty -ApplicationId $applicationId -ExtensionPropertyId $extensionPropertyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationExtensionProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationFederatedIdentityCredential.md index 093355d11d5..2874fed579c 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationFederatedIdentityCredential Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationKey.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationKey.md index 093355d11d5..211bb8cbb0d 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationKey.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationKey.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" + Proof = "eyJ0eXAiOiJ..." +} +Remove-MgApplicationKey -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationOwnerByRef.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationOwnerByRef.md index 093355d11d5..f7a280b7768 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationOwnerByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationOwnerByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationOwnerByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationOwnerByRef -ApplicationId $applicationId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationPassword.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationPassword.md index 093355d11d5..1f78cfcb31b 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationPassword.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationPassword.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationPassword Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + KeyId = "f0b0b335-1d71-4883-8f98-567911bfdca6" +} +Remove-MgApplicationPassword -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenIssuancePolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenIssuancePolicyByRef.md index 093355d11d5..55ccb6304e9 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenIssuancePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenIssuancePolicyByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationTokenIssuancePolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationTokenIssuancePolicyByRef -ApplicationId $applicationId -TokenIssuancePolicyId $tokenIssuancePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationTokenIssuancePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenLifetimePolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenLifetimePolicyByRef.md index 093355d11d5..777a40a3775 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenLifetimePolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgApplicationTokenLifetimePolicyByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgApplicationTokenLifetimePolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgApplicationTokenLifetimePolicyByRef -ApplicationId $applicationId -TokenLifetimePolicyId $tokenLifetimePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgApplicationTokenLifetimePolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgGroupAppRoleAssignment.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgGroupAppRoleAssignment.md index 093355d11d5..77e7e67590f 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgGroupAppRoleAssignment.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgGroupAppRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupAppRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgGroupAppRoleAssignment -GroupId $groupId -AppRoleAssignmentId $appRoleAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupAppRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileAgentGroup.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileAgentGroup.md index 093355d11d5..cf18db7c78e 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileAgentGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileAgentGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgOnPremisePublishingProfileAgentGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentGroupId $onPremisesAgentGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgOnPremisePublishingProfileAgentGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileConnectorGroup.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileConnectorGroup.md index 093355d11d5..116e8aee032 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileConnectorGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfileConnectorGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgOnPremisePublishingProfileConnectorGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgOnPremisePublishingProfileConnectorGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md index 093355d11d5..807fc8356b8 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -PublishedResourceId $publishedResourceId -OnPremisesAgentGroupId $onPremisesAgentGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -PublishedResourceId $publishedResourceId -OnPremisesAgentGroupId $onPremisesAgentGroupId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgOnPremisePublishingProfilePublishedResourceAgentGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipal.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipal.md index 093355d11d5..c8cdcb99005 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipal.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipal.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipal Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipal -ServicePrincipalId $servicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipal Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalAppRoleAssignedTo.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalAppRoleAssignedTo.md index 093355d11d5..eeca1c742c8 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalAppRoleAssignedTo.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalAppRoleAssignedTo.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipalAppRoleAssignedTo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalAppRoleAssignedTo -ServicePrincipalId $servicePrincipalId -AppRoleAssignmentId $appRoleAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipalAppRoleAssignedTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalClaimMappingPolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalClaimMappingPolicyByRef.md index 093355d11d5..3bc662a8b15 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalClaimMappingPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalClaimMappingPolicyByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipalClaimMappingPolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalClaimMappingPolicyByRef -ServicePrincipalId $servicePrincipalId -ClaimsMappingPolicyId $claimsMappingPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipalClaimMappingPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalDelegatedPermissionClassification.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalDelegatedPermissionClassification.md index 093355d11d5..d57746674c7 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalDelegatedPermissionClassification.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalDelegatedPermissionClassification.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipalDelegatedPermissionClassification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalDelegatedPermissionClassification -ServicePrincipalId $servicePrincipalId -DelegatedPermissionClassificationId $delegatedPermissionClassificationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipalDelegatedPermissionClassification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md index 093355d11d5..700f0f90dfd 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef -ServicePrincipalId $servicePrincipalId -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalPasswordSingleSignOnCredentials.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalPasswordSingleSignOnCredentials.md index 093355d11d5..b48c1eb1618 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalPasswordSingleSignOnCredentials.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalPasswordSingleSignOnCredentials.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Id = "5793aa3b-cca9-4794-679a240f8b58" +} +Remove-MgServicePrincipalPasswordSingleSignOnCredentials -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalSynchronizationJob.md b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalSynchronizationJob.md index 093355d11d5..a54ca4c1939 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalSynchronizationJob.md +++ b/src/Applications/Applications/examples/v1.0-beta/Remove-MgServicePrincipalSynchronizationJob.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Remove-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Restart-MgServicePrincipalSynchronizationJob.md b/src/Applications/Applications/examples/v1.0-beta/Restart-MgServicePrincipalSynchronizationJob.md index 093355d11d5..3febbe0af85 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Restart-MgServicePrincipalSynchronizationJob.md +++ b/src/Applications/Applications/examples/v1.0-beta/Restart-MgServicePrincipalSynchronizationJob.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restart-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Criteria = @{ + ResetScope = "Watermark, Escrows, QuarantineState" + } +} +Restart-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restart-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationConnectorGroupByRef.md b/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationConnectorGroupByRef.md index 093355d11d5..ab3e7d3204a 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationConnectorGroupByRef.md +++ b/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationConnectorGroupByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgApplicationConnectorGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + "@odata.id" = "https://graph.microsoft.com/onPremisesPublishingProfiles/applicationproxy/connectorGroups/{id}" +} +Set-MgApplicationConnectorGroupByRef -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgApplicationConnectorGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationVerifiedPublisher.md b/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationVerifiedPublisher.md index 093355d11d5..a0e347da0b9 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationVerifiedPublisher.md +++ b/src/Applications/Applications/examples/v1.0-beta/Set-MgApplicationVerifiedPublisher.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgApplicationVerifiedPublisher Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + VerifiedPublisherId = "1234567" +} +Set-MgApplicationVerifiedPublisher -ApplicationId $applicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgApplicationVerifiedPublisher Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Start-MgServicePrincipalSynchronizationJob.md b/src/Applications/Applications/examples/v1.0-beta/Start-MgServicePrincipalSynchronizationJob.md index 093355d11d5..a616335ae89 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Start-MgServicePrincipalSynchronizationJob.md +++ b/src/Applications/Applications/examples/v1.0-beta/Start-MgServicePrincipalSynchronizationJob.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Start-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Suspend-MgServicePrincipalSynchronizationJob.md b/src/Applications/Applications/examples/v1.0-beta/Suspend-MgServicePrincipalSynchronizationJob.md index 093355d11d5..a79b6ddfae9 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Suspend-MgServicePrincipalSynchronizationJob.md +++ b/src/Applications/Applications/examples/v1.0-beta/Suspend-MgServicePrincipalSynchronizationJob.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Suspend-MgServicePrincipalSynchronizationJob Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +Suspend-MgServicePrincipalSynchronizationJob -ServicePrincipalId $servicePrincipalId -SynchronizationJobId $synchronizationJobId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Suspend-MgServicePrincipalSynchronizationJob Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Update-MgApplicationFederatedIdentityCredential.md b/src/Applications/Applications/examples/v1.0-beta/Update-MgApplicationFederatedIdentityCredential.md index 093355d11d5..80f87ba63ce 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Update-MgApplicationFederatedIdentityCredential.md +++ b/src/Applications/Applications/examples/v1.0-beta/Update-MgApplicationFederatedIdentityCredential.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgApplicationFederatedIdentityCredential Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "testing02" + Issuer = "https://login.microsoftonline.com/3d1e2be9-a10a-4a0c-8380-7ce190f98ed9/v2.0" + Subject = "a7d388c3-5e3f-4959-ac7d-786b3383006a" + Description = "Updated description" + Audiences = @( + "api://AzureADTokenExchange" + ) +} +Update-MgApplicationFederatedIdentityCredential -ApplicationId $applicationId -FederatedIdentityCredentialId $federatedIdentityCredentialId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgApplicationFederatedIdentityCredential Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileAgentGroup.md b/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileAgentGroup.md index 093355d11d5..eadb65b6f2d 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileAgentGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileAgentGroup.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOnPremisePublishingProfileAgentGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + DisplayName = "Group New Name" +} +Update-MgOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentGroupId $onPremisesAgentGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOnPremisePublishingProfileAgentGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileConnectorGroup.md b/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileConnectorGroup.md index 093355d11d5..eb13cb61fec 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileConnectorGroup.md +++ b/src/Applications/Applications/examples/v1.0-beta/Update-MgOnPremisePublishingProfileConnectorGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOnPremisePublishingProfileConnectorGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Name = "name-value" + Region = "region-value" +} +Update-MgOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOnPremisePublishingProfileConnectorGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/Applications/examples/v1.0-beta/Update-MgServicePrincipalPasswordSingleSignOnCredentials.md b/src/Applications/Applications/examples/v1.0-beta/Update-MgServicePrincipalPasswordSingleSignOnCredentials.md index 093355d11d5..e073ce5d200 100644 --- a/src/Applications/Applications/examples/v1.0-beta/Update-MgServicePrincipalPasswordSingleSignOnCredentials.md +++ b/src/Applications/Applications/examples/v1.0-beta/Update-MgServicePrincipalPasswordSingleSignOnCredentials.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Applications +$params = @{ + Id = "5793aa3b-cca9-4794-679a240f8b58" + Credentials = @( + @{ + FieldId = "param_username" + Value = "myusername" + Type = "username" + } + @{ + FieldId = "param_password" + Value = "pa$$w0rd" + Type = "password" + } + ) +} +Update-MgServicePrincipalPasswordSingleSignOnCredentials -ServicePrincipalId $servicePrincipalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgServicePrincipalPasswordSingleSignOnCredentials Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusiness.md index 093355d11d5..5e4e59495a4 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusiness.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusiness ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgBookingBusiness Cmdlet +```powershell +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusiness -Query "Adventure" +``` +This example shows how to use the Get-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessAppointment.md index 093355d11d5..2a24f7e9ec7 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessAppointment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusinessAppointment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessAppointment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCalendarView.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCalendarView.md index 093355d11d5..39c2f5ef2c3 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCalendarView.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCalendarView.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusinessCalendarView Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCalendarView -BookingBusinessId $bookingBusinessId -Start "2018-04-30T00:00:00Z" -End "2018-05-10T00:00:00Z" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusinessCalendarView Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomQuestion.md index 093355d11d5..b16a3d1cd22 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusinessCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomer.md index 093355d11d5..ab1515f7aa0 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessCustomer.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusinessCustomer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerId $bookingCustomerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessCustomer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessService.md index 093355d11d5..4269849934b 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessService.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusinessService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessService -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessStaffMember.md index 093355d11d5..60b44303428 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingBusinessStaffMember.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingBusinessStaffMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberId $bookingStaffMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingBusinessStaffMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingCurrency.md b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingCurrency.md index 093355d11d5..c483e26dabc 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingCurrency.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Get-MgBookingCurrency.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBookingCurrency Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingCurrency ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgBookingCurrency Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgBookingCurrency Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Get-MgBookingCurrency -BookingCurrencyId $bookingCurrencyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgBookingCurrency Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusiness.md index 093355d11d5..acefac58049 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusiness.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + DisplayName = "Fourth Coffee" + Address = @{ + PostOfficeBox = "P.O. Box 123" + Street = "4567 Main Street" + City = "Buffalo" + State = "NY" + CountryOrRegion = "USA" + PostalCode = "98052" + } + Phone = "206-555-0100" + Email = "manager@fourthcoffee.com" + WebSiteUrl = "https://www.fourthcoffee.com" + DefaultCurrencyIso = "USD" +} +New-MgBookingBusiness -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessAppointment.md index 093355d11d5..551fd2e189f 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessAppointment.md @@ -1,18 +1,151 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgBookingBusinessAppointment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingAppointment" + CustomerEmailAddress = "jordanm@contoso.com" + CustomerLocation = @{ + "@odata.type" = "#microsoft.graph.location" + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + City = "Buffalo" + CountryOrRegion = "USA" + PostalCode = "98052" + PostOfficeBox = $null + State = "NY" + Street = "123 First Avenue" + "Type@odata.type" = "#microsoft.graph.physicalAddressType" + Type = $null + } + Coordinates = $null + DisplayName = "Customer" + LocationEmailAddress = $null + "LocationType@odata.type" = "#microsoft.graph.locationType" + LocationType = $null + LocationUri = $null + UniqueId = $null + "UniqueIdType@odata.type" = "#microsoft.graph.locationUniqueIdType" + UniqueIdType = $null + } + CustomerName = "Jordan Miller" + CustomerNotes = "Please be on time." + CustomerPhone = "213-555-0199" + CustomerTimeZone = "America/Chicago" + SmsNotificationsEnabled = $true + End = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-01T12:30:00.0000000+00:00" + TimeZone = "UTC" + } + InvoiceAmount = 10 + InvoiceDate = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-01T12:30:00.0000000+00:00" + TimeZone = "UTC" + } + InvoiceId = "1001" + "InvoiceStatus@odata.type" = "#microsoft.graph.bookingInvoiceStatus" + InvoiceStatus = "open" + InvoiceUrl = "theInvoiceUrl" + IsLocationOnline = $true + OptOutOfCustomerEmail = $false + AnonymousJoinWebUrl = $null + PostBuffer = "PT10M" + PreBuffer = "PT5M" + Price = 10 + "PriceType@odata.type" = "#microsoft.graph.bookingPriceType" + PriceType = "fixedPrice" + "Reminders@odata.type" = "#Collection(microsoft.graph.bookingReminder)" + Reminders = @( + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "This service is tomorrow" + Offset = "P1D" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "allAttendees" + } + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "Please be available to enjoy your lunch service." + Offset = "PT1H" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "customer" + } + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "Please check traffic for next cater." + Offset = "PT2H" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "staff" + } + ) + ServiceId = "57da6774-a087-4d69-b0e6-6fb82c339976" + ServiceLocation = @{ + "@odata.type" = "#microsoft.graph.location" + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + City = "Buffalo" + CountryOrRegion = "USA" + PostalCode = "98052" + PostOfficeBox = $null + State = "NY" + Street = "123 First Avenue" + "Type@odata.type" = "#microsoft.graph.physicalAddressType" + Type = $null + } + Coordinates = $null + DisplayName = "Customer location" + LocationEmailAddress = $null + "LocationType@odata.type" = "#microsoft.graph.locationType" + LocationType = $null + LocationUri = $null + UniqueId = $null + "UniqueIdType@odata.type" = "#microsoft.graph.locationUniqueIdType" + UniqueIdType = $null + } + ServiceName = "Catered bento" + ServiceNotes = "Customer requires punctual service." + Start = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-01T12:00:00.0000000+00:00" + TimeZone = "UTC" + } + MaximumAttendeesCount = 5 + FilledAttendeesCount = 1 + Customers = @( + @{ + "@odata.type" = "#microsoft.graph.bookingCustomerInformation" + CustomerId = "7ed53fa5-9ef2-4f2f-975b-27447440bc09" + Name = "Jordan Miller" + EmailAddress = "jordanm@contoso.com" + Phone = "213-555-0199" + Notes = $null + Location = @{ + "@odata.type" = "#microsoft.graph.location" + DisplayName = "Customer" + LocationEmailAddress = $null + LocationUri = "" + LocationType = $null + UniqueId = $null + UniqueIdType = $null + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + Type = "home" + PostOfficeBox = "" + Street = "" + City = "" + State = "" + CountryOrRegion = "" + PostalCode = "" + } + } + TimeZone = "America/Chicago" + CustomQuestionAnswers = @( + ) + } + ) +} +New-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessCustomer.md index 093355d11d5..4b96ce0602e 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessCustomer.md @@ -1,18 +1,41 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgBookingBusinessCustomer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + DisplayName = "Joni Sherman" + EmailAddress = "jonis@relecloud.com" + Addresses = @( + @{ + PostOfficeBox = "" + Street = "4567 Main Street" + City = "Buffalo" + State = "NY" + CountryOrRegion = "USA" + PostalCode = "98052" + Type = "home" + } + @{ + PostOfficeBox = "" + Street = "4570 Main Street" + City = "Buffalo" + State = "NY" + CountryOrRegion = "USA" + PostalCode = "98054" + Type = "business" + } + ) + Phones = @( + @{ + Number = "206-555-0100" + Type = "home" + } + @{ + Number = "206-555-0200" + Type = "business" + } + ) +} +New-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessService.md index 093355d11d5..110daa8f015 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessService.md @@ -1,18 +1,70 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgBookingBusinessService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingService" + DefaultDuration = "PT1H30M" + DefaultLocation = @{ + "@odata.type" = "#microsoft.graph.location" + Address = @{ + "@odata.type" = "#microsoft.graph.physicalAddress" + City = "Buffalo" + CountryOrRegion = "USA" + PostalCode = "98052" + PostOfficeBox = $null + State = "NY" + Street = "4567 First Street" + "Type@odata.type" = "#microsoft.graph.physicalAddressType" + Type = $null + } + Coordinates = $null + DisplayName = "Contoso Lunch Delivery" + LocationEmailAddress = $null + "LocationType@odata.type" = "#microsoft.graph.locationType" + LocationType = $null + LocationUri = $null + UniqueId = $null + "UniqueIdType@odata.type" = "#microsoft.graph.locationUniqueIdType" + UniqueIdType = $null + } + DefaultPrice = 10 + "DefaultPriceType@odata.type" = "#microsoft.graph.bookingPriceType" + DefaultPriceType = "fixedPrice" + "DefaultReminders@odata.type" = "#Collection(microsoft.graph.bookingReminder)" + DefaultReminders = @( + @{ + "@odata.type" = "#microsoft.graph.bookingReminder" + Message = "Please be reminded that this service is tomorrow." + Offset = "P1D" + "Recipients@odata.type" = "#microsoft.graph.bookingReminderRecipients" + Recipients = "allAttendees" + } + ) + Description = "Individual bento box lunch delivery" + DisplayName = "Bento" + IsLocationOnline = $true + SmsNotificationsEnabled = $true + LanguageTag = "en-US" + IsHiddenFromCustomers = $false + Notes = "Home-cooked special" + PostBuffer = "PT10M" + PreBuffer = "PT5M" + SchedulingPolicy = @{ + "@odata.type" = "#microsoft.graph.bookingSchedulingPolicy" + AllowStaffSelection = $true + MaximumAdvance = "P10D" + MinimumLeadTime = "PT10H" + SendConfirmationsToOwner = $true + TimeSlotInterval = "PT1H" + } + "StaffMemberIds@odata.type" = "#Collection(String)" + StaffMemberIds = @( + "d90d1e8c-5cfe-48cf-a2d5-966267375b6a" + "2f5f8794-0b29-45b5-b56a-2eb5ff7aa880" + ) + IsAnonymousJoinEnabled = $false +} +New-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessStaffMember.md index 093355d11d5..f4cbb633822 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/New-MgBookingBusinessStaffMember.md @@ -1,18 +1,86 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgBookingBusinessStaffMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingStaffMember" + ColorIndex = 1 + DisplayName = "Dana Swope" + EmailAddress = "danas@contoso.com" + "Role@odata.type" = "#microsoft.graph.bookingStaffRole" + Role = "externalGuest" + TimeZone = "America/Chicago" + UseBusinessHours = $true + "WorkingHours@odata.type" = "#Collection(microsoft.graph.bookingWorkHours)" + WorkingHours = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "monday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "tuesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "wednesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "thursday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "friday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + ) + IsEmailNotificationEnabled = $false +} +New-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Publish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0-beta/Publish-MgBookingBusiness.md index 093355d11d5..d91860344b5 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Publish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Publish-MgBookingBusiness.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Publish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusiness.md index 093355d11d5..84933be35a7 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusiness.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessAppointment.md index 093355d11d5..f92bcc7df5c 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessAppointment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgBookingBusinessAppointment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomQuestion.md index 093355d11d5..51a0ba0af7e 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgBookingBusinessCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomer.md index 093355d11d5..10e6df5c822 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessCustomer.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgBookingBusinessCustomer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerId $bookingCustomerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessService.md index 093355d11d5..e494b1f117d 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessService.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgBookingBusinessService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessStaffMember.md index 093355d11d5..564dc011725 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Remove-MgBookingBusinessStaffMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgBookingBusinessStaffMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Remove-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberId $bookingStaffMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Stop-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0-beta/Stop-MgBookingBusinessAppointment.md index 093355d11d5..43a06d3ae9f 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Stop-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Stop-MgBookingBusinessAppointment.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgBookingBusinessAppointment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + CancellationMessage = "Your appointment has been successfully cancelled. Please call us again." +} +Stop-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Unpublish-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0-beta/Unpublish-MgBookingBusiness.md index 093355d11d5..d1a3aa9f2d0 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Unpublish-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Unpublish-MgBookingBusiness.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Unpublish-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +Unpublish-MgBookingBusiness -BookingBusinessId $bookingBusinessId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Unpublish-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusiness.md b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusiness.md index 093355d11d5..6a64110a44e 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusiness.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusiness.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgBookingBusiness Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + Email = "admin@fabrikam.com" + SchedulingPolicy = @{ + TimeSlotInterval = "PT60M" + MinimumLeadTime = "P1D" + MaximumAdvance = "P30D" + SendConfirmationsToOwner = $true + AllowStaffSelection = $true + } +} +Update-MgBookingBusiness -BookingBusinessId $bookingBusinessId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgBookingBusiness Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessAppointment.md b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessAppointment.md index 093355d11d5..0b2755ec759 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessAppointment.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessAppointment.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgBookingBusinessAppointment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingAppointment" + End = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-06T12:30:00.0000000+00:00" + TimeZone = "UTC" + } + InvoiceDate = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-06T12:30:00.0000000+00:00" + TimeZone = "UTC" + } + Start = @{ + "@odata.type" = "#microsoft.graph.dateTimeTimeZone" + DateTime = "2018-05-06T12:00:00.0000000+00:00" + TimeZone = "UTC" + } +} +Update-MgBookingBusinessAppointment -BookingBusinessId $bookingBusinessId -BookingAppointmentId $bookingAppointmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgBookingBusinessAppointment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomQuestion.md b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomQuestion.md index 093355d11d5..b27df262376 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomQuestion.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomQuestion.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgBookingBusinessCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingCustomQuestion" + DisplayName = "What is your age?" + AnswerInputType = "text" + AnswerOptions = @( + ) +} +Update-MgBookingBusinessCustomQuestion -BookingBusinessId $bookingBusinessId -BookingCustomQuestionId $bookingCustomQuestionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgBookingBusinessCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomer.md b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomer.md index 093355d11d5..70b79680189 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomer.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessCustomer.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgBookingBusinessCustomer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + DisplayName = "Adele" + EmailAddress = "adele@relecloud.com" +} +Update-MgBookingBusinessCustomer -BookingBusinessId $bookingBusinessId -BookingCustomerId $bookingCustomerId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgBookingBusinessCustomer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessService.md b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessService.md index 093355d11d5..12850936771 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessService.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessService.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgBookingBusinessService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + "@odata.type" = "#microsoft.graph.bookingService" + DefaultDuration = "PT30M" +} +Update-MgBookingBusinessService -BookingBusinessId $bookingBusinessId -BookingServiceId $bookingServiceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgBookingBusinessService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessStaffMember.md b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessStaffMember.md index 093355d11d5..bc6a09214c2 100644 --- a/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessStaffMember.md +++ b/src/Bookings/Bookings/examples/v1.0-beta/Update-MgBookingBusinessStaffMember.md @@ -1,18 +1,71 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgBookingBusinessStaffMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Bookings +$params = @{ + WorkingHours = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "monday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "tuesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "wednesday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "thursday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + @{ + "@odata.type" = "#microsoft.graph.bookingWorkHours" + "Day@odata.type" = "#microsoft.graph.dayOfWeek" + Day = "friday" + "TimeSlots@odata.type" = "#Collection(microsoft.graph.bookingWorkTimeSlot)" + TimeSlots = @( + @{ + "@odata.type" = "#microsoft.graph.bookingWorkTimeSlot" + End = "17:00:00.0000000" + Start = "08:00:00.0000000" + } + ) + } + ) +} +Update-MgBookingBusinessStaffMember -BookingBusinessId $bookingBusinessId -BookingStaffMemberId $bookingStaffMemberId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgBookingBusinessStaffMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEvent.md index 093355d11d5..576d1eba13b 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEvent.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgGroupEvent -GroupId $groupId -EventId $eventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgGroupEvent -GroupId $groupId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEventExtension.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEventExtension.md index 093355d11d5..b7963e8c734 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEventExtension.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgGroupEventExtension.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupEventExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgGroupEventExtension -GroupId $groupId -EventId $eventId -ExtensionId $extensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupEventExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgPlace.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgPlace.md index 093355d11d5..76f2da902c7 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgPlace.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlace Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlace Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPlace Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPlace Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgPlace Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgPlace Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +Get-MgPlace -PlaceId $placeId +``` +This example shows how to use the Get-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendar.md index 093355d11d5..c2cc0bf05b2 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendar.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserCalendar Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendar -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroup.md index 093355d11d5..991c27561b2 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroup.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserCalendarGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserCalendarGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarGroup -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroupCalendar.md index 093355d11d5..1c75f2e36ac 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarGroupCalendar.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserCalendarGroupCalendar Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserCalendarGroupCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarPermission.md index 093355d11d5..7c6799f1684 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarPermission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserCalendarPermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Get-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserCalendarPermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarView.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarView.md index 093355d11d5..eb8c3653d2f 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarView.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserCalendarView.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserCalendarView Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserCalendarView Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserDefaultCalendar.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserDefaultCalendar.md index 093355d11d5..9fed45b71bd 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserDefaultCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserDefaultCalendar.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserDefaultCalendar Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserDefaultCalendar -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserDefaultCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEvent.md index 093355d11d5..b5bc0c1a73d 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEvent.md @@ -1,18 +1,48 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,locations" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location,hideAttendees" +``` +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -EventId $eventId -Property "subject,start,end,occurrenceId,exceptionOccurrences,cancelledOccurrences" -ExpandProperty "exceptionOccurrences" +``` +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -Property "subject,body,bodyPreview" +``` +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEvent -UserId $userId -Property "subject,body,bodyPreview,organizer,attendees,start,end,location" +``` +This example shows how to use the Get-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventAttachment.md index 093355d11d5..1e85ceb5fe2 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventAttachment.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserEventAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEventAttachment -UserId $userId -EventId $eventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserEventAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventInstance.md b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventInstance.md index 093355d11d5..08323588c4b 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventInstance.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Get-MgUserEventInstance.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserEventInstance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Get-MgUserEventInstance -UserId $userId -EventId $eventId -Startdatetime "2019-04-08T09:00:00.0000000" -Enddatetime "2019-04-30T09:00:00.0000000" -Property "subject,bodyPreview,seriesMasterId,type,recurrence,start,end" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserEventInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEvent.md index 093355d11d5..4bf78c8910b 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEvent.md @@ -1,18 +1,34 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does late morning work for you?" + } + Start = @{ + DateTime = "2019-06-15T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-06-15T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "adelev@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) +} +New-MgGroupEvent -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEventExtension.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEventExtension.md index 093355d11d5..cabc218dd0f 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEventExtension.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgGroupEventExtension.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupEventExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.openTypeExtension" + ExtensionName = "Com.Contoso.Deal" + CompanyName = "Alpine Skis" + DealValue = + ExpirationDate = "2015-07-03T13:04:00.000Z" +} +New-MgGroupEventExtension -GroupId $groupId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupEventExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendar.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendar.md index 093355d11d5..781e86826e4 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendar.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserCalendar Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "Volunteer" +} +# A UPN can also be used as -UserId. +New-MgUserCalendar -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarEvent.md index 093355d11d5..dee80e6d9ba 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarEvent.md @@ -1,18 +1,73 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserCalendarEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does next month work for you?" + } + Start = @{ + DateTime = "2019-03-10T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-03-10T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "adelev@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) + TransactionId = "7E163156-7762-4BEB-A1C6-729EA81755A7" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserCalendarEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserCalendarEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does next month work for you?" + } + Start = @{ + DateTime = "2019-03-10T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-03-10T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "adelev@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) + IsOnlineMeeting = $true + OnlineMeetingProvider = "teamsForBusiness" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserCalendarEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroup.md index 093355d11d5..59deb1bb319 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserCalendarGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "Personal events" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroupCalendar.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroupCalendar.md index 093355d11d5..a86929c5c42 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroupCalendar.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserCalendarGroupCalendar.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserCalendarGroupCalendar Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "Marketing calendar" +} +# A UPN can also be used as -UserId. +New-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserCalendarGroupCalendar Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEvent.md index 093355d11d5..803716be1ee 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEvent.md @@ -1,18 +1,236 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Plan summer company picnic" + Body = @{ + ContentType = "HTML" + Content = "Let's kick-start this event planning!" + } + Start = @{ + DateTime = "2017-08-30T11:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-08-30T12:00:00" + TimeZone = "Pacific Standard Time" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "DanaS@contoso.onmicrosoft.com" + Name = "Dana Swope" + } + Type = "Required" + } + @{ + EmailAddress = @{ + Address = "AlexW@contoso.onmicrosoft.com" + Name = "Alex Wilber" + } + Type = "Required" + } + ) + Location = @{ + DisplayName = "Conf Room 3; Fourth Coffee; Home Office" + LocationType = "Default" + } + Locations = @( + @{ + DisplayName = "Conf Room 3" + } + @{ + DisplayName = "Fourth Coffee" + Address = @{ + Street = "4567 Main St" + City = "Redmond" + State = "WA" + CountryOrRegion = "US" + PostalCode = "32008" + } + Coordinates = @{ + Latitude = 47.672 + Longitude = -102.103 + } + } + @{ + DisplayName = "Home Office" + } + ) + AllowNewTimeProposals = $true +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon work for you?" + } + Start = @{ + DateTime = "2017-04-15T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-04-15T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + Type = "required" + } + ) + AllowNewTimeProposals = $true + TransactionId = "7E163156-7762-4BEB-A1C6-729EA81755A7" +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon work for you?" + } + Start = @{ + DateTime = "2017-04-15T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-04-15T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + Type = "required" + } + ) + AllowNewTimeProposals = $true + IsOnlineMeeting = $true + OnlineMeetingProvider = "teamsForBusiness" +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon work for you?" + } + Start = @{ + DateTime = "2020-02-25T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2020-02-25T14:00:00" + TimeZone = "Pacific Standard Time" + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "AlexW@contoso.OnMicrosoft.com" + Name = "Alex Wilbur" + } + Type = "required" + } + ) + Recurrence = @{ + Pattern = @{ + Type = "daily" + Interval = 1 + } + Range = @{ + Type = "numbered" + StartDate = "2020-02-25" + NumberOfOccurrences = 2 + } + } +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgUserEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +$params = @{ + Subject = "Let's go for lunch" + Body = @{ + ContentType = "HTML" + Content = "Does noon time work for you?" + } + Start = @{ + DateTime = "2017-09-04T12:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2017-09-04T14:00:00" + TimeZone = "Pacific Standard Time" + } + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + DaysOfWeek = @( + "Monday" + ) + } + Range = @{ + Type = "endDate" + StartDate = "2017-09-04" + EndDate = "2017-12-31" + } + } + Location = @{ + DisplayName = "Harry's Bar" + } + Attendees = @( + @{ + EmailAddress = @{ + Address = "AdeleV@contoso.onmicrosoft.com" + Name = "Adele Vance" + } + Type = "required" + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserEvent -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEventAttachment.md index 093355d11d5..52158009060 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/New-MgUserEventAttachment.md @@ -1,18 +1,60 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserEventAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "menu.txt" + ContentBytes = "bWFjIGFuZCBjaGVlc2UgdG9kYXk=" +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserEventAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#microsoft.graph.itemAttachment" + Name = "Holiday event" + Item = @{ + "@odata.type" = "microsoft.graph.event" + Subject = "Discuss gifts for children" + } +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgUserEventAttachment Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#Microsoft.OutlookServices.ItemAttachment" + Name = "name-value" + Item = @{ + "@odata.type" = "microsoft.graph.message" + } +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgUserEventAttachment Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "#microsoft.graph.referenceAttachment" + Name = "Personal pictures" + SourceUrl = "https://contoso.com/personal/mario_contoso_net/Documents/Pics" + ProviderType = "oneDriveConsumer" + Permission = "Edit" + IsFolder = "True" +} +# A UPN can also be used as -UserId. +New-MgUserEventAttachment -UserId $userId -EventId $eventId -BodyParameter $params +``` +This example shows how to use the New-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgGroupEvent.md index 093355d11d5..b69e6e26919 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgGroupEvent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Remove-MgGroupEvent -GroupId $groupId -EventId $eventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarGroup.md index 093355d11d5..0a5a38ea9a2 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarGroup.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserCalendarGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarPermission.md index 093355d11d5..a8dec818457 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserCalendarPermission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserCalendarPermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +Remove-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserCalendarPermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEvent.md index 093355d11d5..83f110d9576 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEvent.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Remove-MgUserEvent -UserId $userId -EventId $eventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEventAttachment.md b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEventAttachment.md index 093355d11d5..d12deabc02e 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEventAttachment.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Remove-MgUserEventAttachment.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserEventAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +# A UPN can also be used as -UserId. +Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserEventAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgGroupEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgGroupEvent.md index 093355d11d5..8e00c6e88e2 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgGroupEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgGroupEvent.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgGroupEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + OriginalStartTimeZone = "originalStartTimeZone-value" + OriginalEndTimeZone = "originalEndTimeZone-value" + ResponseStatus = @{ + Response = "" + Time = [System.DateTime]::Parse("datetime-value") + } + Uid = "iCalUId-value" + ReminderMinutesBeforeStart = 99 + IsReminderOn = $true +} +Update-MgGroupEvent -GroupId $groupId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgGroupEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgPlace.md b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgPlace.md index 093355d11d5..5915276ef61 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgPlace.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgPlace.md @@ -1,18 +1,56 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlace Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.room" + Nickname = "Conf Room" + Building = "1" + Label = "100" + Capacity = + IsWheelChairAccessible = $false +} +Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgPlace Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.roomList" + DisplayName = "Building 1" + Phone = "555-555-0100" + Address = @{ + Street = "4567 Main Street" + City = "Buffalo" + State = "NY" + PostalCode = "98052" + CountryOrRegion = "USA" + } + GeoCoordinates = @{ + Altitude = $null + Latitude = 47 + Longitude = -122 + Accuracy = $null + AltitudeAccuracy = $null + } +} +Update-MgPlace -PlaceId $placeId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgPlace Cmdlet +```powershell +Import-Module Microsoft.Graph.Calendar +$params = @{ + "@odata.type" = "microsoft.graph.workspace" + Nickname = "Conf Room" + Building = "1" + Label = "100" + Capacity = + IsWheelChairAccessible = $false +} +Update-MgPlace -PlaceId $placeId -BodyParameter $params +``` +This example shows how to use the Update-MgPlace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarGroup.md b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarGroup.md index 093355d11d5..b97af7a03ef 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarGroup.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserCalendarGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Name = "name-value" +} +# A UPN can also be used as -UserId. +Update-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserCalendarGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarPermission.md b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarPermission.md index 093355d11d5..c18b7480d51 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarPermission.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserCalendarPermission.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserCalendarPermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + Role = "write" +} +Update-MgUserCalendarPermission -UserId $userId -CalendarPermissionId $calendarPermissionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserCalendarPermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserEvent.md b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserEvent.md index 093355d11d5..876f507d7e8 100644 --- a/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserEvent.md +++ b/src/Calendar/Calendar/examples/v1.0-beta/Update-MgUserEvent.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Calendar +$params = @{ + OriginalStartTimeZone = "originalStartTimeZone-value" + OriginalEndTimeZone = "originalEndTimeZone-value" + ResponseStatus = @{ + Response = "" + Time = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + } + Recurrence = $null + Uid = "iCalUId-value" + ReminderMinutesBeforeStart = 99 + IsOnlineMeeting = $true + OnlineMeetingProvider = "teamsForBusiness" + IsReminderOn = $true + HideAttendees = $false + Categories = @( + "Red category" + ) +} +# A UPN can also be used as -UserId. +Update-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Get-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Get-MgSubscription.md index 093355d11d5..1769d906f4e 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Get-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Get-MgSubscription.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSubscription Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +Get-MgSubscription -SubscriptionId $subscriptionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSubscription Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +Get-MgSubscription ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/New-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/New-MgSubscription.md index 093355d11d5..04a885a039d 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/New-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/New-MgSubscription.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSubscription Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +$params = @{ + ChangeType = "created" + NotificationUrl = "https://webhook.azurewebsites.net/api/send/myNotifyClient" + Resource = "me/mailFolders('Inbox')/messages" + ExpirationDateTime = [System.DateTime]::Parse("2016-11-20T18:23:45.9356913Z") + ClientState = "secretClientValue" + LatestSupportedTlsVersion = "v1_2" +} +New-MgSubscription -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Remove-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Remove-MgSubscription.md index 093355d11d5..b3e85fc18fc 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Remove-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Remove-MgSubscription.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSubscription Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +Remove-MgSubscription -SubscriptionId $subscriptionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Update-MgSubscription.md b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Update-MgSubscription.md index 093355d11d5..63f13de21ad 100644 --- a/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Update-MgSubscription.md +++ b/src/ChangeNotifications/ChangeNotifications/examples/v1.0-beta/Update-MgSubscription.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSubscription Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.ChangeNotifications +$params = @{ + ExpirationDateTime = [System.DateTime]::Parse("2016-11-22T18:23:45.9356913Z") +} +Update-MgSubscription -SubscriptionId $subscriptionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Add-MgCommunicationCallLargeGalleryView.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Add-MgCommunicationCallLargeGalleryView.md index 093355d11d5..79c20739b5c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Add-MgCommunicationCallLargeGalleryView.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Add-MgCommunicationCallLargeGalleryView.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgCommunicationCallLargeGalleryView Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "785f4929-92ca-497b-863f-c778c77c9758" +} +Add-MgCommunicationCallLargeGalleryView -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgCommunicationCallLargeGalleryView Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCall.md index 093355d11d5..a72fdeaa6d5 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCall.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCall -CallId $callId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCall -CallId $callId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallAudioRoutingGroup.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallAudioRoutingGroup.md index 093355d11d5..aa29fc2fd9c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallAudioRoutingGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCallAudioRoutingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgCommunicationCallAudioRoutingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallAudioRoutingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallAudioRoutingGroup -CallId $callId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCallAudioRoutingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallContentSharingSession.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallContentSharingSession.md index 093355d11d5..a28f7bd2a6e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallContentSharingSession.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallContentSharingSession.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCallContentSharingSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallContentSharingSession -CallId $callId -ContentSharingSessionId $contentSharingSessionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgCommunicationCallContentSharingSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallContentSharingSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallContentSharingSession -CallId $callId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCallContentSharingSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallOperation.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallOperation.md index 093355d11d5..f64f840ca45 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallOperation.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCallOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallOperation -CallId $callId -CommsOperationId $commsOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCallOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallParticipant.md index 093355d11d5..72149e2e232 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallParticipant.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallParticipant -CallId $callId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecord.md index 093355d11d5..98881a1e09c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecord.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCallRecord Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallRecord Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgCommunicationCallRecord Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId -ExpandProperty "sessions(`$expand=segments)" +``` +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgCommunicationCallRecord Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecord -CallRecordId $callRecordId +``` +This example shows how to use the Get-MgCommunicationCallRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecordSession.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecordSession.md index 093355d11d5..bb37f1e1840 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationCallRecordSession.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationCallRecordSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId -ExpandProperty "segments" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgCommunicationCallRecordSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgCommunicationCallRecordSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationCallRecordSession -CallRecordId $callRecordId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationCallRecordSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationOnlineMeeting.md index 093355d11d5..f9a1cbbf31f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationOnlineMeeting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationOnlineMeeting -Filter "VideoTeleconferenceId eq '123456789'" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresence.md index 093355d11d5..556595a1c6e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresence.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationPresence Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgCommunicationPresence -PresenceId $presenceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresenceByUserId.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresenceByUserId.md index 093355d11d5..a60acba208c 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresenceByUserId.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgCommunicationPresenceByUserId.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgCommunicationPresenceByUserId Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Ids = @( + "fa8bf3dc-eca7-46b7-bad1-db199b62afc3" + "66825e03-7ef5-42da-9069-724602c31f6b" + ) +} +Get-MgCommunicationPresenceByUserId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgCommunicationPresenceByUserId Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReport.md index 093355d11d5..1007c598f27 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReport.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingAttendanceReport Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId -ExpandProperty "attendanceRecords" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReport Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnlineMeetingAttendanceReport Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingAttendanceReport -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReport Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 093355d11d5..b24671c5786 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingAttendanceReportId $meetingAttendanceReportId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRecording.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRecording.md index 093355d11d5..c6007192202 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRecording.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRecording.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingRecording Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingRecording -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingRecording Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistration.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistration.md index 093355d11d5..f8af61b5ece 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistration.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistration.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingRegistration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingRegistration -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnlineMeetingRegistration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnlineMeetingRegistration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingRegistration -UserId $userId -OnlineMeetingId $onlineMeetingId -ExpandProperty "microsoft.graph.meetingRegistration/customQuestions" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingRegistration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistrationCustomQuestion.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistrationCustomQuestion.md index 093355d11d5..160d8510e00 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistrationCustomQuestion.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingRegistrationCustomQuestion.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingRegistrationCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserOnlineMeetingRegistrationCustomQuestion -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingRegistrationQuestionId $meetingRegistrationQuestionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingRegistrationCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscript.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscript.md index 093355d11d5..0aea8b57a02 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscript.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscript.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingTranscript Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserOnlineMeetingTranscript -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnlineMeetingTranscript Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnlineMeetingTranscript Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserOnlineMeetingTranscript -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingTranscript Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscriptContent.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscriptContent.md index 093355d11d5..29b29aff08b 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserOnlineMeetingTranscriptContent.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnlineMeetingTranscriptContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnlineMeetingTranscriptContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnlineMeetingTranscriptContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -Format "text/vtt" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnlineMeetingTranscriptContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserOnlineMeetingTranscriptContent Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId -Format "text/vtt" +``` +This example shows how to use the Get-MgUserOnlineMeetingTranscriptContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserOnlineMeetingTranscriptContent Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserOnlineMeetingTranscriptContent -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId +``` +This example shows how to use the Get-MgUserOnlineMeetingTranscriptContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserPresence.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserPresence.md index 093355d11d5..f1e2247c590 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserPresence.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Get-MgUserPresence.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPresence Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Get-MgUserPresence -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserPresence Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Get-MgUserPresence -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgAnswerCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgAnswerCommunicationCall.md index 093355d11d5..c5d621c3d32 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgAnswerCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgAnswerCommunicationCall.md @@ -1,18 +1,39 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAnswerCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CallbackUri = "https://bot.contoso.com/api/calls" + AcceptedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } +} +Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgAnswerCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgAnswerCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CallbackUri = "callbackUri-value" + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } + AcceptedModalities = @( + "audio" + ) + CallOptions = @{ + "@odata.type" = "#microsoft.graph.incomingCallOptions" + IsContentSharingNotificationEnabled = $true + } + ParticipantCapacity = 200 +} +Invoke-MgAnswerCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAnswerCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgInviteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgInviteCommunicationCallParticipant.md index 093355d11d5..7976b6df033 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgInviteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgInviteCommunicationCallParticipant.md @@ -1,18 +1,179 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "278405a3-f568-4b3e-b684-009193463064" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "278405a3-f568-4b3e-b684-009193463064" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "278405a3-f568-4b3e-b684-009193463064" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "7e1b4346-85a6-4bdd-abe3-d11c5d420efe" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + ParticipantId = "7d501bf1-5ee4-4605-ba92-0ae4513c611c" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "682b6c37-0729-4fab-ace6-d730d5d9137e" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Invoke-MgInviteCommunicationCallParticipant Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "7e1b4346-85a6-4bdd-abe3-d11c5d420efe" + IdentityProvider = "AAD" + } + } + } + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + ReplacesCallId = "a7ebfb2d-871e-419c-87af-27290b22e8db" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "1e126418-44a0-4a94-a6f8-0efe1ad71acb" + IdentityProvider = "AAD" + } + } + } + ) + ClientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f" +} +Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params +``` +This example shows how to use the Invoke-MgInviteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgKeepCommunicationCallAlive.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgKeepCommunicationCallAlive.md index 093355d11d5..c6c112f320d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgKeepCommunicationCallAlive.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgKeepCommunicationCallAlive.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgKeepCommunicationCallAlive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Invoke-MgKeepCommunicationCallAlive -CallId $callId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgKeepCommunicationCallAlive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 093355d11d5..4c27e107509 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -1,18 +1,91 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Quality = @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceQuality" + CallChainId = "0622673d-9f69-49b3-9d4f-5ec64f42ecce" + ParticipantId = "ea078406-b5d4-4d3c-b85e-90103dcec7f6" + MediaLegId = "bd9ee398-4b9d-42c7-8b8d-4e8efad9435f" + DeviceName = "TestAgent" + DeviceDescription = "TestDescription" + MediaQualityList = @( + @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceAudioQuality" + ChannelIndex = 1 + MediaDuration = "PT20M" + NetworkLinkSpeedInBytes = 13000 + LocalIPAddress = "127.0.0.1" + LocalPort = 6300 + RemoteIPAddress = "102.1.1.101" + RemotePort = 6301 + InboundPackets = 5500 + OutboundPackets = 5400 + AverageInboundPacketLossRateInPercentage = 0.01 + AverageOutboundPacketLossRateInPercentage = 0.02 + MaximumInboundPacketLossRateInPercentage = 0.05 + MaximumOutboundPacketLossRateInPercentage = 0.06 + AverageInboundRoundTripDelay = "PT0.03S" + AverageOutboundRoundTripDelay = "PT0.04S" + MaximumInboundRoundTripDelay = "PT0.13S" + MaximumOutboundRoundTripDelay = "PT0.14S" + AverageInboundJitter = "PT0.01S" + AverageOutboundJitter = "PT0.015S" + MaximumInboundJitter = "PT0.023S" + MaximumOutboundJitter = "PT0.024S" + } + @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceVideoQuality" + ChannelIndex = 1 + MediaDuration = "PT20M" + NetworkLinkSpeedInBytes = 13000 + LocalIPAddress = "127.0.0.1" + LocalPort = 6300 + RemoteIPAddress = "102.1.1.101" + RemotePort = 6301 + InboundPackets = 5500 + OutboundPackets = 5400 + AverageInboundPacketLossRateInPercentage = 0.01 + AverageOutboundPacketLossRateInPercentage = 0.02 + MaximumInboundPacketLossRateInPercentage = 0.05 + MaximumOutboundPacketLossRateInPercentage = 0.06 + AverageInboundRoundTripDelay = "PT0.03S" + AverageOutboundRoundTripDelay = "PT0.04S" + MaximumInboundRoundTripDelay = "PT0.13S" + MaximumOutboundRoundTripDelay = "PT0.14S" + AverageInboundJitter = "PT0.01S" + AverageOutboundJitter = "PT0.015S" + MaximumInboundJitter = "PT0.023S" + MaximumOutboundJitter = "PT0.024S" + } + @{ + "@odata.type" = "#microsoft.graph.teleconferenceDeviceScreenSharingQuality" + ChannelIndex = 1 + MediaDuration = "PT20M" + NetworkLinkSpeedInBytes = 13000 + LocalIPAddress = "127.0.0.1" + LocalPort = 6300 + RemoteIPAddress = "102.1.1.101" + RemotePort = 6301 + InboundPackets = 5500 + OutboundPackets = 5400 + AverageInboundPacketLossRateInPercentage = 0.01 + AverageOutboundPacketLossRateInPercentage = 0.02 + MaximumInboundPacketLossRateInPercentage = 0.05 + MaximumOutboundPacketLossRateInPercentage = 0.06 + AverageInboundRoundTripDelay = "PT0.03S" + AverageOutboundRoundTripDelay = "PT0.04S" + MaximumInboundRoundTripDelay = "PT0.13S" + MaximumOutboundRoundTripDelay = "PT0.14S" + AverageInboundJitter = "PT0.01S" + AverageOutboundJitter = "PT0.015S" + MaximumInboundJitter = "PT0.023S" + MaximumOutboundJitter = "PT0.024S" + } + ) + } +} +Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteAllCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteAllCommunicationCallParticipant.md index 093355d11d5..eb2389412c4 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteAllCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteAllCommunicationCallParticipant.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMuteAllCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Participants = @( + "" + ) + ClientContext = "clientContext-value" +} +Invoke-MgMuteAllCommunicationCallParticipant -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMuteAllCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCall.md index 093355d11d5..3c22f79fe0e 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCall.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMuteCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" +} +Invoke-MgMuteCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMuteCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCallParticipant.md index 093355d11d5..aed263de925 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgMuteCommunicationCallParticipant.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMuteCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" +} +Invoke-MgMuteCommunicationCallParticipant -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMuteCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgPlayCommunicationCallPrompt.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgPlayCommunicationCallPrompt.md index 093355d11d5..b44b69ee3cf 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgPlayCommunicationCallPrompt.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgPlayCommunicationCallPrompt.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgPlayCommunicationCallPrompt Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" + Prompts = @( + @{ + "@odata.type" = "#microsoft.graph.mediaPrompt" + MediaInfo = @{ + "@odata.type" = "#microsoft.graph.mediaInfo" + Uri = "https://cdn.contoso.com/beep.wav" + ResourceId = "1D6DE2D4-CD51-4309-8DAA-70768651088E" + } + } + ) + Loop = $false +} +Invoke-MgPlayCommunicationCallPrompt -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgPlayCommunicationCallPrompt Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRecordCommunicationCallResponse.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRecordCommunicationCallResponse.md index 093355d11d5..ea4770278a5 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRecordCommunicationCallResponse.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRecordCommunicationCallResponse.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgRecordCommunicationCallResponse Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + BargeInAllowed = $true + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" + Prompts = @( + @{ + "@odata.type" = "#microsoft.graph.mediaPrompt" + } + ) + MaxRecordDurationInSeconds = 10 + InitialSilenceTimeoutInSeconds = 5 + MaxSilenceTimeoutInSeconds = 2 + PlayBeep = $true + StopTones = @( + "#" + "1" + "*" + ) +} +Invoke-MgRecordCommunicationCallResponse -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgRecordCommunicationCallResponse Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRedirectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRedirectCommunicationCall.md index 093355d11d5..78de10da0db 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRedirectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRedirectCommunicationCall.md @@ -1,18 +1,45 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgRedirectCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Application = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "test bot 2" + Id = "22bfd41f-550e-477d-8789-f6f7bd2a5e8b" + } + } + } + ) + CallbackUri = "https://bot.contoso.com/api/calls/24701998-1a73-4d42-8085-bf46ed0ae039" +} +Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgRedirectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgRedirectCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + CallbackUri = "https://bot.contoso.com/api/calls/24701998-1a73-4d42-8085-bf46ed0ae039" +} +Invoke-MgRedirectCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgRedirectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRejectCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRejectCommunicationCall.md index 093355d11d5..46c6566b76a 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRejectCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgRejectCommunicationCall.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgRejectCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Reason = "none" +} +Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgRejectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgRejectCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Reason = "busy" +} +Invoke-MgRejectCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgRejectCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgSubscribeCommunicationCallToTone.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgSubscribeCommunicationCallToTone.md index 093355d11d5..77e69a9ac3d 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgSubscribeCommunicationCallToTone.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSubscribeCommunicationCallToTone Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "fd1c7836-4d84-4e24-b6aa-23188688cc54" +} +Invoke-MgSubscribeCommunicationCallToTone -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSubscribeCommunicationCallToTone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgUnmuteCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgUnmuteCommunicationCall.md index 093355d11d5..be188d22540 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgUnmuteCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Invoke-MgUnmuteCommunicationCall.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnmuteCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" +} +Invoke-MgUnmuteCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnmuteCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Move-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Move-MgCommunicationCall.md index 093355d11d5..162577f71bb 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Move-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Move-MgCommunicationCall.md @@ -1,18 +1,119 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Move-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + EndpointType = "default" + Identity = @{ + User = @{ + Id = "550fae72-d251-43ec-868c-373732c2704f" + TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47" + DisplayName = "Heidi Steen" + } + } + LanguageId = "languageId-value" + Region = "region-value" + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Move-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + EndpointType = "default" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "550fae72-d251-43ec-868c-373732c2704f" + TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47" + DisplayName = "Heidi Steen" + } + } + LanguageId = "en-us" + Region = "amer" + ReplacesCallId = "e5d39592-99bd-4db8-bca8-30fb894ec51d" + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Move-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + EndpointType = "default" + Identity = @{ + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + LanguageId = "languageId-value" + Region = "region-value" + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Move-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + EndpointType = "default" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + LanguageId = "en-us" + Region = "amer" + ReplacesCallId = "e5d39592-99bd-4db8-bca8-30fb894ec51d" + } +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Move-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + TransferTarget = @{ + EndpointType = "default" + Identity = @{ + User = @{ + Id = "550fae72-d251-43ec-868c-373732c2704f" + TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47" + DisplayName = "Heidi Steen" + } + } + } + Transferee = @{ + Identity = @{ + User = @{ + Id = "751f6800-3180-414d-bd94-333364659951" + TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47" + } + } + ParticipantId = "909c6581-5130-43e9-88f3-fcb3582cde37" + } + LanguageId = "languageId-value" + Region = "region-value" +} +Move-MgCommunicationCall -CallId $callId -BodyParameter $params +``` +This example shows how to use the Move-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCall.md index 093355d11d5..4f5829c2799 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCall.md @@ -1,18 +1,493 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Application = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Calling Bot" + Id = "2891555a-92ff-42e6-80fa-6e1300c6b5c6" + } + } + Region = $null + LanguageId = $null + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "John" + Id = "112f7296-5fa4-42ca-bae8-6a692b15d4b8" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } +} +New-MgCommunicationCall -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "John" + Id = "112f7296-5fa4-42ca-bae8-6a692b15d4b8" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + CallOptions = @{ + "@odata.type" = "#microsoft.graph.outgoingCallOptions" + IsContentSharingNotificationEnabled = $true + } + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + } +} +New-MgCommunicationCall -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + ApplicationInstance = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Calling Bot" + Id = "3d913abb-aec0-4964-8fa6-3c6850c4f278" + } + } + CountryCode = $null + EndpointType = $null + Region = $null + LanguageId = $null + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + ApplicationInstance = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Calling Bot" + Id = "3d913abb-aec0-4964-8fa6-3c6850c4f278" + } + } + CountryCode = $null + EndpointType = $null + Region = $null + LanguageId = $null + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Phone = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "+12345678901" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + Direction = "outgoing" + Subject = "Create a group call with app hosted media" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Application = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "TestBot" + Id = "dd3885da-f9ab-486b-bfae-85de3d445555" + } + } + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "user1" + Id = "98da8a1a-1b87-452c-a713-65d3f10b5555" + } + } + } + @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "user2" + Id = "bf5aae9a-d11d-47a8-93b1-782504c95555" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + RemoveFromDefaultAudioGroup = $false + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + Direction = "outgoing" + Subject = "Create a group call with service hosted media" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Application = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "TestBot" + Id = "dd3885da-f9ab-486b-bfae-85de3d445555" + } + } + } + Targets = @( + @{ + "@odata.type" = "#microsoft.graph.invitationParticipantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "user1" + Id = "98da8a1a-1b87-452c-a713-65d3f10b5555" + } + } + } + @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "user2" + Id = "bf5aae9a-d11d-47a8-93b1-782504c95555" + } + } + } + ) + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + RemoveFromDefaultAudioGroup = $false + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + Source = @{ + "@odata.type" = "#microsoft.graph.participantInfo" + Identity = @{ + "@odata.type" = "#microsoft.graph.identitySet" + Guest = @{ + "@odata.type" = "#microsoft.graph.identity" + DisplayName = "Guest User" + Id = "d7a3b999-17ac-4bca-9e77-e6a730d2ec2e" + } + } + } + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + PreFetchMedia = @( + ) + } + ChatInfo = @{ + "@odata.type" = "#microsoft.graph.chatInfo" + ThreadId = "19:cbee7c1c860e465f8258e3cebf7bee0d@thread.skype" + MessageId = "1533758867081" + } + MeetingInfo = @{ + "@odata.type" = "#microsoft.graph.organizerMeetingInfo" + Organizer = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "5810cede-f3cc-42eb-b2c1-e9bd5d53ec96" + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" + DisplayName = "Bob" + } + } + AllowConversationWithoutHost = $true + } +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + PreFetchMedia = @( + ) + } + ChatInfo = @{ + "@odata.type" = "#microsoft.graph.chatInfo" + ThreadId = "19:cbee7c1c860e465f8258e3cebf7bee0d@thread.skype" + MessageId = "1533758867081" + } + MeetingInfo = @{ + "@odata.type" = "#microsoft.graph.organizerMeetingInfo" + Organizer = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "5810cede-f3cc-42eb-b2c1-e9bd5d53ec96" + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" + DisplayName = "Bob" + } + } + AllowConversationWithoutHost = $true + } +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 9: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + Direction = "outgoing" + CallbackUri = "https://bot.contoso.com/callback" + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.appHostedMediaConfig" + Blob = "" + } + ChatInfo = @{ + "@odata.type" = "#microsoft.graph.chatInfo" + ThreadId = "19:meeting_Win6Ydo4wsMijFjZS00ZGVjLTk5MGUtOTRjNWY2NmNkYTFm@thread.v2" + MessageId = "0" + } + MeetingInfo = @{ + "@odata.type" = "#microsoft.graph.organizerMeetingInfo" + Organizer = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "5810cede-f3cc-42eb-b2c1-e9bd5d53ec96" + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" + DisplayName = "Bob" + } + } + AllowConversationWithoutHost = $true + } + TenantId = "aa67bd4c-8475-432d-bd41-39f255720e0a" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 10: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + PreFetchMedia = @( + ) + } + ChatInfo = @{ + "@odata.type" = "#microsoft.graph.chatInfo" + ThreadId = "19:meeting_Win6Ydo4wsMijFjZS00ZGVjLTk5MGUtOTRjNWY2NmNkYTFm@thread.v2" + MessageId = "0" + } + MeetingInfo = @{ + "@odata.type" = "#microsoft.graph.organizerMeetingInfo" + Organizer = @{ + "@odata.type" = "#microsoft.graph.identitySet" + User = @{ + "@odata.type" = "#microsoft.graph.identity" + Id = "5810cede-f3cc-42eb-b2c1-e9bd5d53ec96" + TenantId = "9f386a15-f9cc-445b-8106-ac85e314a07b" + DisplayName = "Bob" + } + } + AllowConversationWithoutHost = $true + } + TenantId = "86dc81db-c112-4228-9222-63f3esaa1edb" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 11: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + PreFetchMedia = @( + ) + } + MeetingInfo = @{ + "@odata.type" = "#microsoft.graph.joinMeetingIdMeetingInfo" + JoinMeetingId = "1234567" + Passcode = "psw123" + } + TenantId = "86dc81db-c112-4228-9222-63f3esaa1edb" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 12: Using the New-MgCommunicationCall Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + "@odata.type" = "#microsoft.graph.call" + CallbackUri = "https://bot.contoso.com/callback" + RequestedModalities = @( + "audio" + ) + MediaConfig = @{ + "@odata.type" = "#microsoft.graph.serviceHostedMediaConfig" + PreFetchMedia = @( + ) + } + MeetingInfo = @{ + "@odata.type" = "#microsoft.graph.joinMeetingIdMeetingInfo" + JoinMeetingId = "1234567" + Passcode = $null + } + TenantId = "86dc81db-c112-4228-9222-63f3esaa1edb" +} +New-MgCommunicationCall -BodyParameter $params +``` +This example shows how to use the New-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCallAudioRoutingGroup.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCallAudioRoutingGroup.md index 093355d11d5..70a7a38db93 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCallAudioRoutingGroup.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgCommunicationCallAudioRoutingGroup.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgCommunicationCallAudioRoutingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Id = "oneToOne" + RoutingMode = "oneToOne" + Sources = @( + "632899f8-2ea1-4604-8413-27bd2892079f" + ) + Receivers = @( + "550fae72-d251-43ec-868c-373732c2704f" + ) +} +New-MgCommunicationCallAudioRoutingGroup -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgCommunicationCallAudioRoutingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgUserOnlineMeeting.md index 093355d11d5..5365de1e1e4 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/New-MgUserOnlineMeeting.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + StartDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00") + EndDateTime = [System.DateTime]::Parse("2019-07-12T15:00:34.2464912-07:00") + Subject = "User Token Meeting" +} +# A UPN can also be used as -UserId. +New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCall.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCall.md index 093355d11d5..ab885f07af7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCall.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCall.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgCommunicationCall Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCall -CallId $callId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgCommunicationCall Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallAudioRoutingGroup.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallAudioRoutingGroup.md index 093355d11d5..482c50640d8 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgCommunicationCallAudioRoutingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgCommunicationCallAudioRoutingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallParticipant.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallParticipant.md index 093355d11d5..2e2307375d1 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgCommunicationCallParticipant.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgCommunicationCallParticipant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Remove-MgCommunicationCallParticipant Cmdlet +```powershell +Import-Module Microsoft.Graph.CloudCommunications +Remove-MgCommunicationCallParticipant -CallId $callId -ParticipantId $participantId +``` +This example shows how to use the Remove-MgCommunicationCallParticipant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeeting.md index 093355d11d5..4bb2a06bfde 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeeting.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Remove-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistration.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistration.md index 093355d11d5..a4b5b0c7e67 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistration.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistration.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOnlineMeetingRegistration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Remove-MgUserOnlineMeetingRegistration -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgUserOnlineMeetingRegistration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgUserOnlineMeetingRegistration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Remove-MgUserOnlineMeetingRegistration -UserId $userId -OnlineMeetingId $onlineMeetingId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOnlineMeetingRegistration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistrationCustomQuestion.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistrationCustomQuestion.md index 093355d11d5..21cd4518238 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistrationCustomQuestion.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Remove-MgUserOnlineMeetingRegistrationCustomQuestion.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOnlineMeetingRegistrationCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +# A UPN can also be used as -UserId. +Remove-MgUserOnlineMeetingRegistrationCustomQuestion -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingRegistrationQuestionId $meetingRegistrationQuestionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOnlineMeetingRegistrationCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Rename-MgCommunicationCallScreenSharingRole.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Rename-MgCommunicationCallScreenSharingRole.md index 093355d11d5..d243da27c61 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Rename-MgCommunicationCallScreenSharingRole.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Rename-MgCommunicationCallScreenSharingRole.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Rename-MgCommunicationCallScreenSharingRole Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Role = "viewer" +} +Rename-MgCommunicationCallScreenSharingRole -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Rename-MgCommunicationCallScreenSharingRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Start-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Start-MgCommunicationCallParticipantHoldMusic.md index 093355d11d5..6806abfe935 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Start-MgCommunicationCallParticipantHoldMusic.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgCommunicationCallParticipantHoldMusic Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + CustomPrompt = @{ + "@odata.type" = "#microsoft.graph.mediaPrompt" + MediaInfo = @{ + "@odata.type" = "#microsoft.graph.mediaInfo" + Uri = "https://bot.contoso.com/onHold.wav" + } + } + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" +} +Start-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgCommunicationCallParticipantHoldMusic Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallMediaProcessing.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallMediaProcessing.md index 093355d11d5..27be968ba66 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallMediaProcessing.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallMediaProcessing.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgCommunicationCallMediaProcessing Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" +} +Stop-MgCommunicationCallMediaProcessing -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgCommunicationCallMediaProcessing Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallParticipantHoldMusic.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallParticipantHoldMusic.md index 093355d11d5..5cee3411d01 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgCommunicationCallParticipantHoldMusic Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "d45324c1-fcb5-430a-902c-f20af696537c" +} +Stop-MgCommunicationCallParticipantHoldMusic -CallId $callId -ParticipantId $participantId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgCommunicationCallParticipantHoldMusic Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallAudioRoutingGroup.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallAudioRoutingGroup.md index 093355d11d5..444b84c928a 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallAudioRoutingGroup.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgCommunicationCallAudioRoutingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Id = "oneToOne" + RoutingMode = "oneToOne" + Sources = @( + "632899f8-2ea1-4604-8413-27bd2892079f" + ) + Receivers = @( + "550fae72-d251-43ec-868c-373732c2704f" + "72f988bf-86f1-41af-91ab-2d7cd011db47" + ) +} +Update-MgCommunicationCallAudioRoutingGroup -CallId $callId -AudioRoutingGroupId $audioRoutingGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgCommunicationCallAudioRoutingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallRecordingStatus.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallRecordingStatus.md index 093355d11d5..73347809cf7 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallRecordingStatus.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgCommunicationCallRecordingStatus.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgCommunicationCallRecordingStatus Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + ClientContext = "clientContext-value" + Status = "notRecording | recording | failed" +} +Update-MgCommunicationCallRecordingStatus -CallId $callId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgCommunicationCallRecordingStatus Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeeting.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeeting.md index 093355d11d5..364851416fc 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeeting.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeeting.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + LobbyBypassSettings = @{ + IsDialInBypassEnabled = $true + } +} +# A UPN can also be used as -UserId. +Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgUserOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + StartDateTime = [System.DateTime]::Parse("2020-09-09T14:33:30.8546353-07:00") + EndDateTime = [System.DateTime]::Parse("2020-09-09T15:03:30.8566356-07:00") + Subject = "Patch Meeting Subject" +} +# A UPN can also be used as -UserId. +Update-MgUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistration.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistration.md index 093355d11d5..8eefbf588e3 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistration.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistration.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOnlineMeetingRegistration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + Subject = "Microsoft Ignite: Day 1" + StartDateTime = [System.DateTime]::Parse("2021-11-02T08:00:00-08:00") + EndDateTime = [System.DateTime]::Parse("2021-11-02T15:45:00-08:00") + Speakers = @( + @{ + DisplayName = "Henry Ross" + Bio = "Chairman and Chief Executive Officer" + } + @{ + DisplayName = "Fred Ryan" + Bio = "CVP" + } + ) +} +# A UPN can also be used as -UserId. +Update-MgUserOnlineMeetingRegistration -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOnlineMeetingRegistration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistrationCustomQuestion.md b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistrationCustomQuestion.md index 093355d11d5..f33c3d3835f 100644 --- a/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistrationCustomQuestion.md +++ b/src/CloudCommunications/CloudCommunications/examples/v1.0-beta/Update-MgUserOnlineMeetingRegistrationCustomQuestion.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOnlineMeetingRegistrationCustomQuestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CloudCommunications +$params = @{ + AnswerInputType = "radioButton" + AnswerOptions = @( + "Software Engineer" + "Software Development Manager" + "Product Manager" + "Data scientist" + "Other" + ) +} +# A UPN can also be used as -UserId. +Update-MgUserOnlineMeetingRegistrationCustomQuestion -UserId $userId -OnlineMeetingId $onlineMeetingId -MeetingRegistrationQuestionId $meetingRegistrationQuestionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOnlineMeetingRegistrationCustomQuestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetQueryTag.md b/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetQueryTag.md index 093355d11d5..e0cefc107dc 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetQueryTag.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgComplianceEdiscoveryCaseReviewSetQueryTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + TagsToAdd = @( + @{ + Id = "b4798d14-748d-468e-a1ec-96a2b1d49677" + } + ) +} +Add-MgComplianceEdiscoveryCaseReviewSetQueryTag -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgComplianceEdiscoveryCaseReviewSetQueryTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet.md b/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet.md index 093355d11d5..3014f288724 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + SourceCollection = @{ + Id = "1a9b4145d8f84e39bc45a7f68c5c5119" + } + AdditionalData = "linkedFiles" +} +Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet -CaseId $caseId -ReviewSetId $reviewSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgComplianceEdiscoveryCaseReviewSetToReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Clear-MgComplianceEdiscoveryCaseSourceCollectionData.md b/src/Compliance/Compliance/examples/v1.0-beta/Clear-MgComplianceEdiscoveryCaseSourceCollectionData.md index 093355d11d5..625e384b241 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Clear-MgComplianceEdiscoveryCaseSourceCollectionData.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Clear-MgComplianceEdiscoveryCaseSourceCollectionData.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Clear-MgComplianceEdiscoveryCaseSourceCollectionData Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Clear-MgComplianceEdiscoveryCaseSourceCollectionData -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Clear-MgComplianceEdiscoveryCaseSourceCollectionData Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Close-MgComplianceEdiscoveryCase.md b/src/Compliance/Compliance/examples/v1.0-beta/Close-MgComplianceEdiscoveryCase.md index 093355d11d5..41fd60d5a8c 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Close-MgComplianceEdiscoveryCase.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Close-MgComplianceEdiscoveryCase.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Close-MgComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Close-MgComplianceEdiscoveryCase -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Close-MgComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Export-MgComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/Compliance/examples/v1.0-beta/Export-MgComplianceEdiscoveryCaseReviewSet.md index 093355d11d5..d50442585e0 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Export-MgComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Export-MgComplianceEdiscoveryCaseReviewSet.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Export-MgComplianceEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + OutputName = "2020-12-06 Contoso investigation export" + Description = "Export for the Contoso investigation" + ExportOptions = "originalFiles,fileInfo,tags" + ExportStructure = "directory" +} +Export-MgComplianceEdiscoveryCaseReviewSet -CaseId $caseId -ReviewSetId $reviewSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Export-MgComplianceEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCase.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCase.md index 093355d11d5..bec75550114 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCase.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCase.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCase -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCase ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodian.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodian.md index 093355d11d5..611705fd4e1 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodian.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodian -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..d8413184db2 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId -SiteSourceId $siteSourceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..57e62c7de5e 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -UnifiedGroupSourceId $unifiedGroupSourceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUserSource.md index 093355d11d5..8c66253b816 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId -UserSourceId $userSourceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHold.md index 093355d11d5..b9c3485097d 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHold.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseLegalHold -CaseId $caseId -LegalHoldId $legalHoldId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseLegalHold -CaseId $caseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d5..a534552a63d 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource -CaseId $caseId -LegalHoldId $legalHoldId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldUserSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldUserSource.md index 093355d11d5..5f0049bc640 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseLegalHoldUserSource -CaseId $caseId -LegalHoldId $legalHoldId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..ad05d18155d 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -NoncustodialDataSourceId $noncustodialDataSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperation.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperation.md index 093355d11d5..cc198ba6e44 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperation.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseOperation -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl.md new file mode 100644 index 00000000000..f73c1e901d7 --- /dev/null +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl.md @@ -0,0 +1,7 @@ +### Example 1: Using the Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl Cmdlet +```powershell +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl -CaseId $caseId -CaseOperationId $caseOperationId +``` +This example shows how to use the Get-MgComplianceEdiscoveryCaseOperationMicrosoftGraphEdiscoveryCaseExportOperationDownloadUrl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSet.md index 093355d11d5..6c6ec213674 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSet.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseReviewSet -CaseId $caseId -ReviewSetId $reviewSetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseReviewSet -CaseId $caseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSetQuery.md index 093355d11d5..14741bca340 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSetting.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSetting.md index 093355d11d5..61f86f46d1e 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSetting.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSetting.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSetting -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSetting -CaseId $caseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollection.md index 093355d11d5..efc0512d24e 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollection.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSourceCollection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -SourceCollectionId $sourceCollectionId -ExpandProperty "addToReviewSetOperation,custodianSources,lastEstimateStatisticsOperation" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseSourceCollection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollection -CaseId $caseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md index 093355d11d5..f7a71ee36b1 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md index 093355d11d5..5f457d460e0 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource.md index 093355d11d5..6c6659b3d21 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollectionCustodianSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md index 093355d11d5..fe077adc855 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md index 093355d11d5..0e57a2a85a7 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTag.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTag.md index 093355d11d5..5c7a3ee61bb 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTag.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseTag -CaseId $caseId -TagId $tagId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgComplianceEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgComplianceEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseTag -CaseId $caseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTagChildTag.md b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTagChildTag.md index 093355d11d5..a71b36f2310 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTagChildTag.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Get-MgComplianceEdiscoveryCaseTagChildTag.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgComplianceEdiscoveryCaseTagChildTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Get-MgComplianceEdiscoveryCaseTagChildTag -CaseId $caseId -TagId $tagId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgComplianceEdiscoveryCaseTagChildTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Initialize-MgComplianceEdiscoveryCaseCustodian.md b/src/Compliance/Compliance/examples/v1.0-beta/Initialize-MgComplianceEdiscoveryCaseCustodian.md index 093355d11d5..c3405f8af02 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Initialize-MgComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Initialize-MgComplianceEdiscoveryCaseCustodian.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Initialize-MgComplianceEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Initialize-MgComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Initialize-MgComplianceEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy.md b/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy.md index 093355d11d5..0d9090f39fb 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAsComplianceEdiscoveryCaseTagHierarchy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md b/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md index 093355d11d5..5afe479c901 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgEstimateComplianceEdiscoveryCaseSourceCollectionStatistics Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgReopenComplianceEdiscoveryCase.md b/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgReopenComplianceEdiscoveryCase.md index 093355d11d5..3c7001f6316 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgReopenComplianceEdiscoveryCase.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Invoke-MgReopenComplianceEdiscoveryCase.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReopenComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Invoke-MgReopenComplianceEdiscoveryCase -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReopenComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCase.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCase.md index 093355d11d5..13c2aaeeb10 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCase.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCase.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "My Case 1" +} +New-MgComplianceEdiscoveryCase -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodian.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodian.md index 093355d11d5..d2e9f1fe202 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodian.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Email = "AdeleV@contoso.com" + ApplyHoldToSources = "true" +} +New-MgComplianceEdiscoveryCaseCustodian -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..590b69c2384 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Site = @{ + WebUrl = "https://contoso.sharepoint.com/sites/HumanResources" + } +} +New-MgComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..68f8e4f2064 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Group = @{ + Mail = "SecretGroup@contoso.com" + } + IncludedSources = "mailbox, site" +} +New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/b96f95c5-b1b3-4142-b039-8ac79e7d2c84" + IncludedSources = "mailbox, site" +} +New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUserSource.md index 093355d11d5..cc287cad539 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Email = "megan@contoso.com" + IncludedSources = "mailbox, site" +} +New-MgComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHold.md index 093355d11d5..f7c874a7a1d 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHold.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + "@odata.type" = "#microsoft.graph.ediscovery.legalHold" + Description = "String" + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + IsEnabled = "Boolean" + Status = "String" + ContentQuery = "String" + Errors = @( + "String" + ) + DisplayName = "String" +} +New-MgComplianceEdiscoveryCaseLegalHold -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d5..57d32cdf6e8 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Site = @{ + WebUrl = "https://contoso.sharepoint.com/sites/SecretSite" + } +} +New-MgComplianceEdiscoveryCaseLegalHoldSiteSource -CaseId $caseId -LegalHoldId $legalHoldId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldUserSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldUserSource.md index 093355d11d5..0a1785b5a8a 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Email = "adelev@contoso.com" + IncludedSources = "mailbox" +} +New-MgComplianceEdiscoveryCaseLegalHoldUserSource -CaseId $caseId -LegalHoldId $legalHoldId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..867b70a3b55 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + ApplyHoldToSource = $true + DataSource = @{ + "@odata.type" = "microsoft.graph.ediscovery.userSource" + Email = "adelev@contoso.com" + } +} +New-MgComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + ApplyHoldToSource = $false + DataSource = @{ + "@odata.type" = "microsoft.graph.ediscovery.siteSource" + } +} +New-MgComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSet.md index 093355d11d5..6d2731f0c2c 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSet.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "My Reviewset 3" +} +New-MgComplianceEdiscoveryCaseReviewSet -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSetQuery.md index 093355d11d5..e663454a3b6 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "My Query 1" + Query = "(subject:"Quarterly Financials")" +} +New-MgComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollection.md index 093355d11d5..5847a1ebac2 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollection.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseSourceCollection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "Quarterly Financials search" + ContentQuery = "subject:'Quarterly Financials'" + "CustodianSources@odata.bind" = @( + "https://graph.microsoft.com/beta/compliance/ediscovery/cases/47746044-fd0b-4a30-acfc-5272b691ba5b/custodians/2192ca408ea2410eba3bec8ae873be6b/userSources/46384443-4137-3032-3437-363939433735" + ) +} +New-MgComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseSourceCollection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md index 093355d11d5..46489a125fe 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md @@ -1,18 +1,31 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + "@odata.type" = "microsoft.graph.ediscovery.siteSource" +} +New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + "@odata.type" = "microsoft.graph.ediscovery.userSource" + Email = "badguy@contoso.com" +} +New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet +```powershell +Import-Module Microsoft.Graph.Compliance +$params = @{ + "@odata.type" = "microsoft.graph.ediscovery.siteSource" +} +New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params +``` +This example shows how to use the New-MgComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef.md new file mode 100644 index 00000000000..b4897d3f8f7 --- /dev/null +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef.md @@ -0,0 +1,10 @@ +### Example 1: Using the New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef Cmdlet +```powershell +Import-Module Microsoft.Graph.Compliance +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/compliance/ediscovery/cases/47746044-fd0b-4a30-acfc-5272b691ba5b/custodians/ab3a628a383045eba344b3caecba3104/userSources/31423539-3846-4333-4136-353644383531" +} +New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params +``` +This example shows how to use the New-MgComplianceEdiscoveryCaseSourceCollectionCustodianSourceByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef.md new file mode 100644 index 00000000000..7c6021c2eaf --- /dev/null +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef.md @@ -0,0 +1,10 @@ +### Example 1: Using the New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef Cmdlet +```powershell +Import-Module Microsoft.Graph.Compliance +$params = @{ + "@odata.id" = "https://canary.graph.microsoft.com/testprodbetancsdsaslist/compliance/ediscovery/cases/06d52284-ed81-49b8-904a-b863d3164731/noncustodialDataSources/39383530323537383742433232433246" +} +New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params +``` +This example shows how to use the New-MgComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseTag.md b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseTag.md index 093355d11d5..344d202df37 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/New-MgComplianceEdiscoveryCaseTag.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgComplianceEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "Privileged" + Description = "The document is privileged" + "Parent@odata.bind" = "https://graph.microsoft.com/beta/compliance/ediscovery/cases/47746044-fd0b-4a30-acfc-5272b691ba5b/tags/98fdad78bbce4519b75474bc150575c3" +} +New-MgComplianceEdiscoveryCaseTag -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgComplianceEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseCustodian.md b/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseCustodian.md index 093355d11d5..50b97970889 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseCustodian.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgComplianceEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Publish-MgComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgComplianceEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..53cf3df6585 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -NoncustodialDataSourceId $noncustodialDataSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCase.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCase.md index 093355d11d5..a9fe1ef0b5d 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCase.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCase.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCase -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..050a03256b8 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId -SiteSourceId $siteSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..e9d21137c0c 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -UnifiedGroupSourceId $unifiedGroupSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUserSource.md index 093355d11d5..69eac83740e 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId -UserSourceId $userSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseLegalHold.md index 093355d11d5..cc84ff0cbf3 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseLegalHold.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseLegalHold -CaseId $caseId -LegalHoldId $legalHoldId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseReviewSetQuery.md index 093355d11d5..a5f5d994839 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseSourceCollection.md index 093355d11d5..ffbecde55ed 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseSourceCollection.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseSourceCollection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -SourceCollectionId $sourceCollectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseSourceCollection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseTag.md b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseTag.md index 093355d11d5..b684fdaf163 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Remove-MgComplianceEdiscoveryCaseTag.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgComplianceEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Remove-MgComplianceEdiscoveryCaseTag -CaseId $caseId -TagId $tagId -Forcedelete true ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgComplianceEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Reset-MgComplianceEdiscoveryCaseSettingToDefault.md b/src/Compliance/Compliance/examples/v1.0-beta/Reset-MgComplianceEdiscoveryCaseSettingToDefault.md index 093355d11d5..380cb81ed76 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Reset-MgComplianceEdiscoveryCaseSettingToDefault.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Reset-MgComplianceEdiscoveryCaseSettingToDefault.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgComplianceEdiscoveryCaseSettingToDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +Reset-MgComplianceEdiscoveryCaseSettingToDefault -CaseId $caseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Reset-MgComplianceEdiscoveryCaseSettingToDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCase.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCase.md index 093355d11d5..3f7405b8825 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCase.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCase.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "My Case 1 - Renamed" + Description = "Updated description" + ExternalId = "Updated externalId" +} +Update-MgComplianceEdiscoveryCase -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseCustodian.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseCustodian.md index 093355d11d5..09b273fa532 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseCustodian.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + ApplyHoldToSources = "false" +} +Update-MgComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseLegalHold.md index 093355d11d5..22ea65a8b7f 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseLegalHold.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Description = "This is a description for a legalHold" +} +Update-MgComplianceEdiscoveryCaseLegalHold -CaseId $caseId -LegalHoldId $legalHoldId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseReviewSetQuery.md index 093355d11d5..3aba3c8daca 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "My Query 1 - Renamed" +} +Update-MgComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSetting.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSetting.md index 093355d11d5..6cdf0afcfc2 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSetting.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSetting.md @@ -1,18 +1,50 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCaseSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + RedundancyDetection = @{ + IsEnabled = $false + SimilarityThreshold = 70 + MinWords = 12 + MaxWords = 400000 + } + TopicModeling = @{ + IsEnabled = $false + IgnoreNumbers = $false + TopicCount = 50 + DynamicallyAdjustTopicCount = $false + } + Ocr = @{ + IsEnabled = $true + MaxImageSize = 12000 + } +} +Update-MgComplianceEdiscoveryCaseSetting -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgComplianceEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgComplianceEdiscoveryCaseSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + RedundancyDetection = @{ + IsEnabled = $false + SimilarityThreshold = 70 + MinWords = 12 + MaxWords = 400000 + } + TopicModeling = @{ + IsEnabled = $false + IgnoreNumbers = $false + TopicCount = 50 + DynamicallyAdjustTopicCount = $false + } + Ocr = @{ + IsEnabled = $true + MaxImageSize = 12000 + } +} +Update-MgComplianceEdiscoveryCaseSetting -CaseId $caseId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSourceCollection.md index 093355d11d5..a98b1d18fa8 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseSourceCollection.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCaseSourceCollection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + DisplayName = "Quarterly Financials search" +} +Update-MgComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCaseSourceCollection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseTag.md b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseTag.md index 093355d11d5..28ef8dd93b0 100644 --- a/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/Compliance/examples/v1.0-beta/Update-MgComplianceEdiscoveryCaseTag.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgComplianceEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Compliance +$params = @{ + Description = "This is an updated description." +} +Update-MgComplianceEdiscoveryCaseTag -CaseId $caseId -TagId $tagId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgComplianceEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0-beta/Remove-MgUserActivity.md b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0-beta/Remove-MgUserActivity.md index 093355d11d5..2668fe4af6e 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0-beta/Remove-MgUserActivity.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences/examples/v1.0-beta/Remove-MgUserActivity.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.CrossDeviceExperiences +# A UPN can also be used as -UserId. +Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus.md index 093355d11d5..5f268e8e94e 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + ManagedDeviceIds = @( + "30d0e128-de93-41dc-89ec-33d84bb662a0" + "7c82a3e3-9459-44e4-94d9-b92f93bf78dd" + ) + ReviewStatus = @{ + InReview = $true + UserAccessLevel = "restricted" + AzureStorageAccountId = "/subscriptions/f68bd846-16ad-4b51-a7c6-c84944a3367c/resourceGroups/Review/providers/Microsoft.Storage/storageAccounts/snapshotsUnderReview" + } +} +Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc.md index 093355d11d5..4f77b17caf0 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + ManagedDeviceIds = @( + "30d0e128-de93-41dc-89ec-33d84bb662a0" + "7c82a3e3-9459-44e4-94d9-b92f93bf78dd" + ) + RestorePointDateTime = [System.DateTime]::Parse("2021-09-23T04:00:00.0000000") + TimeRange = "before" +} +Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgBulkRestoreDeviceManagementManagedDeviceCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc.md index 093355d11d5..00c14ce7bd3 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc -ManagedDeviceId $managedDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReprovisionDeviceManagementManagedDeviceCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index 093355d11d5..0715acc65b1 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + UserAccountType = "administrator" + OsVersion = "windows10" +} +Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage.md index 093355d11d5..8f482e592a3 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId $cloudPcDeviceImageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReuploadDeviceManagementVirtualEndpointDeviceImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md index 093355d11d5..670be8ddb1c 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType.md index 093355d11d5..669cddd82e0 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + UserAccountType = "administrator" +} +Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType -CloudPCId $cloudPCId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Rename-MgDeviceManagementVirtualEndpointCloudPcUserAccountType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Resize-MgDeviceManagementManagedDeviceCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Resize-MgDeviceManagementManagedDeviceCloudPc.md index 093355d11d5..415e7d5cba4 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Resize-MgDeviceManagementManagedDeviceCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Resize-MgDeviceManagementManagedDeviceCloudPc.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Resize-MgDeviceManagementManagedDeviceCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + TargetServicePlanId = "30d0e128-de93-41dc-89ec-33d84bb662a0" +} +Resize-MgDeviceManagementManagedDeviceCloudPc -ManagedDeviceId $managedDeviceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Resize-MgDeviceManagementManagedDeviceCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restart-MgDeviceManagementVirtualEndpointCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restart-MgDeviceManagementVirtualEndpointCloudPc.md index 093355d11d5..5f691bc5dbb 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restart-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restart-MgDeviceManagementVirtualEndpointCloudPc.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restart-MgDeviceManagementVirtualEndpointCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +Restart-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restart-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restore-MgDeviceManagementManagedDeviceCloudPc.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restore-MgDeviceManagementManagedDeviceCloudPc.md index 093355d11d5..0efb10f539c 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restore-MgDeviceManagementManagedDeviceCloudPc.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Restore-MgDeviceManagementManagedDeviceCloudPc.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restore-MgDeviceManagementManagedDeviceCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + CloudPcSnapshotId = "A00009UV000_93aff428-61f2-467f-a879-1102af6fd4a8" +} +Restore-MgDeviceManagementManagedDeviceCloudPc -ManagedDeviceId $managedDeviceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restore-MgDeviceManagementManagedDeviceCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md index 093355d11d5..5d3064b48b5 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + ReviewStatus = @{ + InReview = $true + UserAccessLevel = "restricted" + AzureStorageAccountId = "/subscriptions/f68bd846-16ad-4b51-a7c6-c84944a3367c/resourceGroups/Review/providers/Microsoft.Storage/storageAccounts/snapshotsUnderReview" + } +} +Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus -ManagedDeviceId $managedDeviceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgDeviceManagementManagedDeviceCloudPcReviewStatus Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 093355d11d5..2bf24643c49 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcProvisioningPolicyAssignment" + Assignments = @( + @{ + Id = "b0c2d35f-3385-46c8-a6f5-6c3dfad7708b_64ff06de-9c00-4a5a-98b5-7f5abe26ffff" + Target = @{ + "@odata.type" = "microsoft.graph.cloudPcManagementGroupAssignmentTarget" + GroupId = "64ff06de-9c00-4a5a-98b5-7f5abe26ffff" + } + } + ) +} +Set-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointUserSetting.md index 093355d11d5..8c2f7321efc 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgDeviceManagementVirtualEndpointUserSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + Assignments = @( + @{ + Id = "b0c2d35f-3385-46c8-a6f5-6c3dfad7708b_64ff06de-9c00-4a5a-98b5-7f5abe26ffff" + Target = @{ + "@odata.type" = "microsoft.graph.cloudPcManagementGroupAssignmentTarget" + GroupId = "64ff06de-9c00-4a5a-98b5-7f5abe26ffff" + } + } + ) +} +Set-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck.md index 093355d11d5..146ac717aca 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgDeviceManagementVirtualEndpointOnPremisConnectionHealthCheck Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md index 093355d11d5..6fdb32d218b 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword.md b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword.md index 093355d11d5..4ec494a4105 100644 --- a/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword.md +++ b/src/DeviceManagement.Actions/DeviceManagement.Actions/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Actions +$params = @{ + AdDomainPassword = "AdDomainPassword value" +} +Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDeviceManagementVirtualEndpointOnPremisConnectionAdDomainPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index 093355d11d5..84e999e651a 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEvent.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointAuditEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointAuditEvent -CloudPcAuditEventId $cloudPcAuditEventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointAuditEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointAuditEvent ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPC.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPC.md index 093355d11d5..e071aeae02f 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPC.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPC.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointCloudPC Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointCloudPC -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointCloudPC Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointCloudPC Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointCloudPC -CloudPCId $cloudPCId -Property "id,displayName,imageDisplayName,lastModifiedDateTime,lastRemoteActionResult,lastLoginResult,connectivityResult" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointCloudPC Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDeviceManagementVirtualEndpointCloudPC Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointCloudPC +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointCloudPC Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index 093355d11d5..7adfe40d28b 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId $cloudPcDeviceImageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointDeviceImage ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md index 093355d11d5..6261d9170f9 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting -CloudPcExternalPartnerSettingId $cloudPcExternalPartnerSettingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting -Property "id,partnerId,enableConnection" -OutFile $outFileId +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting -Property "id,partnerId,enableConnection" +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index 093355d11d5..57553100ae2 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointGalleryImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointGalleryImage -CloudPcGalleryImageId $cloudPcGalleryImageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointGalleryImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointGalleryImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointGalleryImage ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointGalleryImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOnPremisesConnection.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOnPremisesConnection.md index 093355d11d5..fc79650a34b 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOnPremisesConnection.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOnPremisesConnection.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointOnPremisesConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointOnPremisesConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -Property "id,displayName,healthCheckStatus,healthCheckStatusDetails,inUse" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointOnPremisesConnection +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOrganizationSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOrganizationSetting.md index 093355d11d5..a9a285c05ac 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOrganizationSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointOrganizationSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointOrganizationSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointOrganizationSetting ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointOrganizationSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 093355d11d5..f76cb58e5a7 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -ExpandProperty "assignments" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -Property "id,description,displayName,displayName,domainJoinConfiguration,imageDisplayName,imageId,imageType,onPremisesConnectionId,windowsSettings,managedBy,cloudPcGroupDisplayName,gracePeriodInHours,localAdminEnabled,alternateResourceUrl" +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointServicePlan.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointServicePlan.md index 093355d11d5..4539736853a 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointServicePlan.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointServicePlan.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointServicePlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointServicePlan ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointServicePlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshot.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshot.md index 093355d11d5..da3576b9a00 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshot.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshot.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointSnapshot Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointSnapshot -CloudPcSnapshotId $cloudPcSnapshotId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointSnapshot Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointSnapshot Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointSnapshot -CloudPcSnapshotId $cloudPcSnapshotId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointSnapshot Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDeviceManagementVirtualEndpointSnapshot Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointSnapshot +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointSnapshot Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSupportedRegion.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSupportedRegion.md index 093355d11d5..d5b96c2fa9b 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSupportedRegion.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSupportedRegion.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointSupportedRegion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointSupportedRegion ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointSupportedRegion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointUserSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointUserSetting.md index 093355d11d5..8cc841445ea 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointUserSetting.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointUserSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -ExpandProperty "assignments" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceManagementVirtualEndpointUserSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDeviceManagementVirtualEndpointUserSetting Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Administration +Get-MgDeviceManagementVirtualEndpointUserSetting +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointDeviceImage.md index 093355d11d5..f920468865e 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcDeviceImage" + DisplayName = "Display Name value" + OsBuildNumber = "OS Build Number value" + OperatingSystem = "Operating System value" + Version = "Version value" + SourceImageResourceId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/Example/providers/Microsoft.Compute/images/exampleImage" +} +New-MgDeviceManagementVirtualEndpointDeviceImage -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md index 093355d11d5..bafecc4b974 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcExternalPartnerSetting" + PartnerId = "198d7140-80bb-4843-8cc4-811377a49a92" + EnableConnection = $true +} +New-MgDeviceManagementVirtualEndpointExternalPartnerSetting -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointOnPremisesConnection.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointOnPremisesConnection.md index 093355d11d5..e53db5ced26 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointOnPremisesConnection.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointOnPremisesConnection.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcOnPremisesConnection" + DisplayName = "test-canary-02" + Type = "hybridAzureADJoin" + SubscriptionId = "0ac520ee-14c0-480f-b6c9-0a90c585ffff" + SubscriptionName = "CPC customer 001 test subscription" + AdDomainName = "contoso001.com" + AdDomainUsername = "dcadmin" + OrganizationalUnit = "OU=Domain Controllers, DC=contoso001, DC=com" + ResourceGroupId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ad47/resourceGroups/CustomerRG" + VirtualNetworkId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ad47/resourceGroups/CustomerRG/providers/Microsoft.Network/virtualNetworks/canary01-MyVNET" + SubnetId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ad47/resourceGroups/CustomerRG/providers/Microsoft.Network/virtualNetworks/canary01-MyVNET/subnets/canary01-Subnet" +} +New-MgDeviceManagementVirtualEndpointOnPremisesConnection -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 093355d11d5..b297440d911 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcProvisioningPolicy" + Description = "Description value" + DisplayName = "Display Name value" + DomainJoinConfiguration = @{ + DomainJoinType = "hybridAzureADJoin" + OnPremisesConnectionId = "16ee6c71-fc10-438b-88ac-daa1ccafffff" + } + Id = "1d164206-bf41-4fd2-8424-a3192d39ffff" + ImageDisplayName = "Windows-10 19h1-evd" + ImageId = "MicrosoftWindowsDesktop_Windows-10_19h1-evd" + ImageType = "gallery" + OnPremisesConnectionId = "4e47d0f6-6f77-44f0-8893-c0fe1701ffff" + WindowsSettings = @{ + Language = "en-US" + } +} +New-MgDeviceManagementVirtualEndpointProvisioningPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointUserSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointUserSetting.md index 093355d11d5..5946cafb493 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDeviceManagementVirtualEndpointUserSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcUserSetting" + DisplayName = "Example" + SelfServiceEnabled = $false + LocalAdminEnabled = $true + RestorePointSetting = @{ + FrequencyInHours = 16 + UserRestoreEnabled = $true + } +} +New-MgDeviceManagementVirtualEndpointUserSetting -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index 093355d11d5..e07563874d3 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Remove-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId $cloudPcDeviceImageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection.md index 093355d11d5..06d284d2787 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 093355d11d5..7529b6ad54a 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index 093355d11d5..eca6f0398cd 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Remove-MgDeviceManagementVirtualEndpointUserSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDeviceManagementVirtualEndpointUserSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +Remove-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md index 093355d11d5..ec7038ed548 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcExternalPartnerSetting" + EnableConnection = $true +} +Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting -CloudPcExternalPartnerSettingId $cloudPcExternalPartnerSettingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDeviceManagementVirtualEndpointExternalPartnerSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisesConnection.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisesConnection.md index 093355d11d5..4b05f8e9237 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisesConnection.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOnPremisesConnection.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcOnPremisesConnection" + DisplayName = "Display Name value" + SubscriptionId = "0ac520ee-14c0-480f-b6c9-0a90c585ffff" + SubscriptionName = "Subscription Name value" + AdDomainName = "Active Directory Domain Name value" + AdDomainUsername = "Active Directory Domain User Name value" + OrganizationalUnit = "Organization Unit value" + ResourceGroupId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ffff/resourceGroups/ExampleRG" + VirtualNetworkId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c58ffff/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet" + SubnetId = "/subscriptions/0ac520ee-14c0-480f-b6c9-0a90c585ffff/resourceGroups/ExampleRG/providers/Microsoft.Network/virtualNetworks/ExampleVNet/subnets/default" +} +Update-MgDeviceManagementVirtualEndpointOnPremisesConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDeviceManagementVirtualEndpointOnPremisesConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOrganizationSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOrganizationSetting.md index 093355d11d5..b8821bd0f8d 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOrganizationSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointOrganizationSetting.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDeviceManagementVirtualEndpointOrganizationSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcOrganizationSettings" + EnableMEMAutoEnroll = $true + OsVersion = "windows11" + UserAccountType = "standardUser" + WindowsSettings = @{ + Language = "en-US" + } +} +Update-MgDeviceManagementVirtualEndpointOrganizationSetting -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDeviceManagementVirtualEndpointOrganizationSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 093355d11d5..d88a167a12e 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcProvisioningPolicy" + DisplayName = "HR provisioning policy" + Description = "Provisioning policy for India HR employees" + OnPremisesConnectionId = "4e47d0f6-6f77-44f0-8893-c0fe1701ffff" + ImageId = "Image ID value" + ImageDisplayName = "Image Display Name value" + ImageType = "custom" + WindowsSettings = @{ + Language = "en-US" + } +} +Update-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointUserSetting.md b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointUserSetting.md index 093355d11d5..543a25ef82b 100644 --- a/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/src/DeviceManagement.Administration/DeviceManagement.Administration/examples/v1.0-beta/Update-MgDeviceManagementVirtualEndpointUserSetting.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDeviceManagementVirtualEndpointUserSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Administration +$params = @{ + "@odata.type" = "#microsoft.graph.cloudPcUserSetting" + DisplayName = "Example" + SelfServiceEnabled = $true + RestorePointSetting = @{ + FrequencyInHours = 16 + UserRestoreEnabled = $true + } + LocalAdminEnabled = $false +} +Update-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleAssignment.md index 093355d11d5..56440532301 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleAssignment.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId -ExpandProperty "roleDefinition" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId -ExpandProperty "roleDefinition" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId +``` +This example shows how to use the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId +``` +This example shows how to use the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleAssignment +``` +This example shows how to use the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleAssignment -Filter "roleDefinitionId eq 'b5c08161-a7af-481c-ace2-a20a69a48fb1'" +``` +This example shows how to use the Get-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleDefinition.md index 093355d11d5..97ff0b9f0de 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementCloudPcRoleDefinition.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementCloudPcRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementCloudPcRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementCloudPcRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementCloudPcRoleDefinition ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementCloudPcRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDeviceManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDeviceManagementRoleAssignment.md index 093355d11d5..68e6fc7a0f8 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDeviceManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDeviceManagementRoleAssignment.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDeviceManagementRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId -ExpandProperty "roleDefinition,principals,directoryScopes" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDeviceManagementRoleAssignment -Filter " principalIds/any(x:x eq '564ae70c-73d9-476b-820b-fb61eb7384b9')" -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDeviceManagementRoleAssignment -Filter " principalIds/any(x:x eq '564ae70c-73d9-476b-820b-fb61eb7384b9')" +``` +This example shows how to use the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDeviceManagementRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId +``` +This example shows how to use the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDeviceManagementRoleAssignment -Filter "principalId eq '9e47fc6f-2d7a-464c-944e-d3dd0de522e4'" +``` +This example shows how to use the Get-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespace.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespace.md index 093355d11d5..4e0f283c02f 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespace.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespace.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementDirectoryResourceNamespace Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryResourceNamespace -UnifiedRbacResourceNamespaceId $unifiedRbacResourceNamespaceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementDirectoryResourceNamespace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryResourceNamespace Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryResourceNamespace ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementDirectoryResourceNamespace Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespaceResourceAction.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespaceResourceAction.md index 093355d11d5..d065afbd857 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespaceResourceAction.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryResourceNamespaceResourceAction.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementDirectoryResourceNamespaceResourceAction Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryResourceNamespaceResourceAction -UnifiedRbacResourceNamespaceId $unifiedRbacResourceNamespaceId -UnifiedRbacResourceActionId $unifiedRbacResourceActionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementDirectoryResourceNamespaceResourceAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryResourceNamespaceResourceAction Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryResourceNamespaceResourceAction -UnifiedRbacResourceNamespaceId $unifiedRbacResourceNamespaceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementDirectoryResourceNamespaceResourceAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryResourceNamespaceResourceAction Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryResourceNamespaceResourceAction -UnifiedRbacResourceNamespaceId $unifiedRbacResourceNamespaceId +``` +This example shows how to use the Get-MgRoleManagementDirectoryResourceNamespaceResourceAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleAssignment.md index 093355d11d5..61a458ab2b4 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleAssignment.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -Filter "roleDefinitionId eq '62e90394-69f5-4237-9190-012177145e10'" -ExpandProperty "principal" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -Filter " principalId eq 'f1847572-48aa-47aa-96a3-2ec61904f41f'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId +``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId -ExpandProperty "roleDefinition" +``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..68c7b8e4a6d 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -ExpandProperty "inheritsPermissionsFrom" +``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryRoleDefinition +``` +This example shows how to use the Get-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryTransitiveRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryTransitiveRoleAssignment.md index 093355d11d5..192fd790d07 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryTransitiveRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementDirectoryTransitiveRoleAssignment.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementDirectoryTransitiveRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryTransitiveRoleAssignment -CountVariable CountVar -Filter "principalId eq '2c7936bc-3517-40f3-8eda-4806637b6516'" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementDirectoryTransitiveRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementDirectoryTransitiveRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryTransitiveRoleAssignment -CountVariable CountVar -Filter "principalId eq '2c7936bc-3517-40f3-8eda-4806637b6516' and directoryScopeId eq '/administrativeUnits/26e79164-0c5c-4281-8c5b-be7bc7809fb2'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementDirectoryTransitiveRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgRoleManagementDirectoryTransitiveRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementDirectoryTransitiveRoleAssignment -CountVariable CountVar -Filter "principalId eq '2c7936bc-3517-40f3-8eda-4806637b6516' and roleDefinitionId eq 'fe930be7-5e62-47db-91af-98c3a49a38b1'" +``` +This example shows how to use the Get-MgRoleManagementDirectoryTransitiveRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleAssignment.md index 093355d11d5..dd572c60008 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementEntitlementManagementRoleAssignment -Filter "appScopeId eq '/AccessPackageCatalog/4cee616b-fdf9-4890-9d10-955e0ccb12bc'" -ExpandProperty "principal" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleDefinition.md index 093355d11d5..c6f35f06387 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Get-MgRoleManagementEntitlementManagementRoleDefinition.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRoleManagementEntitlementManagementRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementEntitlementManagementRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRoleManagementEntitlementManagementRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRoleManagementEntitlementManagementRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Get-MgRoleManagementEntitlementManagementRoleDefinition ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRoleManagementEntitlementManagementRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleAssignment.md index 093355d11d5..6fb7b5916ce 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleAssignment.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgRoleManagementCloudPcRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignmentMultiple" + DisplayName = "My test role assignment 1" + Description = "My role assignment description" + RoleDefinitionId = "b5c08161-a7af-481c-ace2-a20a69a48fb1" + PrincipalIds = @( + "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + "c1518aa9-4da5-4c84-a902-a31404023890" + ) +} +New-MgRoleManagementCloudPcRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleDefinition.md index 093355d11d5..076a291d609 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementCloudPcRoleDefinition.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgRoleManagementCloudPcRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Description = "An example custom role" + DisplayName = "ExampleCustomRole" + RolePermissions = @( + @{ + AllowedResourceActions = @( + "Microsoft.CloudPC/CloudPCs/Read" + ) + } + ) + Condition = "null" +} +New-MgRoleManagementCloudPcRoleDefinition -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgRoleManagementCloudPcRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDeviceManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDeviceManagementRoleAssignment.md index 093355d11d5..6724f490a48 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDeviceManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDeviceManagementRoleAssignment.md @@ -1,18 +1,39 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgRoleManagementDeviceManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignmentMultiple" + DisplayName = "My test role assignment 1" + RoleDefinitionId = "c2cf284d-6c41-4e6b-afac-4b80928c9034" + PrincipalIds = @( + "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + "c1518aa9-4da5-4c84-a902-a31404023890" + ) + DirectoryScopeIds = @( + "28ca5a85-489a-49a0-b555-0a6d81e56f0d" + "8152656a-cf9a-4928-a457-1512d4cae295" + ) +} +New-MgRoleManagementDeviceManagementRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgRoleManagementDeviceManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignmentMultiple" + DisplayName = "My test role assignment 1" + RoleDefinitionId = "c2cf284d-6c41-4e6b-afac-4b80928c9034" + PrincipalIds = @( + "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + "c1518aa9-4da5-4c84-a902-a31404023890" + ) + AppScopeIds = @( + "allDevices" + ) +} +New-MgRoleManagementDeviceManagementRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleAssignment.md index 093355d11d5..71558060fba 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleAssignment.md @@ -1,18 +1,39 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" + RoleDefinitionId = "58a13ea3-c632-46ae-9ee0-9c0d43cd7f3d" + PrincipalId = "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + DirectoryScopeId = "/attributeSets/Engineering" +} +New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" + RoleDefinitionId = "c2cf284d-6c41-4e6b-afac-4b80928c9034" + PrincipalId = "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + DirectoryScopeId = "/" +} +New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgRoleManagementDirectoryRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleAssignment" + RoleDefinitionId = "fe930be7-5e62-47db-91af-98c3a49a38b1" + PrincipalId = "f8ca5a85-489a-49a0-b555-0a6d81e56f0d" + DirectoryScopeId = "/administrativeUnits/5d107bba-d8e2-4e13-b6ae-884be90e5d1a" +} +New-MgRoleManagementDirectoryRoleAssignment -BodyParameter $params +``` +This example shows how to use the New-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..495a3da8d3a 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Description = "Update basic properties of application registrations" + DisplayName = "Application Registration Support Administrator" + RolePermissions = @( + @{ + AllowedResourceActions = @( + "microsoft.directory/applications/basic/read" + ) + } + ) + IsEnabled = "true" +} +New-MgRoleManagementDirectoryRoleDefinition -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementEntitlementManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementEntitlementManagementRoleAssignment.md index 093355d11d5..a22be7bf15b 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementEntitlementManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/New-MgRoleManagementEntitlementManagementRoleAssignment.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + PrincipalId = "679a9213-c497-48a4-830a-8d3d25d94ddc" + RoleDefinitionId = "ae79f266-94d4-4dab-b730-feca7e132178" + AppScopeId = "/AccessPackageCatalog/beedadfe-01d5-4025-910b-84abb9369997" +} +New-MgRoleManagementEntitlementManagementRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgRoleManagementEntitlementManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleAssignment.md index 093355d11d5..a97408869fb 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgRoleManagementCloudPcRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementCloudPcRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleDefinition.md index 093355d11d5..61f63e2a067 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementCloudPcRoleDefinition.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgRoleManagementCloudPcRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementCloudPcRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgRoleManagementCloudPcRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDeviceManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDeviceManagementRoleAssignment.md index 093355d11d5..a3ceb48a9c2 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDeviceManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDeviceManagementRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgRoleManagementDeviceManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementDeviceManagementRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleAssignment.md index 093355d11d5..fa11597ae7f 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgRoleManagementDirectoryRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementDirectoryRoleAssignment -UnifiedRoleAssignmentId $unifiedRoleAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgRoleManagementDirectoryRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..7d6974a7fd7 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Remove-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Remove-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md index 093355d11d5..d40d990ad13 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest -UnifiedRoleAssignmentScheduleRequestId $unifiedRoleAssignmentScheduleRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md index 093355d11d5..37f08677460 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest -UnifiedRoleEligibilityScheduleRequestId $unifiedRoleEligibilityScheduleRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleAssignment.md index 093355d11d5..2bfee879f3d 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleAssignment.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgRoleManagementCloudPcRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + DisplayName = "NewName" + Description = "A new roleAssignment" +} +Update-MgRoleManagementCloudPcRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgRoleManagementCloudPcRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleDefinition.md index 093355d11d5..09ae222f4f0 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementCloudPcRoleDefinition.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgRoleManagementCloudPcRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Description = "Update basic properties and permission of application registrations" + DisplayName = "ExampleCustomRole" + RolePermissions = @( + @{ + AllowedResourceActions = @( + "Microsoft.CloudPC/CloudPCs/Read" + "Microsoft.CloudPC/CloudPCs/Reprovision" + ) + } + ) +} +Update-MgRoleManagementCloudPcRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgRoleManagementCloudPcRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDeviceManagementRoleAssignment.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDeviceManagementRoleAssignment.md index 093355d11d5..d1436951419 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDeviceManagementRoleAssignment.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDeviceManagementRoleAssignment.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgRoleManagementDeviceManagementRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + PrincipalIds = @( + "0aeec2c1-fee7-4e02-b534-6f920d25b300" + "2d5386a7-732f-44db-9cf8-f82dd2a1c0e0" + ) +} +Update-MgRoleManagementDeviceManagementRoleAssignment -UnifiedRoleAssignmentMultipleId $unifiedRoleAssignmentMultipleId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgRoleManagementDeviceManagementRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDirectoryRoleDefinition.md b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDirectoryRoleDefinition.md index 093355d11d5..348d6d62f2c 100644 --- a/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDirectoryRoleDefinition.md +++ b/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/examples/v1.0-beta/Update-MgRoleManagementDirectoryRoleDefinition.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgRoleManagementDirectoryRoleDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Enrolment +$params = @{ + Description = "Update basic properties of application registrations" + DisplayName = "Application Registration Support Administrator" + RolePermissions = @( + @{ + AllowedResourceActions = @( + "microsoft.directory/applications/basic/read" + ) + } + ) +} +Update-MgRoleManagementDirectoryRoleDefinition -UnifiedRoleDefinitionId $unifiedRoleDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgRoleManagementDirectoryRoleDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult.md index 093355d11d5..ca4d9d2de22 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult -ManagedDeviceId $managedDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementManagedDeviceCloudPcRemoteActionResult Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md index 093355d11d5..db062045afd 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus -ManagedDeviceId $managedDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementManagedDeviceCloudPcReviewStatus Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md index 093355d11d5..60fe9ce4351 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory.md index 093355d11d5..8071017db44 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointCloudPcConnectivityHistory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md index 093355d11d5..5f2709b16ff 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointEffectivePermission.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointEffectivePermission.md index 093355d11d5..53c7117af2d 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointEffectivePermission.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointEffectivePermission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointEffectivePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementVirtualEndpointEffectivePermission ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointEffectivePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshotSubscription.md b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshotSubscription.md index 093355d11d5..3547aa54ea6 100644 --- a/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshotSubscription.md +++ b/src/DeviceManagement.Functions/DeviceManagement.Functions/examples/v1.0-beta/Get-MgDeviceManagementVirtualEndpointSnapshotSubscription.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceManagementVirtualEndpointSnapshotSubscription Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DeviceManagement.Functions +Get-MgDeviceManagementVirtualEndpointSnapshotSubscription ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceManagementVirtualEndpointSnapshotSubscription Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintConnector.md index 093355d11d5..585b0396a4b 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintConnector.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintConnector -PrintConnectorId $printConnectorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintConnector ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintOperation.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintOperation.md index 093355d11d5..3a9558682fa 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintOperation.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintOperation -PrintOperationId $printOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinter.md index 093355d11d5..715aaec1fb4 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinter.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintPrinter Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinter -PrinterId $printerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintPrinter Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinter ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterCapability.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterCapability.md index 093355d11d5..f860d518f63 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterCapability.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterCapability.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintPrinterCapability Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterCapability -PrinterId $printerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintPrinterCapability Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterConnector.md index 093355d11d5..e9afe44fe2c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterConnector.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintPrinterConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterConnector -PrinterId $printerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintPrinterConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterTaskTrigger.md index 093355d11d5..10a3c518a4c 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintPrinterTaskTrigger.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintPrinterTaskTrigger Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintPrinterTaskTrigger Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintPrinterTaskTrigger -PrinterId $printerId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintService.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintService.md index 093355d11d5..6ab750cf1e1 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintService.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintService.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintService -PrintServiceId $printServiceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintService ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintServiceEndpoint.md index 093355d11d5..5472274cc8a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintServiceEndpoint.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintServiceEndpoint Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintServiceEndpoint Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintServiceEndpoint Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintServiceEndpoint -PrintServiceId $printServiceId -PrintServiceEndpointId $printServiceEndpointId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintServiceEndpoint Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShare.md index 093355d11d5..043c14a7f22 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShare.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintShare Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShare -PrinterShareId $printerShareId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintShare Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShare ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedGroup.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedGroup.md index 093355d11d5..dd8a5e19b37 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedGroup.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintShareAllowedGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShareAllowedGroup -PrinterShareId $printerShareId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintShareAllowedGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedUser.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedUser.md index 093355d11d5..a48f3c74576 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedUser.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintShareAllowedUser.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintShareAllowedUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintShareAllowedUser -PrinterShareId $printerShareId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintShareAllowedUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinition.md index 093355d11d5..cdab7a1e499 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinition.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintTaskDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintTaskDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinition ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinitionTask.md index 093355d11d5..b122889f9e6 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Get-MgPrintTaskDefinitionTask.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrintTaskDefinitionTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrintTaskDefinitionTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrintTaskDefinitionTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Get-MgPrintTaskDefinitionTask -PrintTaskDefinitionId $printTaskDefinitionId -PrintTaskId $printTaskId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrintTaskDefinitionTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShare.md index 093355d11d5..32b775dd81e 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShare.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrintShare Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + Name = "name-value" + "Printer@odata.bind" = "https://graph.microsoft.com/beta/print/printers/{id}" +} +New-MgPrintShare -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedGroupByRef.md index 093355d11d5..9dbbda4eb0d 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedGroupByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrintShareAllowedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/groups/{id}" +} +New-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrintShareAllowedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedUserByRef.md index 093355d11d5..533499f70d5 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintShareAllowedUserByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrintShareAllowedUserByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/users/{id}" +} +New-MgPrintShareAllowedUserByRef -PrinterShareId $printerShareId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrintShareAllowedUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintTaskDefinition.md index 093355d11d5..5297b4e6239 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/New-MgPrintTaskDefinition.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrintTaskDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "Test TaskDefinitionName" + CreatedBy = @{ + DisplayName = "Requesting App Display Name" + } +} +New-MgPrintTaskDefinition -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintConnector.md index 093355d11d5..b6b03acbbd9 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintConnector.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintConnector -PrintConnectorId $printConnectorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinter.md index 093355d11d5..c88a5f00d66 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinter.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintPrinter Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintPrinter -PrinterId $printerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterShareAllowedUserByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterShareAllowedUserByRef.md index 093355d11d5..33226281efb 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterShareAllowedUserByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintPrinterShareAllowedUserByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintPrinterShareAllowedUserByRef -PrinterShareId $printerShareId -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintPrinterShareAllowedUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterTaskTrigger.md index 093355d11d5..7bf987720c8 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintPrinterTaskTrigger.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintPrinterTaskTrigger Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintPrinterTaskTrigger -PrinterId $printerId -PrintTaskTriggerId $printTaskTriggerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintPrinterTaskTrigger Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShare.md index 093355d11d5..35927f171d2 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShare.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintShare Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintShare -PrinterShareId $printerShareId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShareAllowedGroupByRef.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShareAllowedGroupByRef.md index 093355d11d5..4065fc85784 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintShareAllowedGroupByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintShareAllowedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintShareAllowedGroupByRef -PrinterShareId $printerShareId -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintShareAllowedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintTaskDefinition.md index 093355d11d5..0e86aa99d4a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Remove-MgPrintTaskDefinition.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrintTaskDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Remove-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Restore-MgPrintPrinterFactoryDefault.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Restore-MgPrintPrinterFactoryDefault.md index 093355d11d5..a536b37ba3a 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Restore-MgPrintPrinterFactoryDefault.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Restore-MgPrintPrinterFactoryDefault.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restore-MgPrintPrinterFactoryDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +Restore-MgPrintPrinterFactoryDefault -PrinterId $printerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restore-MgPrintPrinterFactoryDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintConnector.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintConnector.md index 093355d11d5..3b0f9997821 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintConnector.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintConnector.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPrintConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "ConnectorName" + FullyQualifiedDomainName = "CONNECTOR-MACHINE" + OperatingSystem = "Microsoft Windows 10 Enterprise Insider Preview | 10.0.19555" + AppVersion = "0.19.7338.23496" + Location = @{ + Latitude = 1.1 + Longitude = 2.2 + AltitudeInMeters = 3 + } +} +Update-MgPrintConnector -PrintConnectorId $printConnectorId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPrintConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintPrinter.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintPrinter.md index 093355d11d5..eefb23ee35e 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintPrinter.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintPrinter.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPrintPrinter Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + Name = "PrinterName" + Location = @{ + Latitude = 1.1 + Longitude = 2.2 + AltitudeInMeters = 3 + } +} +Update-MgPrintPrinter -PrinterId $printerId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPrintPrinter Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintShare.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintShare.md index 093355d11d5..3a066e3599e 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintShare.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintShare.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPrintShare Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "ShareName" + AllowAllUsers = $true + "Printer@odata.bind" = "https://graph.microsoft.com/beta/print/printers/{id}" +} +Update-MgPrintShare -PrinterShareId $printerShareId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPrintShare Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintTaskDefinition.md b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintTaskDefinition.md index 093355d11d5..ee40fa3719f 100644 --- a/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintTaskDefinition.md +++ b/src/Devices.CloudPrint/Devices.CloudPrint/examples/v1.0-beta/Update-MgPrintTaskDefinition.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPrintTaskDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.CloudPrint +$params = @{ + DisplayName = "Test TaskDefinitionName" + CreatedBy = @{ + DisplayName = "Requesting App Display Name" + } +} +Update-MgPrintTaskDefinition -PrintTaskDefinitionId $printTaskDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPrintTaskDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementHealthOverview.md index 093355d11d5..aadf228bc08 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementHealthOverview.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview -ServiceHealthId $serviceHealthId -ExpandProperty "issues" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet +```powershell +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview +``` +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgServiceAnnouncementHealthOverview Cmdlet +```powershell +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementHealthOverview -ExpandProperty "issues" +``` +This example shows how to use the Get-MgServiceAnnouncementHealthOverview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementIssue.md index 093355d11d5..f911fe6db29 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementIssue.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServiceAnnouncementIssue Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementIssue -ServiceHealthIssueId $serviceHealthIssueId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServiceAnnouncementIssue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementIssue Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementIssue ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServiceAnnouncementIssue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessage.md index 093355d11d5..c739f4180ab 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessage.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServiceAnnouncementMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessage -ServiceUpdateMessageId $serviceUpdateMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessage ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachment.md index 093355d11d5..e5ffddff277 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServiceAnnouncementMessageAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServiceAnnouncementMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessageAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachment -ServiceUpdateMessageId $serviceUpdateMessageId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServiceAnnouncementMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentArchive.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentArchive.md index 093355d11d5..3b3bfc41fa9 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentArchive.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentArchive.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentArchive -ServiceUpdateMessageId $serviceUpdateMessageId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentArchive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentContent.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentContent.md index 093355d11d5..895e5ca8e5f 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentContent.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Get-MgServiceAnnouncementMessageAttachmentContent.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Get-MgServiceAnnouncementMessageAttachmentContent -ServiceUpdateMessageId $serviceUpdateMessageId -ServiceAnnouncementAttachmentId $serviceAnnouncementAttachmentId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServiceAnnouncementMessageAttachmentContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgArchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgArchiveServiceAnnouncementMessage.md index 093355d11d5..61d9e4df39d 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgArchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgArchiveServiceAnnouncementMessage.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgArchiveServiceAnnouncementMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgArchiveServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgArchiveServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgFavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgFavoriteServiceAnnouncementMessage.md index 093355d11d5..e16061e638c 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgFavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgFavoriteServiceAnnouncementMessage.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgFavoriteServiceAnnouncementMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgFavoriteServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgFavoriteServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageRead.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageRead.md index 093355d11d5..fb09fa91814 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageRead.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageRead.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMarkServiceAnnouncementMessageRead Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgMarkServiceAnnouncementMessageRead -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMarkServiceAnnouncementMessageRead Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageUnread.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageUnread.md index 093355d11d5..0deb99127e4 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageUnread.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgMarkServiceAnnouncementMessageUnread.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMarkServiceAnnouncementMessageUnread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgMarkServiceAnnouncementMessageUnread -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMarkServiceAnnouncementMessageUnread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgReportServiceAnnouncementIssueIncident.md index 093355d11d5..342aeaad400 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgReportServiceAnnouncementIssueIncident.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReportServiceAnnouncementIssueIncident Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +Invoke-MgReportServiceAnnouncementIssueIncident -ServiceHealthIssueId $serviceHealthIssueId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReportServiceAnnouncementIssueIncident Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnarchiveServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnarchiveServiceAnnouncementMessage.md index 093355d11d5..702d2b0907b 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnarchiveServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnarchiveServiceAnnouncementMessage.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnarchiveServiceAnnouncementMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgUnarchiveServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnarchiveServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnfavoriteServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnfavoriteServiceAnnouncementMessage.md index 093355d11d5..21ff1c40eec 100644 --- a/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnfavoriteServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/Devices.ServiceAnnouncement/examples/v1.0-beta/Invoke-MgUnfavoriteServiceAnnouncementMessage.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnfavoriteServiceAnnouncementMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Devices.ServiceAnnouncement +$params = @{ + MessageIds = @( + "MC172851" + "MC167983" + ) +} +Invoke-MgUnfavoriteServiceAnnouncementMessage -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnfavoriteServiceAnnouncementMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Confirm-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Confirm-MgDirectoryObjectMemberGroup.md index 093355d11d5..2dbde67e20b 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Confirm-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Confirm-MgDirectoryObjectMemberGroup.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgDirectoryObjectMemberGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + GroupIds = @( + "f448435d-3ca7-4073-8152-a1fd73c0fd09" + "bd7c6263-4dd5-4ae8-8c96-556e1c0bece6" + "93670da6-d731-4366-94b5-abed40b6016b" + "f5484ab1-4d4d-41ec-a9b8-754b3957bfc7" + "c9103f26-f3cf-4004-a611-2a14e81b8f79" + ) +} +Confirm-MgDirectoryObjectMemberGroup -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgDirectoryObjectMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObject.md index 093355d11d5..c78fa264d7b 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObject.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +Get-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectById.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectById.md index 093355d11d5..2140ce07471 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectById.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectById.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryObjectById Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + Ids = @( + "84b80893-8749-40a3-97b7-68513b600544" + "5d6059b6-368d-45f8-91e1-8e07d485f1d0" + "0b944de3-e0fc-4774-a49a-b135213725ef" + "b75a5ab2-fe55-4463-bd31-d21ad555c6e0" + ) + Types = @( + "user" + "group" + "device" + ) +} +Get-MgDirectoryObjectById -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryObjectById Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectMemberGroup.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectMemberGroup.md index 093355d11d5..6fbbed6e2da 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectMemberGroup.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Get-MgDirectoryObjectMemberGroup.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryObjectMemberGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + SecurityEnabledOnly = $false +} +Get-MgDirectoryObjectMemberGroup -DirectoryObjectId $directoryObjectId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryObjectMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Remove-MgDirectoryObject.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Remove-MgDirectoryObject.md index 093355d11d5..225c5f869ba 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Remove-MgDirectoryObject.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Remove-MgDirectoryObject.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDirectoryObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +Remove-MgDirectoryObject -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDirectoryObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Test-MgDirectoryObjectProperty.md b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Test-MgDirectoryObjectProperty.md index 093355d11d5..a726f215691 100644 --- a/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Test-MgDirectoryObjectProperty.md +++ b/src/DirectoryObjects/DirectoryObjects/examples/v1.0-beta/Test-MgDirectoryObjectProperty.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgDirectoryObjectProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.DirectoryObjects +$params = @{ + EntityType = "Group" + DisplayName = "Myprefix_test_mysuffix" + MailNickname = "Myprefix_test_mysuffix" + OnBehalfOfUserId = "onBehalfOfUserId-value" +} +Test-MgDirectoryObjectProperty -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgDirectoryObjectProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClass.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClass.md index 093355d11d5..d142a282bf3 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClass.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClass ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClass -EducationClassId $educationClassId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignment.md index 093355d11d5..d081317394f 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignment.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId -ExpandProperty "resources" +``` +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId +``` +This example shows how to use the Get-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategory.md index 093355d11d5..9a08565bec3 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategory.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategoryDelta.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategoryDelta.md index 093355d11d5..e9d0f660c39 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategoryDelta.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentCategoryDelta.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Top 3 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -OutFile $outFileId +``` +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentCategoryDelta Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IVSFtBcXz0jxjIEihcR91dS3R7i8Z2IMtxIn9rKbK9Jvurj6jCH-lDbSNatdesrK0PJ5zpZ_-i8HyqkdtLhWD9tewXVArIqQWJA7gJz8z4paG2q0MU9rixrQOTe7WIXikPiBTUPilHuUW-o1k7cvqke3K7llJbU3G7z_O7WGoVGE.l8-2OcBi9ZWAhwhPnXvJ-kyyk8GNb6-H4o6qofP5YBY" +``` +This example shows how to use the Get-MgEducationClassAssignmentCategoryDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDefault.md index 093355d11d5..abe6aa4b78f 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDefault.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDefault -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDelta.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDelta.md index 093355d11d5..160f1ef5840 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDelta.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentDelta.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxROmLjac48n-iXm5j6n5aQwlsnC-2OvL3lI0Z8M4klERNmJQjnBn7MHqwXZ6L8GlI3VPnya3E-p1bisiZX97jLvQUAopseIYhvnD6v7fiYrk.fVsHempT6X2CiBh6aN9Ex5nVJ71adKdcf-mdke8OHKs" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IdHoweKQs1czM4Ry1LVsNqwIFXftTcRHvgSCbcszvbJHEWDCO3QO7K7zwCM8DdXNepZOa1gqldecjIUM0NFRbGQoQ5yR6RmGnMgtko8TDMOyMH_yg1my82PTXA_t4Nj-DhMDZWvuNTd_lbLeTngc7mIJPMCR2gHN9CSKsW_kw850.UM9tUqwOu5Ln1pnxaP6KdMmfJHszGqY3EKPlQkOiyGs" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentDelta Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2 +``` +This example shows how to use the Get-MgEducationClassAssignmentDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentResource.md index 093355d11d5..1a917c81730 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentResource.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId +``` +This example shows how to use the Get-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentRubric.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentRubric.md index 093355d11d5..b991a476d2c 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentRubric.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentRubric.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentRubric -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSetting.md index 093355d11d5..e315eabe738 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSetting -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmission.md index 093355d11d5..e2543817c50 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmission.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentSubmission Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -ExpandProperty "*" +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentSubmission Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -ExpandProperty "outcomes" +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgEducationClassAssignmentSubmission Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgEducationClassAssignmentSubmission Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionOutcome.md index 093355d11d5..868301116a0 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -Filter "isof('microsoft.graph.educationFeedbackResourceOutcome')" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionResource.md index 093355d11d5..6c6a6c40d26 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassAssignmentSubmissionResource.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +Get-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId +``` +This example shows how to use the Get-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassDelta.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassDelta.md index 093355d11d5..21042a9005f 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassDelta.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassGroup.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassGroup.md index 093355d11d5..54c0eb33b78 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassGroup.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassGroup -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassMember.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassMember.md index 093355d11d5..9dd47d93abf 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassMember.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassMember -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassSchool.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassSchool.md index 093355d11d5..957fbfc323c 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassSchool.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassSchool.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassSchool -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassTeacher.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassTeacher.md index 093355d11d5..473fe1c18b8 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassTeacher.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationClassTeacher.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationClassTeacher Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationClassTeacher -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationClassTeacher Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeAssignment.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeAssignment.md index 093355d11d5..87f61a0c158 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationMeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeAssignment ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationMeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeClass.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeClass.md index 093355d11d5..c2fc5b19747 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeClass.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeClass.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationMeClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeClass ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationMeClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeRubric.md index 093355d11d5..514fcbf769a 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeRubric.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationMeRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeRubric -EducationRubricId $educationRubricId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationMeRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeRubric ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeSchool.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeSchool.md index 093355d11d5..4d601152127 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeSchool.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationMeSchool.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationMeSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationMeSchool ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationMeSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchool.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchool.md index 093355d11d5..14f7cd8885e 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchool.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchool -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchool ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolAdministrativeUnit.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolAdministrativeUnit.md index 093355d11d5..c6a119c334a 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolAdministrativeUnit.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolAdministrativeUnit.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSchoolAdministrativeUnit Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolAdministrativeUnit -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSchoolAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolClass.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolClass.md index 093355d11d5..d62c4b40053 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolClass.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolClass.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSchoolClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolClass -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSchoolClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolDelta.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolDelta.md index 093355d11d5..27fd275b361 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolDelta.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSchoolDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSchoolDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolUser.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolUser.md index 093355d11d5..74fbaed65bd 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolUser.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSchoolUser.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSchoolUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSchoolUser -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSchoolUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfile.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfile.md index 093355d11d5..040346af7f7 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfile.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfile.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSynchronizationProfile ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileError.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileError.md index 093355d11d5..29fdbe24e5a 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileError.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileError.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSynchronizationProfileError Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSynchronizationProfileError -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSynchronizationProfileError Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileStatus.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileStatus.md index 093355d11d5..f4e31f00ca7 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileStatus.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationSynchronizationProfileStatus.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationSynchronizationProfileStatus Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationSynchronizationProfileStatus -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationSynchronizationProfileStatus Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationUser.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationUser.md index 093355d11d5..615ce2a886d 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationUser.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUser ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUser -EducationUserId $educationUserId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserAssignment.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserAssignment.md index 093355d11d5..37d17933a46 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserAssignment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationUserAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUserAssignment -EducationUserId $educationUserId -ExpandProperty "submissions" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEducationUserAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEducationUserAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUserAssignment -EducationUserId $educationUserId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationUserAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserDelta.md b/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserDelta.md index 093355d11d5..8ebded8c6c2 100644 --- a/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserDelta.md +++ b/src/Education/Education/examples/v1.0-beta/Get-MgEducationUserDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEducationUserDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Get-MgEducationUserDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEducationUserDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Invoke-MgReassignEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0-beta/Invoke-MgReassignEducationClassAssignmentSubmission.md index 093355d11d5..09045ac6546 100644 --- a/src/Education/Education/examples/v1.0-beta/Invoke-MgReassignEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0-beta/Invoke-MgReassignEducationClassAssignmentSubmission.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgReassignEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReassignEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Invoke-MgReturnEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0-beta/Invoke-MgReturnEducationClassAssignmentSubmission.md index 093355d11d5..02af8895caf 100644 --- a/src/Education/Education/examples/v1.0-beta/Invoke-MgReturnEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0-beta/Invoke-MgReturnEducationClassAssignmentSubmission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReturnEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgReturnEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReturnEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0-beta/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md index 093355d11d5..696c90941ec 100644 --- a/src/Education/Education/examples/v1.0-beta/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0-beta/Invoke-MgUnsubmitEducationClassAssignmentSubmission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnsubmitEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgUnsubmitEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnsubmitEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Invoke-MgUploadEducationSynchronizationProfileUrl.md b/src/Education/Education/examples/v1.0-beta/Invoke-MgUploadEducationSynchronizationProfileUrl.md index 093355d11d5..b419e19db58 100644 --- a/src/Education/Education/examples/v1.0-beta/Invoke-MgUploadEducationSynchronizationProfileUrl.md +++ b/src/Education/Education/examples/v1.0-beta/Invoke-MgUploadEducationSynchronizationProfileUrl.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUploadEducationSynchronizationProfileUrl Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Invoke-MgUploadEducationSynchronizationProfileUrl -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUploadEducationSynchronizationProfileUrl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClass.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClass.md index 093355d11d5..313cb2f111d 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClass.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + Description = "Health Level 1" + ClassCode = "Health 501" + DisplayName = "Health 1" + ExternalId = "11019" + ExternalName = "Health Level 1" + ExternalSource = "sis" + MailNickname = "fineartschool.net" +} +New-MgEducationClass -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignment.md index 093355d11d5..447949218e0 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignment.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClassAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DueDateTime = [System.DateTime]::Parse("2021-09-07T00:00:00Z") + DisplayName = "Reading test 09.03 #4" + Instructions = @{ + ContentType = "text" + Content = "Read chapter 4" + } + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentGradeType" + MaxPoints = + } + AssignTo = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentGradeType" + } + Status = "draft" + AllowStudentsToAddResourcesToSubmission = $true +} +New-MgEducationClassAssignment -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentResource.md index 093355d11d5..ef0da8552cd 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentResource.md @@ -1,18 +1,108 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationExcelResource" + DisplayName = "Graph Doc pages.xlsx" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RIR7PSV4JJSFJHKNPUVUWGPW4O2" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationClassAssignmentResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + DisplayName = "article.pdf" + "@odata.type" = "#microsoft.graph.educationFileResource" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + DisplayName = "Where the Wonders of Learning Never Cease | Wonderopolis" + Link = "https://wonderopolis.org/" + ThumbnailPreviewUrl = $null + "@odata.type" = "#microsoft.graph.educationLinkResource" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationMediaResource" + DisplayName = "homework example.PNG" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RMUWOKAGSJZ6BHINJVKNMOOJABF" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationPowerPointResource" + DisplayName = "state diagram.pptx" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RN327OXRN6EVFE2Q5FRJZTN5EOJ" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + DisplayName = "Template - My Story" + AppId = "6fbeb90c-3d55-4bd5-82c4-bfe824be4300" + AppIconWebUrl = "https://statics.teams.cdn.office.net/evergreen-assets/ThirdPartyApps/6fbeb90c-3d55-4bd5-82c4-bfe824be4300_largeImage.png?v=2.0.2" + TeamsEmbeddedContentUrl = "https://app.api.edu.buncee.com/player/C7B0866C9B7E485EAE21AE14DBC3FD08?embed=1&render_slide_panel=1" + WebUrl = "https://app.edu.buncee.com/buncee/C7B0866C9B7E485EAE21AE14DBC3FD08" + "@odata.type" = "#microsoft.graph.educationTeamsAppResource" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgEducationClassAssignmentResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + DistributeForStudentWork = $false + Resource = @{ + "@odata.type" = "microsoft.graph.educationWordResource" + DisplayName = "Issues and PR in guthub.docx" + FileUrl = "https://graph.microsoft.com/beta/drives/b!DPA6q59Tw0mtgmyXRUmrQRqBZTesG-lMkl1cBmvvMeUEWrOk89nKRpUEr4ZhNYBc/items/016XPCQEELISJB7NVNVBAK7V4UIF6Q27U2" + } +} +New-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionOutcome.md index 093355d11d5..14d53469c1b 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationFeedbackResourceOutcome" + FeedbackResource = @{ + "@odata.type" = "#microsoft.graph.educationWordResource" + DisplayName = "Document1.docx" + } +} +New-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionResource.md index 093355d11d5..25fc3cc0468 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassAssignmentSubmissionResource.md @@ -1,18 +1,84 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + "@odata.type" = "#microsoft.graph.educationExcelResource" + DisplayName = "userAgeGroup QueryParameter Test.xlsx" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RONPUDM2CZKNRF3TGHYUM7Z64WE" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + DisplayName = "_FTP_EDC-61424749-250820211136.pdf" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RL45XVPGDBRW5FLDR62Z5TCMGG3" + "@odata.type" = "#microsoft.graph.educationFileResource" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + DisplayName = "Wikipedia" + Link = "https://en.wikipedia.org/wiki/Main_Page" + "@odata.type" = "#microsoft.graph.educationLinkResource" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + DisplayName = "category.jpg" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RK2WLKUUBAA4ZBKXNBL6QFC2TKG" + "@odata.type" = "#microsoft.graph.educationMediaResource" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + "@odata.type" = "#microsoft.graph.educationPowerPointResource" + DisplayName = "state diagram.pptx" + FileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXodJYOAkI7rTLhw7ME_e42J/items/01QTY63RN3MHWWM7BNXJD2UD5OMRFEDKN2" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgEducationClassAssignmentSubmissionResource Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + Resource = @{ + "@odata.type" = "microsoft.graph.educationWordResource" + DisplayName = "Report.docx" + FileUrl = "https://graph.microsoft.com/beta/drives/b!DPA6q59Tw0mtgmyXRUmrQRqBZTesG-lMkl1cBmvvMeUEWrOk89nKRpUEr4ZhNYBc/items/016XPCQEELISJB7NVNVBAK7V4UIF6Q27U2" + } +} +New-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -BodyParameter $params +``` +This example shows how to use the New-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassMemberByRef.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassMemberByRef.md index 093355d11d5..807fba8d62d 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassMemberByRef.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassMemberByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClassMemberByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/education/users/13015" +} +New-MgEducationClassMemberByRef -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClassMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassTeacherByRef.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassTeacherByRef.md index 093355d11d5..b4c0cdbf514 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationClassTeacherByRef.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationClassTeacherByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationClassTeacherByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/education/users/14011" +} +New-MgEducationClassTeacherByRef -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationClassTeacherByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationMeRubric.md index 093355d11d5..e8b652d0380 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationMeRubric.md @@ -1,18 +1,157 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationMeRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Example Credit Rubric" + Description = @{ + Content = "This is an example of a credit rubric (no points)" + ContentType = "text" + } + Levels = @( + @{ + DisplayName = "Good" + Description = @{ + Content = "" + ContentType = "text" + } + } + @{ + DisplayName = "Poor" + Description = @{ + Content = "" + ContentType = "text" + } + } + ) + Qualities = @( + @{ + Description = @{ + Content = "Argument" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay's argument is persuasive." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay's argument does not make sense." + ContentType = "text" + } + } + ) + } + @{ + Description = @{ + Content = "Spelling and Grammar" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay uses proper spelling and grammar with few or no errors." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay has numerous errors in spelling and/or grammar." + ContentType = "text" + } + } + ) + } + ) +} +New-MgEducationMeRubric -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgEducationMeRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Example Points Rubric" + Description = @{ + Content = "This is an example of a rubric with points" + ContentType = "text" + } + Levels = @( + @{ + DisplayName = "Good" + Description = @{ + Content = "" + ContentType = "text" + } + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGradeType" + MaxPoints = + } + } + @{ + DisplayName = "Poor" + Description = @{ + Content = "" + ContentType = "text" + } + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGradeType" + MaxPoints = + } + } + ) + Qualities = @( + @{ + Description = @{ + Content = "Argument" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay's argument is persuasive." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay's argument does not make sense." + ContentType = "text" + } + } + ) + Weight = 50.0 + } + @{ + Description = @{ + Content = "Spelling and Grammar" + ContentType = "text" + } + Criteria = @( + @{ + Description = @{ + Content = "The essay uses proper spelling and grammar with few or no errors." + ContentType = "text" + } + } + @{ + Description = @{ + Content = "The essay has numerous errors in spelling and/or grammar." + ContentType = "text" + } + } + ) + Weight = 50.0 + } + ) + Grading = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGradeType" + } +} +New-MgEducationMeRubric -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationSchool.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationSchool.md index 093355d11d5..2f7333d397a 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationSchool.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Fabrikam High School" + Description = "Magnate school for the arts. Los Angeles School District" + ExternalSource = "String" + PrincipalEmail = "AmyR@fabrikam.com" + PrincipalName = "Amy Roebuck" + ExternalPrincipalId = "14007" + HighestGrade = "12" + LowestGrade = "9" + SchoolNumber = "10002" + Address = @{ + City = "Los Angeles" + CountryOrRegion = "United States" + PostalCode = "98055" + State = "CA" + Street = "12345 Main St." + } + ExternalId = "10002" + Phone = "+1 (253) 555-0102" +} +New-MgEducationSchool -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolClassByRef.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolClassByRef.md index 093355d11d5..33ca265abc0 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolClassByRef.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolClassByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationSchoolClassByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/education/classes/11006" +} +New-MgEducationSchoolClassByRef -EducationSchoolId $educationSchoolId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationSchoolClassByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolUserByRef.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolUserByRef.md index 093355d11d5..41d0f7ab0bc 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolUserByRef.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationSchoolUserByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationSchoolUserByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/education/users/14008" +} +New-MgEducationSchoolUserByRef -EducationSchoolId $educationSchoolId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationSchoolUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/New-MgEducationUser.md b/src/Education/Education/examples/v1.0-beta/New-MgEducationUser.md index 093355d11d5..e61dc678bc9 100644 --- a/src/Education/Education/examples/v1.0-beta/New-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0-beta/New-MgEducationUser.md @@ -1,18 +1,37 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEducationUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Dion Matheson" + GivenName = "Dion" + MiddleName = $null + Surname = "Matheson" + Mail = "DionM@contoso.com" + MobilePhone = "+1 (253) 555-0101" + CreatedBy = @{ + User = @{ + DisplayName = "Susana Rocha" + Id = "14012" + } + } + ExternalSource = "sis" + MailingAddress = @{ + City = "Los Angeles" + CountryOrRegion = "United States" + PostalCode = "98055" + State = "CA" + Street = "12345 Main St." + } + PrimaryRole = "student" + ResidenceAddress = @{ + City = "Los Angeles" + CountryOrRegion = "United States" + PostalCode = "98055" + State = "CA" + Street = "12345 Main St." + } +} +New-MgEducationUser -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Publish-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0-beta/Publish-MgEducationClassAssignment.md index 093355d11d5..60310cb3a0c 100644 --- a/src/Education/Education/examples/v1.0-beta/Publish-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/Publish-MgEducationClassAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgEducationClassAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Publish-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClass.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClass.md index 093355d11d5..b96838cab33 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClass.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClass -EducationClassId $educationClassId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignment.md index 093355d11d5..c8b2fb842d2 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClassAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentCategory.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentCategory.md index 093355d11d5..c41b8ef9ccc 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentCategory.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentCategory.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClassAssignmentCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentCategory -EducationClassId $educationClassId -EducationCategoryId $educationCategoryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClassAssignmentCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentResource.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentResource.md index 093355d11d5..41e2d166aeb 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentResource.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentResource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClassAssignmentResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationAssignmentResourceId $educationAssignmentResourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClassAssignmentResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentRubricByRef.md index 093355d11d5..d3f39ff4857 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentRubricByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClassAssignmentRubricByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClassAssignmentRubricByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionOutcome.md index 093355d11d5..b6ff70e8c03 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionResource.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionResource.md index 093355d11d5..df2337a43da 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationClassAssignmentSubmissionResource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationClassAssignmentSubmissionResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationClassAssignmentSubmissionResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationSubmissionResourceId $educationSubmissionResourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationClassAssignmentSubmissionResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationMeRubric.md index 093355d11d5..24dade8fdb0 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationMeRubric.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationMeRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationMeRubric -EducationRubricId $educationRubricId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSchool.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSchool.md index 093355d11d5..2f094bc798d 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSchool.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationSchool -EducationSchoolId $educationSchoolId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSynchronizationProfile.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSynchronizationProfile.md index 093355d11d5..438d8b08c39 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSynchronizationProfile.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationSynchronizationProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationUser.md b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationUser.md index 093355d11d5..4fa932e5fc0 100644 --- a/src/Education/Education/examples/v1.0-beta/Remove-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0-beta/Remove-MgEducationUser.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEducationUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Remove-MgEducationUser -EducationUserId $educationUserId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Reset-MgEducationSynchronizationProfile.md b/src/Education/Education/examples/v1.0-beta/Reset-MgEducationSynchronizationProfile.md index 093355d11d5..bc5e4eaaa12 100644 --- a/src/Education/Education/examples/v1.0-beta/Reset-MgEducationSynchronizationProfile.md +++ b/src/Education/Education/examples/v1.0-beta/Reset-MgEducationSynchronizationProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Reset-MgEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Reset-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Resume-MgEducationSynchronizationProfile.md b/src/Education/Education/examples/v1.0-beta/Resume-MgEducationSynchronizationProfile.md index 093355d11d5..98fffd92d21 100644 --- a/src/Education/Education/examples/v1.0-beta/Resume-MgEducationSynchronizationProfile.md +++ b/src/Education/Education/examples/v1.0-beta/Resume-MgEducationSynchronizationProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Resume-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Resume-MgEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Resume-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Set-MgEducationClassAssignmentRubricByRef.md b/src/Education/Education/examples/v1.0-beta/Set-MgEducationClassAssignmentRubricByRef.md index 093355d11d5..cbf18b98d34 100644 --- a/src/Education/Education/examples/v1.0-beta/Set-MgEducationClassAssignmentRubricByRef.md +++ b/src/Education/Education/examples/v1.0-beta/Set-MgEducationClassAssignmentRubricByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgEducationClassAssignmentRubricByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.id" = "https://graph.microsoft.com/v1.0/education/me/rubrics/{id}" +} +Set-MgEducationClassAssignmentRubricByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgEducationClassAssignmentRubricByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Start-MgEducationSynchronizationProfile.md b/src/Education/Education/examples/v1.0-beta/Start-MgEducationSynchronizationProfile.md index 093355d11d5..2f175d67f7e 100644 --- a/src/Education/Education/examples/v1.0-beta/Start-MgEducationSynchronizationProfile.md +++ b/src/Education/Education/examples/v1.0-beta/Start-MgEducationSynchronizationProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Start-MgEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Submit-MgEducationClassAssignmentSubmission.md b/src/Education/Education/examples/v1.0-beta/Submit-MgEducationClassAssignmentSubmission.md index 093355d11d5..2e1a632398a 100644 --- a/src/Education/Education/examples/v1.0-beta/Submit-MgEducationClassAssignmentSubmission.md +++ b/src/Education/Education/examples/v1.0-beta/Submit-MgEducationClassAssignmentSubmission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Submit-MgEducationClassAssignmentSubmission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Submit-MgEducationClassAssignmentSubmission -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Submit-MgEducationClassAssignmentSubmission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Suspend-MgEducationSynchronizationProfile.md b/src/Education/Education/examples/v1.0-beta/Suspend-MgEducationSynchronizationProfile.md index 093355d11d5..f846e7a185b 100644 --- a/src/Education/Education/examples/v1.0-beta/Suspend-MgEducationSynchronizationProfile.md +++ b/src/Education/Education/examples/v1.0-beta/Suspend-MgEducationSynchronizationProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Suspend-MgEducationSynchronizationProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +Suspend-MgEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Suspend-MgEducationSynchronizationProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClass.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClass.md index 093355d11d5..7defc755f60 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClass.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClass.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationClass Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + Description = "History - World History 1" + DisplayName = "World History Level 1" +} +Update-MgEducationClass -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationClass Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignment.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignment.md index 093355d11d5..e56659a85ed 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignment.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignment.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationClassAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Reading and review test 09.03 #5" + Instructions = @{ + ContentType = "text" + Content = "Read chapter 5 and write your review" + } + DueDateTime = [System.DateTime]::Parse("2021-09-10T00:00:00Z") + AddedStudentAction = "none" + AddToCalendarAction = "studentsAndPublisher" +} +Update-MgEducationClassAssignment -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationClassAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentDefault.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentDefault.md index 093355d11d5..ff1e846890a 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentDefault.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentDefault.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationClassAssignmentDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + AddedStudentAction = "assignIfOpen" + AddToCalendarAction = "studentsAndTeamOwners" + NotificationChannelUrl = "https://graph.microsoft.com/beta/teams('id')/channels('id')" +} +Update-MgEducationClassAssignmentDefault -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationClassAssignmentDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSetting.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSetting.md index 093355d11d5..7f42606bd35 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSetting.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSetting.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationClassAssignmentSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + SubmissionAnimationDisabled = $true +} +Update-MgEducationClassAssignmentSetting -EducationClassId $educationClassId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationClassAssignmentSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSubmissionOutcome.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSubmissionOutcome.md index 093355d11d5..2b0be5c9bcd 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSubmissionOutcome.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationClassAssignmentSubmissionOutcome.md @@ -1,18 +1,38 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationFeedbackOutcome" +} +Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationRubricOutcome" + RubricQualityFeedback = @( + ) + RubricQualitySelectedLevels = @( + ) +} +Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + "@odata.type" = "#microsoft.graph.educationPointsOutcome" + Points = @{ + "@odata.type" = "#microsoft.graph.educationAssignmentPointsGrade" + Points = + } +} +Update-MgEducationClassAssignmentSubmissionOutcome -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationSubmissionId $educationSubmissionId -EducationOutcomeId $educationOutcomeId -BodyParameter $params +``` +This example shows how to use the Update-MgEducationClassAssignmentSubmissionOutcome Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationMeRubric.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationMeRubric.md index 093355d11d5..8142e8dc7bf 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationMeRubric.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationMeRubric.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationMeRubric Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Example Credit Rubric after display name patch" +} +Update-MgEducationMeRubric -EducationRubricId $educationRubricId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationMeRubric Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationSchool.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationSchool.md index 093355d11d5..47dfcc53182 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationSchool.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationSchool.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationSchool Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Fabrikam Arts High School" + Description = "Magnate school for the arts. Los Angeles School District" +} +Update-MgEducationSchool -EducationSchoolId $educationSchoolId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationSchool Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/Education/examples/v1.0-beta/Update-MgEducationUser.md b/src/Education/Education/examples/v1.0-beta/Update-MgEducationUser.md index 093355d11d5..b89f6cd8f90 100644 --- a/src/Education/Education/examples/v1.0-beta/Update-MgEducationUser.md +++ b/src/Education/Education/examples/v1.0-beta/Update-MgEducationUser.md @@ -1,18 +1,51 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEducationUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + RelatedContacts = @( + @{ + DisplayName = "Father Time" + EmailAddress = "father@time.com" + MobilePhone = "4251231234" + Relationship = "guardian" + AccessConsent = $true + } + @{ + DisplayName = "Mother Nature" + EmailAddress = "mother@nature.co.uk" + MobilePhone = "3251231234" + Relationship = "parent" + AccessConsent = $true + } + ) +} +Update-MgEducationUser -EducationUserId $educationUserId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgEducationUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Rogelio Cazares" + GivenName = "Rogelio" + MiddleName = "Fernando" + Surname = "Cazares" +} +Update-MgEducationUser -EducationUserId $educationUserId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgEducationUser Cmdlet +```powershell +Import-Module Microsoft.Graph.Education +$params = @{ + DisplayName = "Rogelio Cazares" + GivenName = "Rogelio" + MiddleName = "Fernando" + Surname = "Cazares" +} +Update-MgEducationUser -EducationUserId $educationUserId -BodyParameter $params +``` +This example shows how to use the Update-MgEducationUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgDrive.md b/src/Files/Files/examples/v1.0-beta/Get-MgDrive.md index 093355d11d5..cdf71c3bf1a 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgDrive.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgDrive.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgDrive -DriveId $driveId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemAnalytic.md b/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemAnalytic.md index 093355d11d5..b51ac38f2fa 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemAnalytic.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemAnalytic.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDriveItemAnalytic Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgDriveItemAnalytic -DriveId $driveId -DriveItemId $driveItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDriveItemAnalytic Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemChild.md b/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemChild.md index 093355d11d5..a5cfd4c7166 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemChild.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgDriveItemChild.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDriveItemChild Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgDriveItemChild -DriveId $driveId -DriveItemId $driveItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDriveItemChild Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgGroupDefaultDrive.md b/src/Files/Files/examples/v1.0-beta/Get-MgGroupDefaultDrive.md index 093355d11d5..955c51214ff 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgGroupDefaultDrive.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgGroupDefaultDrive.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupDefaultDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgGroupDefaultDrive -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgGroupDrive.md b/src/Files/Files/examples/v1.0-beta/Get-MgGroupDrive.md index 093355d11d5..a5c93851d46 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgGroupDrive.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgGroupDrive.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgGroupDrive -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgShareDriveItem.md b/src/Files/Files/examples/v1.0-beta/Get-MgShareDriveItem.md index 093355d11d5..2ed20e7b12d 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgShareDriveItem.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgShareDriveItem.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgShareDriveItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId -ExpandProperty "children" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgShareDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgShareDriveItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgShareDriveItem -SharedDriveItemId $sharedDriveItemId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgShareDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgShareSharedDriveItemSharedDriveItem.md b/src/Files/Files/examples/v1.0-beta/Get-MgShareSharedDriveItemSharedDriveItem.md index 093355d11d5..bf2eb45757a 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgShareSharedDriveItemSharedDriveItem.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgShareSharedDriveItemSharedDriveItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgShareSharedDriveItemSharedDriveItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgShareSharedDriveItemSharedDriveItem -SharedDriveItemId $sharedDriveItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgShareSharedDriveItemSharedDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgUserDefaultDrive.md b/src/Files/Files/examples/v1.0-beta/Get-MgUserDefaultDrive.md index 093355d11d5..8a536b750af 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgUserDefaultDrive.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgUserDefaultDrive.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserDefaultDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgUserDefaultDrive -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserDefaultDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +# A UPN can also be used as -UserId. +Get-MgUserDefaultDrive -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Get-MgUserDrive.md b/src/Files/Files/examples/v1.0-beta/Get-MgUserDrive.md index 093355d11d5..4ee20f6d7d8 100644 --- a/src/Files/Files/examples/v1.0-beta/Get-MgUserDrive.md +++ b/src/Files/Files/examples/v1.0-beta/Get-MgUserDrive.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +# A UPN can also be used as -UserId. +Get-MgUserDrive -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Get-MgUserDrive -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Grant-MgSharePermission.md b/src/Files/Files/examples/v1.0-beta/Grant-MgSharePermission.md index 093355d11d5..702c8dbc620 100644 --- a/src/Files/Files/examples/v1.0-beta/Grant-MgSharePermission.md +++ b/src/Files/Files/examples/v1.0-beta/Grant-MgSharePermission.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Grant-MgSharePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +$params = @{ + Recipients = @( + @{ + Email = "john@contoso.com" + } + @{ + Email = "ryan@external.com" + } + ) + Roles = @( + "read" + ) +} +Grant-MgSharePermission -SharedDriveItemId $sharedDriveItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Grant-MgSharePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckinDriveItem.md b/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckinDriveItem.md index 093355d11d5..b1f06e3a43c 100644 --- a/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckinDriveItem.md +++ b/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckinDriveItem.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgCheckinDriveItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +$params = @{ + Comment = "Updating the latest guidelines" +} +Invoke-MgCheckinDriveItem -DriveId $driveId -DriveItemId $driveItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgCheckinDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckoutDriveItem.md b/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckoutDriveItem.md index 093355d11d5..1369b601643 100644 --- a/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckoutDriveItem.md +++ b/src/Files/Files/examples/v1.0-beta/Invoke-MgCheckoutDriveItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgCheckoutDriveItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Invoke-MgCheckoutDriveItem -DriveId $driveId -DriveItemId $driveItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgCheckoutDriveItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Files/Files/examples/v1.0-beta/Restore-MgDriveItemVersion.md b/src/Files/Files/examples/v1.0-beta/Restore-MgDriveItemVersion.md index 093355d11d5..d184a260a9e 100644 --- a/src/Files/Files/examples/v1.0-beta/Restore-MgDriveItemVersion.md +++ b/src/Files/Files/examples/v1.0-beta/Restore-MgDriveItemVersion.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restore-MgDriveItemVersion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Files +Restore-MgDriveItemVersion -DriveId $driveId -DriveItemId $driveItemId -DriveItemVersionId $driveItemVersionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restore-MgDriveItemVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Add-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0-beta/Add-MgGroupFavorite.md index 093355d11d5..d0fba8517ea 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Add-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0-beta/Add-MgGroupFavorite.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgGroupFavorite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Add-MgGroupFavorite -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgGroupFavorite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupAcceptedSender.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupAcceptedSender.md index 093355d11d5..99b4f1ef2e8 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupAcceptedSender.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupAcceptedSender.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupAcceptedSender Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupAcceptedSender -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupAcceptedSender Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversation.md index 093355d11d5..a37e7fe7fc6 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversation.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupConversation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupConversation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversation -GroupId $groupId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgGroupConversation Cmdlet +```powershell +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversation -GroupId $groupId -ConversationId $conversationId +``` +This example shows how to use the Get-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversationThread.md index 093355d11d5..960b3d9f5f9 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupConversationThread.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupConversationThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupConversationThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupDelta.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupDelta.md index 093355d11d5..dff3a484153 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupDelta.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupDelta.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgGroupDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupDelta -Property "displayName,description,mailNickname" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupEndpoint.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupEndpoint.md index 093355d11d5..1db419ff8e1 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupEndpoint.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupEndpoint.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupEndpoint Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupEndpoint -GroupId $groupId -EndpointId $endpointId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgGroupEndpoint Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupEndpoint Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupEndpoint -GroupId $groupId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupEndpoint Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicy.md index 093355d11d5..7f106a34079 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupLifecyclePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupLifecyclePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupLifecyclePolicy ``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicyByGroup.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicyByGroup.md index 093355d11d5..ef79c66389f 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicyByGroup.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupLifecyclePolicyByGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupLifecyclePolicyByGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupLifecyclePolicyByGroup -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupLifecyclePolicyByGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupMemberOf.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupMemberOf.md index 093355d11d5..43e6f5c11ee 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupMemberOf.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupMemberOf -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPermissionGrant.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPermissionGrant.md index 093355d11d5..7a758e041a1 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPermissionGrant.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPermissionGrant.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupPermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupPermissionGrant -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupPermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPhoto.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPhoto.md index 093355d11d5..2c1dee45862 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPhoto.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupPhoto.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupPhoto Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupPhoto -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupPhoto Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupRejectedSender.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupRejectedSender.md index 093355d11d5..aa9baa519e0 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupRejectedSender.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupRejectedSender.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupRejectedSender Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupRejectedSender -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupRejectedSender Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThread.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThread.md index 093355d11d5..d5e4f0650b4 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThread.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgGroupThread Cmdlet +```powershell +Import-Module Microsoft.Graph.Groups +Get-MgGroupThread -GroupId $groupId +``` +This example shows how to use the Get-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPost.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPost.md index 093355d11d5..b023fd6622c 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPost.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupThreadPost Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostAttachment.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostAttachment.md index 093355d11d5..ac521468139 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostAttachment.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostAttachment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupThreadPostAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThreadPostAttachment -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupThreadPostAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostExtension.md index 093355d11d5..ad651224283 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupThreadPostExtension.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupThreadPostExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupThreadPostExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMember.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMember.md index 093355d11d5..b7ca5b23cdd 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMember.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupTransitiveMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupTransitiveMember -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupTransitiveMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMemberOf.md b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMemberOf.md index 093355d11d5..a97b23a9555 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMemberOf.md +++ b/src/Groups/Groups/examples/v1.0-beta/Get-MgGroupTransitiveMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupTransitiveMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Get-MgGroupTransitiveMemberOf -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgForwardGroupThreadPost.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgForwardGroupThreadPost.md index 093355d11d5..0b786482c0b 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgForwardGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgForwardGroupThreadPost.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgForwardGroupThreadPost Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Comment = "comment-value" + ToRecipients = @( + @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ) +} +Invoke-MgForwardGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgForwardGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgGraphGroup.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgGraphGroup.md index 093355d11d5..7cd55b752b4 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgGraphGroup.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgGraphGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgGraphGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Invoke-MgGraphGroup -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgGraphGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroup.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroup.md index 093355d11d5..0172a929034 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroup.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgRenewGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Invoke-MgRenewGroup -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgRenewGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroupLifecyclePolicy.md index 093355d11d5..0db570d68c3 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgRenewGroupLifecyclePolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgRenewGroupLifecyclePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + GroupId = "ffffffff-ffff-ffff-ffff-ffffffffffff" +} +Invoke-MgRenewGroupLifecyclePolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgRenewGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThread.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThread.md index 093355d11d5..2e68a25341d 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThread.md @@ -1,18 +1,87 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReplyGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "" + Content = "content-value" + } + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgReplyGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "text" + Content = "Which quarter does that file cover? See my attachment." + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "Another file as attachment" + ContentBytes = "VGhpcyBpcyBhIGZpbGUgdG8gYmUgYXR0YWNoZWQu" + } + ) + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgReplyGroupThread Cmdlet +```powershell +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "text" + Content = "I attached an event." + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.itemAttachment" + Name = "Holiday event" + Item = @{ + "@odata.type" = "microsoft.graph.event" + Subject = "Discuss gifts for children" + } + } + ) + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params +``` +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Invoke-MgReplyGroupThread Cmdlet +```powershell +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "text" + Content = "I attached a reference to a file on OneDrive." + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.referenceAttachment" + Name = "Personal pictures" + SourceUrl = "https://contoso.com/personal/mario_contoso_net/Documents/Pics" + ProviderType = "oneDriveConsumer" + Permission = "Edit" + IsFolder = "True" + } + ) + } +} +Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params +``` +This example shows how to use the Invoke-MgReplyGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThreadPost.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThreadPost.md index 093355d11d5..d1ad6998f1a 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThreadPost.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgReplyGroupThreadPost.md @@ -1,18 +1,87 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReplyGroupThreadPost Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "html" + Content = "
When and where?
" + } + Extensions = @( + @{ + "@odata.type" = "microsoft.graph.openTypeExtension" + ExtensionName = "Com.Contoso.HR" + CompanyName = "Contoso" + ExpirationDate = "2015-07-03T13:04:00.000Z" + TopPicks = @( + "Employees only" + "Add spouse or guest" + "Add family" + ) + } + ) + } +} +Invoke-MgReplyGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgReplyGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgReplyGroupThreadPost Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Post = @{ + Body = @{ + ContentType = "" + Content = "content-value" + } + ReceivedDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + HasAttachments = $true + From = @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + Sender = @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ConversationThreadId = "conversationThreadId-value" + NewParticipants = @( + @{ + EmailAddress = @{ + Name = "name-value" + Address = "address-value" + } + } + ) + ConversationId = "conversationId-value" + CreatedDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + LastModifiedDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + ChangeKey = "changeKey-value" + Categories = @( + "categories-value" + ) + Id = "id-value" + InReplyTo = @{ + } + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + LastModifiedDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + Name = "name-value" + ContentType = "contentType-value" + Size = 99 + IsInline = $true + Id = "id-value" + } + ) + } +} +Invoke-MgReplyGroupThreadPost -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReplyGroupThreadPost Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgSubscribeGroupByMail.md b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgSubscribeGroupByMail.md index 093355d11d5..f314f5fa27f 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Invoke-MgSubscribeGroupByMail.md +++ b/src/Groups/Groups/examples/v1.0-beta/Invoke-MgSubscribeGroupByMail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSubscribeGroupByMail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Invoke-MgSubscribeGroupByMail -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSubscribeGroupByMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupAcceptedSenderByRef.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupAcceptedSenderByRef.md index 093355d11d5..9c24b40ae1b 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupAcceptedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupAcceptedSenderByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupAcceptedSenderByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/users/alexd@contoso.com" +} +New-MgGroupAcceptedSenderByRef -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupAcceptedSenderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversation.md index 093355d11d5..4148398d754 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversation.md @@ -1,18 +1,65 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupConversation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "New head count" + Threads = @( + @{ + Posts = @( + @{ + Body = @{ + ContentType = "html" + Content = "The confirmation will come by the end of the week." + } + NewParticipants = @( + @{ + EmailAddress = @{ + Name = "Adele Vance" + Address = "AdeleV@contoso.onmicrosoft.com" + } + } + ) + } + ) + } + ) +} +New-MgGroupConversation -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgGroupConversation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "Does anyone have a second?" + Threads = @( + @{ + Posts = @( + @{ + Body = @{ + ContentType = "HTML" + Content = "This is urgent!" + } + Extensions = @( + @{ + "@odata.type" = "microsoft.graph.openTypeExtension" + ExtensionName = "Com.Contoso.Benefits" + CompanyName = "Contoso" + ExpirationDate = "2016-08-03T11:00:00.000Z" + TopPicks = @( + "Employees only" + "Add spouse or guest" + "Add family" + ) + } + ) + } + ) + } + ) +} +New-MgGroupConversation -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversationThread.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversationThread.md index 093355d11d5..aa13718af43 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversationThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupConversationThread.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupConversationThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "Take your wellness days and rest" + Posts = @( + @{ + Body = @{ + ContentType = "html" + Content = "Waiting for the summer holidays." + } + } + ) +} +New-MgGroupConversationThread -GroupId $groupId -ConversationId $conversationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupConversationThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupLifecyclePolicy.md index 093355d11d5..c8c8d6981bc 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupLifecyclePolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupLifecyclePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + GroupLifetimeInDays = 100 + ManagedGroupTypes = "Selected" + AlternateNotificationEmails = "admin@contoso.com" +} +New-MgGroupLifecyclePolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupMemberByRef.md index 093355d11d5..f4bb792860f 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupMemberByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupMemberByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/directoryObjects/{id}" +} +New-MgGroupMemberByRef -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupRejectedSenderByRef.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupRejectedSenderByRef.md index 093355d11d5..43f6a879a23 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupRejectedSenderByRef.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupRejectedSenderByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupRejectedSenderByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/users/alexd@contoso.com" +} +New-MgGroupRejectedSenderByRef -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupRejectedSenderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupSetting.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupSetting.md index 093355d11d5..db6f46e0df6 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupSetting.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupSetting.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + TemplateId = "08d542b9-071f-4e16-94b0-74abb372e3d9" + Values = @( + @{ + Name = "AllowToAddGuests" + Value = "false" + } + ) +} +New-MgGroupSetting -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupThread.md b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupThread.md index 093355d11d5..9abf0569b6f 100644 --- a/src/Groups/Groups/examples/v1.0-beta/New-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/New-MgGroupThread.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + Topic = "New Conversation Thread Topic" + Posts = @( + @{ + Body = @{ + ContentType = "html" + Content = "this is body content" + } + NewParticipants = @( + @{ + EmailAddress = @{ + Name = "Alex Darrow" + Address = "alexd@contoso.com" + } + } + ) + } + ) +} +New-MgGroupThread -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupConversation.md b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupConversation.md index 093355d11d5..8cf3f2c1726 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupConversation.md +++ b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupConversation.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupConversation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgGroupConversation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupConversation -GroupId $groupId -ConversationId $conversationId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupConversation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupFavorite.md b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupFavorite.md index 093355d11d5..7c030b1c197 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupFavorite.md +++ b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupFavorite.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupFavorite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupFavorite -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupFavorite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupLifecyclePolicy.md index 093355d11d5..e35851c5eb5 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupLifecyclePolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupLifecyclePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupMemberByRef.md b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupMemberByRef.md index 093355d11d5..cdc572481d3 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupMemberByRef.md +++ b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupMemberByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupMemberByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupMemberByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupOwnerByRef.md b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupOwnerByRef.md index 093355d11d5..ae97b0608e7 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupOwnerByRef.md +++ b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupOwnerByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupOwnerByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupOwnerByRef -GroupId $groupId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupThread.md b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupThread.md index 093355d11d5..3f81cb5b28e 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/Remove-MgGroupThread.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Remove-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Reset-MgGroupUnseenCount.md b/src/Groups/Groups/examples/v1.0-beta/Reset-MgGroupUnseenCount.md index 093355d11d5..2e75ffdf2f5 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Reset-MgGroupUnseenCount.md +++ b/src/Groups/Groups/examples/v1.0-beta/Reset-MgGroupUnseenCount.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgGroupUnseenCount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +Reset-MgGroupUnseenCount -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Reset-MgGroupUnseenCount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Set-MgGroupLicense.md b/src/Groups/Groups/examples/v1.0-beta/Set-MgGroupLicense.md index 093355d11d5..a6b7f1f2ac7 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Set-MgGroupLicense.md +++ b/src/Groups/Groups/examples/v1.0-beta/Set-MgGroupLicense.md @@ -1,18 +1,41 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgGroupLicense Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + AddLicenses = @( + @{ + DisabledPlans = @( + "113feb6c-3fe4-4440-bddc-54d774bf0318" + "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f" + ) + SkuId = "b05e124f-c7cc-45a0-a6aa-8cf78c946968" + } + @{ + DisabledPlans = @( + "a413a9ff-720c-4822-98ef-2f37c2a21f4c" + ) + SkuId = "c7df2760-2c81-4ef7-b578-5b5392b571df" + } + ) + RemoveLicenses = @( + ) +} +Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Set-MgGroupLicense Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Set-MgGroupLicense Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + AddLicenses = @( + ) + RemoveLicenses = @( + "c7df2760-2c81-4ef7-b578-5b5392b571df" + "b05e124f-c7cc-45a0-a6aa-8cf78c946968" + ) +} +Set-MgGroupLicense -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Set-MgGroupLicense Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembership.md b/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembership.md index 093355d11d5..be6740516b2 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembership.md +++ b/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembership.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgGroupDynamicMembership Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + MemberId = "319b41e8-d9e4-42f8-bdc9-741113f48b33" +} +Test-MgGroupDynamicMembership -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgGroupDynamicMembership Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembershipRule.md b/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembershipRule.md index 093355d11d5..309668d854e 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembershipRule.md +++ b/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupDynamicMembershipRule.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgGroupDynamicMembershipRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + MemberId = "319b41e8-d9e4-42f8-bdc9-741113f48b33" + MembershipRule = "(user.displayName -startsWith "EndTestUser")" +} +Test-MgGroupDynamicMembershipRule -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgGroupDynamicMembershipRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupProperty.md b/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupProperty.md index 093355d11d5..1ba38d9f927 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupProperty.md +++ b/src/Groups/Groups/examples/v1.0-beta/Test-MgGroupProperty.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgGroupProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + DisplayName = "Myprefix_test_mysuffix" + MailNickname = "Myprefix_test_mysuffix" + OnBehalfOfUserId = "onBehalfOfUserId-value" +} +Test-MgGroupProperty -GroupId $groupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgGroupProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupLifecyclePolicy.md b/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupLifecyclePolicy.md index 093355d11d5..5c1306ba208 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupLifecyclePolicy.md +++ b/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupLifecyclePolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgGroupLifecyclePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + GroupLifetimeInDays = 180 + ManagedGroupTypes = "Selected" + AlternateNotificationEmails = "admin@contoso.com" +} +Update-MgGroupLifecyclePolicy -GroupLifecyclePolicyId $groupLifecyclePolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgGroupLifecyclePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThread.md b/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThread.md index 093355d11d5..e2b49b2c237 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThread.md +++ b/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThread.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgGroupThread Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + OriginalStartTimeZone = "originalStartTimeZone-value" + OriginalEndTimeZone = "originalEndTimeZone-value" + Uid = "iCalUId-value" + ReminderMinutesBeforeStart = + IsReminderOn = $true +} +Update-MgGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgGroupThread Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThreadPostExtension.md b/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThreadPostExtension.md index 093355d11d5..46ab207995e 100644 --- a/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThreadPostExtension.md +++ b/src/Groups/Groups/examples/v1.0-beta/Update-MgGroupThreadPostExtension.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgGroupThreadPostExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Groups +$params = @{ + "@odata.type" = "#microsoft.outlookServices.openTypeExtension" + ExtensionName = "Com.Contoso.Estimate" + CompanyName = "Contoso" + ExpirationDate = "2016-07-30T11:00:00.000Z" + DealValue = + TopPicks = @( + "Employees only" + "Add spouse or guest" + "Add family" + ) +} +Update-MgGroupThreadPostExtension -GroupId $groupId -ConversationThreadId $conversationThreadId -PostId $postId -ExtensionId $extensionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgGroupThreadPostExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Confirm-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Confirm-MgDomain.md index 093355d11d5..4790401e679 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Confirm-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Confirm-MgDomain.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgDomain Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Confirm-MgDomain -DomainId $domainId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitDelta.md index 093355d11d5..99a1f235cc6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAdministrativeUnitDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgAdministrativeUnitDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgAdministrativeUnitDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitScopedRoleMember.md index 093355d11d5..9e55a37a371 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgAdministrativeUnitScopedRoleMember.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAdministrativeUnitScopedRoleMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAdministrativeUnitScopedRoleMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDelta.md index 093355d11d5..db93604d695 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgContactDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgContactDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDirectReport.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDirectReport.md index 093355d11d5..a67e12d3974 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDirectReport.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactDirectReport.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgContactDirectReport Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactDirectReport -OrgContactId $orgContactId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgContactDirectReport Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactManager.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactManager.md index 093355d11d5..110f1c146c1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactManager.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactManager.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgContactManager Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactManager -OrgContactId $orgContactId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgContactManager Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactMemberOf.md index 093355d11d5..48d8ebf9a7e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContactMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgContactMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContactMemberOf -OrgContactId $orgContactId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgContactMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContract.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContract.md index 093355d11d5..c2d402b792b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContract.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgContract.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgContract Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContract -ContractId $contractId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgContract Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgContract Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgContract ``` - -{{ Add description here }} - +This example shows how to use the Get-MgContract Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDevice.md index 093355d11d5..c41183e4c53 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDevice.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -DeviceId $deviceId -Property "id,extensionAttributes" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDevice Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Filter "extensionAttributes/extensionAttribute1 eq 'BYOD-Device'" -CountVariable CountVar -ConsistencyLevel eventual +``` +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgDevice Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice +``` +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgDevice Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Property "id,extensionAttributes" +``` +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgDevice Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDevice -Filter "startswith(displayName, 'a')" -CountVariable CountVar -Top 1 -Sort "displayName" -ConsistencyLevel eventual +``` +This example shows how to use the Get-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceMemberOf.md index 093355d11d5..d83557ee5cb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceMemberOf -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredOwner.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredOwner.md index 093355d11d5..a1180f205f5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredOwner.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredOwner.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceRegisteredOwner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceRegisteredOwner -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceRegisteredOwner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredUser.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredUser.md index 093355d11d5..c99c9ce8aac 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredUser.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceRegisteredUser.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceRegisteredUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceRegisteredUser -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceRegisteredUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceTransitiveMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceTransitiveMemberOf.md index 093355d11d5..4edc82d6207 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceTransitiveMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceTransitiveMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceTransitiveMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceTransitiveMemberOf -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceUsageRights.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceUsageRights.md index 093355d11d5..9c5917f37a3 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceUsageRights.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDeviceUsageRights.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDeviceUsageRights Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceUsageRights -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDeviceUsageRights Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDeviceUsageRights Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDeviceUsageRights -DeviceId $deviceId -Filter "state in ('active', 'suspended') and serviceIdentifier in ('ABCD')" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDeviceUsageRights Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryAttributeSet.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryAttributeSet.md index 093355d11d5..63555c43b81 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryAttributeSet.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryAttributeSet.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryAttributeSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAttributeSet -AttributeSetId $attributeSetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectoryAttributeSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryAttributeSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAttributeSet ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryAttributeSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDirectoryAttributeSet Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAttributeSet -Sort "id" +``` +This example shows how to use the Get-MgDirectoryAttributeSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgDirectoryAttributeSet Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryAttributeSet -Top 10 +``` +This example shows how to use the Get-MgDirectoryAttributeSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinition.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinition.md index 093355d11d5..5ba504799aa 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinition.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinition.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryCustomSecurityAttributeDefinition -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryCustomSecurityAttributeDefinition -Filter "attributeSet eq 'Engineering' and status eq 'Available' and type eq 'String'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryCustomSecurityAttributeDefinition -Filter "name eq 'Project' and status eq 'Available'" +``` +This example shows how to use the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryCustomSecurityAttributeDefinition +``` +This example shows how to use the Get-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md index 093355d11d5..0637d81529a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId -AllowedValueId $allowedValueId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryFederationConfiguration.md index 093355d11d5..81a1bf6821d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryFederationConfiguration.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryFederationConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId -Filter "domains/any(x: x/id eq 'contoso.com')" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryFederationConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleDelta.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleDelta.md index 093355d11d5..66ae1efd076 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleDelta.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryRoleDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryRoleDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleScopedMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleScopedMember.md index 093355d11d5..989d203cba8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleScopedMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleScopedMember.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryRoleScopedMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleScopedMember -DirectoryRoleId $directoryRoleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectoryRoleScopedMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryRoleScopedMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleScopedMember -DirectoryRoleId $directoryRoleId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryRoleScopedMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleTemplate.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleTemplate.md index 093355d11d5..e8e27e057f0 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleTemplate.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectoryRoleTemplate.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectoryRoleTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleTemplate -DirectoryRoleTemplateId $directoryRoleTemplateId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectoryRoleTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectoryRoleTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectoryRoleTemplate ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectoryRoleTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySetting.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySetting.md index 093355d11d5..e5528dfb8eb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySetting.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySetting.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectorySetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectorySetting -DirectorySettingId $directorySettingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectorySetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectorySetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectorySetting ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectorySetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySettingTemplate.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySettingTemplate.md index 093355d11d5..51026aaade1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySettingTemplate.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDirectorySettingTemplate.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDirectorySettingTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectorySettingTemplate -DirectorySettingTemplateId $directorySettingTemplateId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgDirectorySettingTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgDirectorySettingTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDirectorySettingTemplate ``` - -{{ Add description here }} - +This example shows how to use the Get-MgDirectorySettingTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainNameReference.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainNameReference.md index 093355d11d5..64754851c9d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainNameReference.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainNameReference.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDomainNameReference Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDomainNameReference -DomainId $domainId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDomainNameReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainServiceConfigurationRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainServiceConfigurationRecord.md index 093355d11d5..09290208592 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainServiceConfigurationRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainServiceConfigurationRecord.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDomainServiceConfigurationRecord Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDomainServiceConfigurationRecord -DomainId $domainId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDomainServiceConfigurationRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainVerificationDnsRecord.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainVerificationDnsRecord.md index 093355d11d5..8508acb879e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainVerificationDnsRecord.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgDomainVerificationDnsRecord.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDomainVerificationDnsRecord Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgDomainVerificationDnsRecord -DomainId $domainId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDomainVerificationDnsRecord Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganization.md index 093355d11d5..bf1a20a58cb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganization.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganization -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganization ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBranding.md index 093355d11d5..9d542a4611e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBranding.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationBranding Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBranding -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationBranding Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBranding -OrganizationId $organizationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgOrganizationBranding Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBranding -OrganizationId $organizationId +``` +This example shows how to use the Get-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalization.md index 093355d11d5..0572ed0fe94 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalization.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationBrandingLocalization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationBrandingLocalization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalization -OrganizationId $organizationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalizationBannerLogo.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalizationBannerLogo.md index 093355d11d5..706ee8c5ba5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalizationBannerLogo.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationBrandingLocalizationBannerLogo.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationBrandingLocalizationBannerLogo -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId +``` +This example shows how to use the Get-MgOrganizationBrandingLocalizationBannerLogo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSetting.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSetting.md index 093355d11d5..228fbc68470 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSetting.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationSetting -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingItemInsight.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingItemInsight.md index 093355d11d5..a55c09e4adc 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingItemInsight.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingItemInsight.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationSettingItemInsight Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationSettingItemInsight -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationSettingItemInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingMicrosoftApplicationDataAccess.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingMicrosoftApplicationDataAccess.md index 093355d11d5..457f9914898 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingMicrosoftApplicationDataAccess.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingMicrosoftApplicationDataAccess.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationSettingMicrosoftApplicationDataAccess Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationSettingMicrosoftApplicationDataAccess -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationSettingMicrosoftApplicationDataAccess Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingPersonInsight.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingPersonInsight.md index 093355d11d5..ef47aa66074 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingPersonInsight.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingPersonInsight.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationSettingPersonInsight Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationSettingPersonInsight -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationSettingPersonInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingProfileCardProperty.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingProfileCardProperty.md index 093355d11d5..a8607aced49 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingProfileCardProperty.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgOrganizationSettingProfileCardProperty.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationSettingProfileCardProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationSettingProfileCardProperty -OrganizationId $organizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOrganizationSettingProfileCardProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationSettingProfileCardProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Get-MgOrganizationSettingProfileCardProperty -OrganizationId $organizationId -ProfileCardPropertyId $profileCardPropertyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationSettingProfileCardProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgUserScopedRoleMemberOf.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgUserScopedRoleMemberOf.md index 093355d11d5..04d933e5e97 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgUserScopedRoleMemberOf.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Get-MgUserScopedRoleMemberOf.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserScopedRoleMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +# A UPN can also be used as -UserId. +Get-MgUserScopedRoleMemberOf -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserScopedRoleMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Initialize-MgOrganizationService.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Initialize-MgOrganizationService.md index 093355d11d5..d161421fb6b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Initialize-MgOrganizationService.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Initialize-MgOrganizationService.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Initialize-MgOrganizationService Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + SkuId = "6fd2c87f-b296-42f0-b197-1e91e994b900" + ServicePlanId = "a23b959c-7ce8-4e57-9140-b90eb88a9e97" +} +Initialize-MgOrganizationService -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Initialize-MgOrganizationService Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgForceDomainDelete.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgForceDomainDelete.md index 093355d11d5..aca2d80b927 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgForceDomainDelete.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgForceDomainDelete.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgForceDomainDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisableUserAccounts = $true +} +Invoke-MgForceDomainDelete -DomainId $domainId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgForceDomainDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgPromoteDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgPromoteDomain.md index 093355d11d5..9cdc42f5d79 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgPromoteDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Invoke-MgPromoteDomain.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgPromoteDomain Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Invoke-MgPromoteDomain -DomainId $domainId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgPromoteDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnit.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnit.md index eda3b22fb18..98af2c7b0a1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnit.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnit.md @@ -1,12 +1,14 @@ -### Example 1: {{ Add title here }} - +### Example 1: Using the New-MgAdministrativeUnit Cmdlet ```powershell -New-MgDirectoryAdministrativeUnit -DisplayName 'Test Unit' - -DeletedDateTime Id Description DisplayName Visibility ---------------- -- ----------- ----------- ---------- - 416f19a5-2e01-4d15-a78c-d9028fee1ebb Test Unit - +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisplayName = "Seattle District Technical Schools" + Description = "Seattle district technical schools administration" + MembershipType = "Dynamic" + MembershipRule = "(user.country -eq "United States")" + MembershipRuleProcessingState = "On" +} +New-MgAdministrativeUnit -BodyParameter $params ``` - -This example creates a new administrative unit. +This example shows how to use the New-MgAdministrativeUnit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitMemberByRef.md index 093355d11d5..e1168025964 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitMemberByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgAdministrativeUnitMemberByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/groups/{id}" +} +New-MgAdministrativeUnitMemberByRef -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgAdministrativeUnitMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitScopedRoleMember.md index 093355d11d5..fc2314b58f2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgAdministrativeUnitScopedRoleMember.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgAdministrativeUnitScopedRoleMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + RoleId = "roleId-value" + RoleMemberInfo = @{ + Id = "id-value" + } +} +New-MgAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDevice.md index 093355d11d5..60fef51b1c8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDevice.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AccountEnabled = $true + AlternativeSecurityIds = @( + @{ + Type = 99 + IdentityProvider = "identityProvider-value" + Key = [System.Text.Encoding]::ASCII.GetBytes("base64Y3YxN2E1MWFlYw==") + } + ) + ApproximateLastSignInDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + DeviceId = "deviceId-value" + DeviceMetadata = "deviceMetadata-value" + DeviceVersion = 99 +} +New-MgDevice -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredOwnerByRef.md index 093355d11d5..3c3c8c755b1 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredOwnerByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDeviceRegisteredOwnerByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/directoryObjects/{id}" +} +New-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDeviceRegisteredOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredUserByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredUserByRef.md new file mode 100644 index 00000000000..f52f9a29ffc --- /dev/null +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDeviceRegisteredUserByRef.md @@ -0,0 +1,10 @@ +### Example 1: Using the New-MgDeviceRegisteredUserByRef Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/directoryObjects/{id}" +} +New-MgDeviceRegisteredUserByRef -DeviceId $deviceId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceRegisteredUserByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryAttributeSet.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryAttributeSet.md index 093355d11d5..621a62fbec5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryAttributeSet.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryAttributeSet.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDirectoryAttributeSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Id = "Engineering" + Description = "Attributes for engineering team" + MaxAttributesPerSet = 25 +} +New-MgDirectoryAttributeSet -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDirectoryAttributeSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinition.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinition.md index 093355d11d5..a9952b218ea 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinition.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinition.md @@ -1,18 +1,65 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDirectoryCustomSecurityAttributeDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AttributeSet = "Engineering" + Description = "Active projects for user" + IsCollection = $true + IsSearchable = $true + Name = "Project" + Status = "Available" + Type = "String" + UsePreDefinedValuesOnly = $true + AllowedValues = @( + @{ + Id = "Alpine" + IsActive = $true + } + @{ + Id = "Baker" + IsActive = $true + } + @{ + Id = "Cascade" + IsActive = $true + } + ) +} +New-MgDirectoryCustomSecurityAttributeDefinition -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgDirectoryCustomSecurityAttributeDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AttributeSet = "Engineering" + Description = "Target completion date" + IsCollection = $false + IsSearchable = $true + Name = "ProjectDate" + Status = "Available" + Type = "String" + UsePreDefinedValuesOnly = $false +} +New-MgDirectoryCustomSecurityAttributeDefinition -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgDirectoryCustomSecurityAttributeDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AttributeSet = "Engineering" + Description = "Active projects for user" + IsCollection = $true + IsSearchable = $true + Name = "Project" + Status = "Available" + Type = "String" + UsePreDefinedValuesOnly = $true +} +New-MgDirectoryCustomSecurityAttributeDefinition -BodyParameter $params +``` +This example shows how to use the New-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md index 093355d11d5..5a21f4383c4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Id = "Alpine" + IsActive = "true" +} +New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryFederationConfiguration.md index 093355d11d5..96f4e935ab4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryFederationConfiguration.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDirectoryFederationConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "@odata.type" = "microsoft.graph.samlOrWsFedExternalDomainFederation" + IssuerUri = "https://contoso.com/issuerUri" + DisplayName = "contoso display name" + MetadataExchangeUri = "https://contoso.com/metadataExchangeUri" + PassiveSignInUri = "https://contoso.com/signin" + PreferredAuthenticationProtocol = "wsFed" + Domains = @( + @{ + "@odata.type" = "microsoft.graph.externalDomainName" + Id = "contoso.com" + } + ) + SigningCertificate = "MIIDADCCAeigAwIBAgIQEX41y8r6" +} +New-MgDirectoryFederationConfiguration -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryRole.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryRole.md index 093355d11d5..14ef0502506 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryRole.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectoryRole.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDirectoryRole Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + RoleTemplateId = "fe930be7-5e62-47db-91af-98c3a49a38b1" +} +New-MgDirectoryRole -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDirectoryRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectorySetting.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectorySetting.md index 093355d11d5..4cd442b7c0d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectorySetting.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDirectorySetting.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDirectorySetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + TemplateId = "62375ab9-6b52-47ed-826b-58e47e0e304b" + Values = @( + @{ + Name = "GuestUsageGuidelinesUrl" + Value = "https://privacy.contoso.com/privacystatement" + } + @{ + Name = "EnableMSStandardBlockedWords" + Value = "true" + } + @{ + Name = "EnableMIPLabels" + Value = "true" + } + @{ + Name = "PrefixSuffixNamingRequirement" + Value = "[Contoso-][GroupName]" + } + ) +} +New-MgDirectorySetting -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDirectorySetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDomain.md index 093355d11d5..f88d172ca2d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgDomain.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgDomain Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Id = "contoso.com" +} +New-MgDomain -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationBrandingLocalization.md index 093355d11d5..c80e7735f90 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationBrandingLocalization.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOrganizationBrandingLocalization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + BackgroundColor = "#00000F" + Id = "fr-FR" + SignInPageText = " " +} +New-MgOrganizationBrandingLocalization -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationSettingProfileCardProperty.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationSettingProfileCardProperty.md index 093355d11d5..027ebf482cb 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationSettingProfileCardProperty.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/New-MgOrganizationSettingProfileCardProperty.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOrganizationSettingProfileCardProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DirectoryPropertyName = "CustomAttribute1" + Annotations = @( + @{ + DisplayName = "Cost Center" + Localizations = @( + @{ + LanguageTag = "ru-RU" + DisplayName = "центр затрат" + } + ) + } + ) +} +New-MgOrganizationSettingProfileCardProperty -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgOrganizationSettingProfileCardProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgAdministrativeUnitScopedRoleMember.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgAdministrativeUnitScopedRoleMember.md index 093355d11d5..7a3d081b43d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgAdministrativeUnitScopedRoleMember.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgAdministrativeUnitScopedRoleMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgAdministrativeUnitScopedRoleMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgAdministrativeUnitScopedRoleMember -AdministrativeUnitId $administrativeUnitId -ScopedRoleMembershipId $scopedRoleMembershipId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgAdministrativeUnitScopedRoleMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDevice.md index 093355d11d5..f95ac3817a5 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDevice.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDevice -DeviceId $deviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDeviceRegisteredOwnerByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDeviceRegisteredOwnerByRef.md index 093355d11d5..e39709f5bd4 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDeviceRegisteredOwnerByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDeviceRegisteredOwnerByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDeviceRegisteredOwnerByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDeviceRegisteredOwnerByRef -DeviceId $deviceId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDeviceRegisteredOwnerByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryDeletedItem.md index 093355d11d5..f78331b425b 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryDeletedItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDirectoryDeletedItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDirectoryDeletedItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryFederationConfiguration.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryFederationConfiguration.md index 093355d11d5..c0f0946b4b6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryFederationConfiguration.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryFederationConfiguration.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDirectoryFederationConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryFederationConfiguration -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDirectoryFederationConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryRoleMemberByRef.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryRoleMemberByRef.md index 093355d11d5..31685a3cad6 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryRoleMemberByRef.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectoryRoleMemberByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDirectoryRoleMemberByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectoryRoleMemberByRef -DirectoryRoleId $directoryRoleId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDirectoryRoleMemberByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectorySetting.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectorySetting.md index 093355d11d5..7c0bd28cf65 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectorySetting.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDirectorySetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDirectorySetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDirectorySetting -DirectorySettingId $directorySettingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDirectorySetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDomain.md index 093355d11d5..9a3adcac02e 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgDomain.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgDomain Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgDomain -DomainId $domainId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationBrandingLocalization.md index 093355d11d5..65e78f222c8 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationBrandingLocalization.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgOrganizationBrandingLocalization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationSettingProfileCardProperty.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationSettingProfileCardProperty.md index 093355d11d5..1f806a3c95f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationSettingProfileCardProperty.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Remove-MgOrganizationSettingProfileCardProperty.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgOrganizationSettingProfileCardProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Remove-MgOrganizationSettingProfileCardProperty -OrganizationId $organizationId -ProfileCardPropertyId $profileCardPropertyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgOrganizationSettingProfileCardProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Restore-MgDirectoryDeletedItem.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Restore-MgDirectoryDeletedItem.md index 093355d11d5..1633d1d41f2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Restore-MgDirectoryDeletedItem.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Restore-MgDirectoryDeletedItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restore-MgDirectoryDeletedItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +Restore-MgDirectoryDeletedItem -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restore-MgDirectoryDeletedItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDevice.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDevice.md index 093355d11d5..b3cb724c543 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDevice.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDevice.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + ExtensionAttributes = @{ + ExtensionAttribute1 = "BYOD-Device" + } +} +Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + AccountEnabled = $false +} +Update-MgDevice -DeviceId $deviceId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryAttributeSet.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryAttributeSet.md index 093355d11d5..8aaeb3724f2 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryAttributeSet.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryAttributeSet.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDirectoryAttributeSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Description = "Attributes for engineering team" + MaxAttributesPerSet = 20 +} +Update-MgDirectoryAttributeSet -AttributeSetId $attributeSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDirectoryAttributeSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinition.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinition.md index 093355d11d5..1820708061c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinition.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinition.md @@ -1,18 +1,31 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDirectoryCustomSecurityAttributeDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + "AllowedValues@delta" = @( + ) +} +Update-MgDirectoryCustomSecurityAttributeDefinition -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgDirectoryCustomSecurityAttributeDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Status = "Deprecated" +} +Update-MgDirectoryCustomSecurityAttributeDefinition -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgDirectoryCustomSecurityAttributeDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Description = "Target completion date (YYYY/MM/DD)" +} +Update-MgDirectoryCustomSecurityAttributeDefinition -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId -BodyParameter $params +``` +This example shows how to use the Update-MgDirectoryCustomSecurityAttributeDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md index 093355d11d5..ab749b9a270 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + IsActive = "false" +} +Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue -CustomSecurityAttributeDefinitionId $customSecurityAttributeDefinitionId -AllowedValueId $allowedValueId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectorySetting.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectorySetting.md index 093355d11d5..2da4763522d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectorySetting.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDirectorySetting.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDirectorySetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Values = @( + @{ + Name = "CustomBlockedWordsList" + Value = "Contoso" + } + ) +} +Update-MgDirectorySetting -DirectorySettingId $directorySettingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDirectorySetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDomain.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDomain.md index 093355d11d5..1ff91394b8f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDomain.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgDomain.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgDomain Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + IsDefault = $true + SupportedServices = @( + "Email" + "OfficeCommunicationsOnline" + ) +} +Update-MgDomain -DomainId $domainId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgDomain Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganization.md index 093355d11d5..5e266c3d37d 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganization.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + MarketingNotificationEmails = @( + "marketing@contoso.com" + ) + PrivacyProfile = @{ + ContactEmail = "alice@contoso.com" + StatementUrl = "https://contoso.com/privacyStatement" + } + SecurityComplianceNotificationMails = @( + "security@contoso.com" + ) + SecurityComplianceNotificationPhones = @( + "(123) 456-7890" + ) + TechnicalNotificationMails = @( + "tech@contoso.com" + ) +} +Update-MgOrganization -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBranding.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBranding.md index 093355d11d5..a52a4669fef 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBranding.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBranding.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganizationBranding Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + SignInPageText = "Default" + UsernameHintText = "DefaultHint" +} +Update-MgOrganizationBranding -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganizationBranding Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBrandingLocalization.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBrandingLocalization.md index 093355d11d5..9e02549df28 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBrandingLocalization.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationBrandingLocalization.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganizationBrandingLocalization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + BackgroundColor = "#00000F" + SignInPageText = "Welcome to Contoso France" +} +Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgOrganizationBrandingLocalization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + SignInPageText = "Welcome to Contoso France." + UsernameHintText = " " +} +Update-MgOrganizationBrandingLocalization -OrganizationId $organizationId -OrganizationalBrandingLocalizationId $organizationalBrandingLocalizationId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganizationBrandingLocalization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingItemInsight.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingItemInsight.md index 093355d11d5..37440f65f18 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingItemInsight.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingItemInsight.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganizationSettingItemInsight Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisabledForGroup = "edbfe4fb-ec70-4300-928f-dbb2ae86c981" +} +Update-MgOrganizationSettingItemInsight -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganizationSettingItemInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingMicrosoftApplicationDataAccess.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingMicrosoftApplicationDataAccess.md index 093355d11d5..3a056951c0c 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingMicrosoftApplicationDataAccess.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingMicrosoftApplicationDataAccess.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganizationSettingMicrosoftApplicationDataAccess Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + DisabledForGroup = "edbfe4fb-ec70-4300-928f-dbb2ae86c981" +} +Update-MgOrganizationSettingMicrosoftApplicationDataAccess -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganizationSettingMicrosoftApplicationDataAccess Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingPersonInsight.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingPersonInsight.md index 093355d11d5..eda7777f74f 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingPersonInsight.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingPersonInsight.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganizationSettingPersonInsight Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + IsEnabledInOrganization = $true + DisabledForGroup = "edbfe4fb-ec70-4300-928f-dbb2ae86c981" +} +Update-MgOrganizationSettingPersonInsight -OrganizationId $organizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganizationSettingPersonInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingProfileCardProperty.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingProfileCardProperty.md index 093355d11d5..91c4d4d6d1a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingProfileCardProperty.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement/examples/v1.0-beta/Update-MgOrganizationSettingProfileCardProperty.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOrganizationSettingProfileCardProperty Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.DirectoryManagement +$params = @{ + Annotations = @( + @{ + Localizations = @( + @{ + LanguageTag = "no-NB" + DisplayName = "Kostnads Senter" + } + ) + } + ) +} +Update-MgOrganizationSettingProfileCardProperty -OrganizationId $organizationId -ProfileCardPropertyId $profileCardPropertyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOrganizationSettingProfileCardProperty Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgAccessReviewDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgAccessReviewDecision.md index 093355d11d5..b1e2bb1c9bc 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgAccessReviewDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgAccessReviewDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgAccessReviewDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Add-MgAccessReviewDecision -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgAccessReviewDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 093355d11d5..b47c8495eb0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReview.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReview.md index 093355d11d5..a948c2691cb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReview.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReview.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAccessReview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgAccessReview -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAccessReview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAccessReview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgAccessReview -Filter "businessFlowTemplateId eq '6e4f3d20-c5c3-407f-9695-8460952bcc68'" -Top 100 -Skip 0 ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAccessReview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewDecision.md index 093355d11d5..bd0a1b057bb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAccessReviewDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgAccessReviewDecision -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgAccessReviewDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewMyDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewMyDecision.md index 093355d11d5..98f9e6a332f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewMyDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewMyDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAccessReviewMyDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgAccessReviewMyDecision -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgAccessReviewMyDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewReviewer.md index 093355d11d5..a95aa2b5b17 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgAccessReviewReviewer.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAccessReviewReviewer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgAccessReviewReviewer -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgAccessReviewReviewer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgBusinessFlowTemplate.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgBusinessFlowTemplate.md index 093355d11d5..79d964e6eb5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgBusinessFlowTemplate.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgBusinessFlowTemplate.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgBusinessFlowTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgBusinessFlowTemplate ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgBusinessFlowTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md index 093355d11d5..68e1cff8a15 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement -AccessPackageId $accessPackageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignment.md index 093355d11d5..997af8021b0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignment.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignment -AccessPackageAssignmentId $accessPackageAssignmentId -ExpandProperty "target" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAccessPackageAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignment -AccessPackageAssignmentId $accessPackageAssignmentId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgEntitlementManagementAccessPackageAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignment +``` +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignmentResourceRole.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignmentResourceRole.md index 093355d11d5..d4165ecc64b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignmentResourceRole.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageAssignmentResourceRole.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignmentResourceRole -AccessPackageAssignmentResourceRoleId $accessPackageAssignmentResourceRoleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageAssignmentResourceRole ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md index 093355d11d5..3a0427071a3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension -AccessPackageCatalogId $accessPackageCatalogId -CustomAccessPackageWorkflowExtensionId $customAccessPackageWorkflowExtensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension -AccessPackageCatalogId $accessPackageCatalogId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage.md index 093355d11d5..c2632b9c6e5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage -AccessPackageId $accessPackageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleGroup.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleGroup.md index 093355d11d5..dff760304cd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleGroup.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageIncompatibleGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageIncompatibleGroup -AccessPackageId $accessPackageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageIncompatibleGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleWith.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleWith.md index 093355d11d5..198818237dc 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleWith.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageIncompatibleWith.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageIncompatibleWith Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageIncompatibleWith -AccessPackageId $accessPackageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageIncompatibleWith Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageResourceEnvironment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageResourceEnvironment.md index 093355d11d5..13b3670a9d5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageResourceEnvironment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementAccessPackageResourceEnvironment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementAccessPackageResourceEnvironment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageResourceEnvironment -AccessPackageResourceEnvironmentId $accessPackageResourceEnvironmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEntitlementManagementAccessPackageResourceEnvironment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementAccessPackageResourceEnvironment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementAccessPackageResourceEnvironment -Filter "originSystem eq 'SharePointOnline'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementAccessPackageResourceEnvironment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..10e9971e12e 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementConnectedOrganization ``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationExternalSponsor.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationExternalSponsor.md index 093355d11d5..a4965960552 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationExternalSponsor.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationExternalSponsor.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementConnectedOrganizationExternalSponsor Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementConnectedOrganizationExternalSponsor -ConnectedOrganizationId $connectedOrganizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementConnectedOrganizationExternalSponsor Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationInternalSponsor.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationInternalSponsor.md index 093355d11d5..095429b17bf 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationInternalSponsor.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgEntitlementManagementConnectedOrganizationInternalSponsor.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgEntitlementManagementConnectedOrganizationInternalSponsor Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgEntitlementManagementConnectedOrganizationInternalSponsor -ConnectedOrganizationId $connectedOrganizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgEntitlementManagementConnectedOrganizationInternalSponsor Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDecision.md index 093355d11d5..53c1bddceda 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDecision -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -ExpandProperty "instance(`$expand=definition)" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinition.md index 093355d11d5..c1c3a5bc264 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -Filter "contains(scope/microsoft.graph.accessReviewQueryScope/query, './members')" +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinition -Top 100 -Skip 0 +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 093355d11d5..2ba3a32509c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -Top 100 -Skip 0 +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md index 093355d11d5..a338bf14029 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 093355d11d5..35a1b518df5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -ExpandProperty "insights" +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -Top 100 -Skip 0 +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 093355d11d5..4764bacf290 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 093355d11d5..b1567ab4c77 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId +``` +This example shows how to use the Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 093355d11d5..b34e64f97fe 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewHistoryDefinition -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewHistoryDefinition ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md index 093355d11d5..b87b960b7a0 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewPolicy.md index 093355d11d5..308594942bb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAccessReviewPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAccessReviewPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAccessReviewPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAccessReviewPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequest.md index 093355d11d5..9d0900dc77f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequest.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId -Filter "userConsentRequests/any(u:u/status eq 'InProgress')" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest -AppConsentRequestId $appConsentRequestId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest +``` +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceAppConsentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequest -Filter "userConsentRequests/any (u:u/status eq 'InProgress')" +``` +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md index 093355d11d5..c8b8d1b5286 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest -AppConsentRequestId $appConsentRequestId -UserConsentRequestId $userConsentRequestId -Filter " (status eq 'Completed')" +``` +This example shows how to use the Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..1fcf9544f45 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement +``` +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -ExpandProperty "files" +``` +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreementFile.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreementFile.md index 093355d11d5..fe6826865fb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreementFile.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgIdentityGovernanceTermOfUseAgreementFile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityGovernanceTermOfUseAgreementFile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgIdentityGovernanceTermOfUseAgreementFile -AgreementId $agreementId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityGovernanceTermOfUseAgreementFile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessResource.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessResource.md index 093355d11d5..162edb3737a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessResource.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessResource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedAccessResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedAccessResource -PrivilegedAccessId $privilegedAccessId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedAccessResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessRoleSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessRoleSetting.md index 093355d11d5..41dbde7cfb5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessRoleSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedAccessRoleSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedAccessRoleSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedAccessRoleSetting -PrivilegedAccessId $privilegedAccessId -GovernanceRoleSettingId $governanceRoleSettingId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedAccessRoleSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedApproval.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedApproval.md index 093355d11d5..a7196e36467 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedApproval.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedApproval.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedApproval Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedApproval -PrivilegedApprovalId $privilegedApprovalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrivilegedApproval Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrivilegedApproval Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedApproval ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedApproval Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedOperationEvent.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedOperationEvent.md index 093355d11d5..13549c19b37 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedOperationEvent.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedOperationEvent.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedOperationEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedOperationEvent -Filter "requestType eq 'Assign'" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrivilegedOperationEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrivilegedOperationEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedOperationEvent -Filter "requestType eq 'Activate'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedOperationEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPrivilegedOperationEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedOperationEvent -Filter "requestType eq 'Deactivate'" +``` +This example shows how to use the Get-MgPrivilegedOperationEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPrivilegedOperationEvent Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedOperationEvent -Filter "(creationDateTime ge 2017-06-25T07:00:00Z) and (creationDateTime le 2017-07-25T17:30:17Z)" -CountVariable CountVar -Sort "creationDateTime desc" +``` +This example shows how to use the Get-MgPrivilegedOperationEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRole.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRole.md index 093355d11d5..4e6e245ccca 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRole.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRole.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedRole Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRole -PrivilegedRoleId $privilegedRoleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrivilegedRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrivilegedRole Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRole ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedRole Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleAssignmentRequest.md index 093355d11d5..db441faea1d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleAssignmentRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleAssignmentRequest ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleRoleAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleRoleAssignment.md index 093355d11d5..a2bbfbfab8c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleRoleAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleRoleAssignment.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedRoleRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleRoleAssignment -PrivilegedRoleAssignmentId $privilegedRoleAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPrivilegedRoleRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPrivilegedRoleRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleRoleAssignment ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedRoleRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPrivilegedRoleRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleRoleAssignment -Filter "isElevated eq true" +``` +This example shows how to use the Get-MgPrivilegedRoleRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPrivilegedRoleRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleRoleAssignment -Filter "isElevated eq true and expirationDateTime eq null" +``` +This example shows how to use the Get-MgPrivilegedRoleRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgPrivilegedRoleRoleAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleRoleAssignment -Filter "isElevated eq true and expirationDateTime ne null or isElevated eq false" +``` +This example shows how to use the Get-MgPrivilegedRoleRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSetting.md index 093355d11d5..61e8da6d027 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedRoleSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleSetting -PrivilegedRoleId $privilegedRoleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedRoleSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSummary.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSummary.md index 093355d11d5..1fcb1821028 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSummary.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgPrivilegedRoleSummary.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPrivilegedRoleSummary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgPrivilegedRoleSummary -PrivilegedRoleId $privilegedRoleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPrivilegedRoleSummary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgram.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgram.md index 093355d11d5..f202fe903ee 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgram.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgram.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgProgram Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgProgram ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgProgram Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControl.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControl.md index 093355d11d5..3ee08051da5 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControl.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControl.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgProgramControl Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgProgramControl ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgProgramControl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControlType.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControlType.md index 093355d11d5..f98b868fd34 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControlType.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgProgramControlType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgProgramControlType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Get-MgProgramControlType ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgProgramControlType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgUserAgreementAcceptance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgUserAgreementAcceptance.md index 093355d11d5..76614e3db15 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgUserAgreementAcceptance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Get-MgUserAgreementAcceptance.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAgreementAcceptance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +# A UPN can also be used as -UserId. +Get-MgUserAgreementAcceptance -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAgreementAcceptance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedApprovalRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedApprovalRequest.md index 093355d11d5..edc47dd6198 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedApprovalRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedApprovalRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMyPrivilegedApprovalRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Invoke-MgMyPrivilegedApprovalRequest ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMyPrivilegedApprovalRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignment.md index 093355d11d5..a621e627688 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMyPrivilegedRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Invoke-MgMyPrivilegedRoleAssignment ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMyPrivilegedRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignmentRequest.md index 093355d11d5..5bad627c0b4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgMyPrivilegedRoleAssignmentRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMyPrivilegedRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Invoke-MgMyPrivilegedRoleAssignmentRequest ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMyPrivilegedRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleActivate.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleActivate.md index 093355d11d5..524bad66c94 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleActivate.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleActivate.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSelfPrivilegedRoleActivate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Reason = "reason-value" + Duration = "duration-value" + TicketNumber = "ticketNumber-value" + TicketSystem = "ticketSystem-value" +} +Invoke-MgSelfPrivilegedRoleActivate -PrivilegedRoleId $privilegedRoleId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSelfPrivilegedRoleActivate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleDeactivate.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleDeactivate.md index 093355d11d5..336a6a68319 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleDeactivate.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Invoke-MgSelfPrivilegedRoleDeactivate.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSelfPrivilegedRoleDeactivate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Invoke-MgSelfPrivilegedRoleDeactivate -PrivilegedRoleId $privilegedRoleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSelfPrivilegedRoleDeactivate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReview.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReview.md index 093355d11d5..bf5f2c822fa 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReview.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReview.md @@ -1,18 +1,44 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgAccessReview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "TestReview" + StartDateTime = [System.DateTime]::Parse("2017-02-10T00:35:53.214Z") + EndDateTime = [System.DateTime]::Parse("2017-03-12T00:35:53.214Z") + ReviewedEntity = @{ + Id = "99025615-a0b1-47ec-9117-35377b10998b" + } + ReviewerType = "delegated" + BusinessFlowTemplateId = "6e4f3d20-c5c3-407f-9695-8460952bcc68" + Description = "Sample description" + Reviewers = @( + @{ + Id = "f260246a-09b1-4fd5-8d18-daed736071ec" + } + @{ + Id = "5a4e184c-4ee5-4883-96e9-b371f8da88e3" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + RemindersEnabled = $true + JustificationRequiredOnApproval = $true + AutoReviewEnabled = $false + ActivityDurationInDays = 30 + AutoApplyReviewResultsEnabled = $false + AccessRecommendationsEnabled = $false + RecurrenceSettings = @{ + RecurrenceType = "onetime" + RecurrenceEndType = "endBy" + DurationInDays = 0 + RecurrenceCount = 0 + } + AutoReviewSettings = @{ + NotReviewedResult = "Deny" + } + } +} +New-MgAccessReview -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgAccessReview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReviewReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReviewReviewer.md index 093355d11d5..780128854b2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReviewReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgAccessReviewReviewer.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgAccessReviewReviewer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Id = "006111db-0810-4494-a6df-904d368bd81b" +} +New-MgAccessReviewReviewer -AccessReviewId $accessReviewId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgAccessReviewReviewer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalog.md index 093355d11d5..1c669f66935 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalog.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEntitlementManagementAccessPackageCatalog Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "sales" + Description = "for employees working with sales and outside sales partners" + IsExternallyVisible = $true +} +New-MgEntitlementManagementAccessPackageCatalog -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEntitlementManagementAccessPackageCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md index 093355d11d5..451b8d244d1 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "test_action_0124" + Description = "this is for graph testing only" + EndpointConfiguration = @{ + "@odata.type" = "#microsoft.graph.logicAppTriggerEndpointConfiguration" + SubscriptionId = "38ab2ccc-3747-4567-b36b-9478f5602f0d" + ResourceGroupName = "EMLogicApp" + LogicAppWorkflowName = "customextension_test" + } + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.azureAdTokenAuthentication" + ResourceId = "f604bd15-f785-4309-ad7c-6fad18ddb6cb" + } +} +New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension -AccessPackageCatalogId $accessPackageCatalogId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md index 093355d11d5..182b7208591 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackages/c0a74b4d-2694-4d5d-a964-1bee4ff0aaf2" +} +New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef -AccessPackageId $accessPackageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..6615b36b19b 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Connected organization name" + Description = "Connected organization description" + IdentitySources = @( + @{ + "@odata.type" = "#microsoft.graph.domainIdentitySource" + DomainName = "example.com" + DisplayName = "example.com" + } + ) + State = "proposed" +} +New-MgEntitlementManagementConnectedOrganization -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index 093355d11d5..bab456d54bb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/users/{id}" +} +New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 093355d11d5..60966ab8b51 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/users/{id}" +} +New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewDefinition.md index 093355d11d5..272f53c4818 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,18 +1,282 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Review employee access to LinkedIn" + DescriptionForAdmins = "Review employee access to LinkedIn" + Scope = @{ + "@odata.type" = "#microsoft.graph.principalResourceMembershipsScope" + PrincipalScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/users" + QueryType = "MicrosoftGraph" + } + ) + ResourceScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/servicePrincipals/bae11f90-7d5d-46ba-9f55-8112b59d92ae" + QueryType = "MicrosoftGraph" + } + ) + } + Reviewers = @( + @{ + Query = "./manager" + QueryType = "MicrosoftGraph" + QueryRoot = "decisions" + } + ) + BackupReviewers = @( + @{ + Query = "/groups/072ac5f4-3f13-4088-ab30-0a276f3e6322/transitiveMembers" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/groups/072ac5f4-3f13-4088-ab30-0a276f3e6322/transitiveMembers" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + DefaultDecisionEnabled = $true + DefaultDecision = "Recommendation" + InstanceDurationInDays = 180 + AutoApplyDecisionsEnabled = $true + RecommendationsEnabled = $true + Recurrence = @{ + Pattern = @{ + Type = "absoluteMonthly" + Interval = 6 + DayOfMonth = 0 + } + Range = @{ + Type = "numbered" + StartDate = "2021-05-05" + EndDate = "2022-05-05" + } + } + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Group Multi-stage Access Review" + DescriptionForAdmins = "New scheduled access review" + DescriptionForReviewers = "If you have any questions, contact jerry@contoso.com" + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups/02f3bafb-448c-487c-88c2-5fd65ce49a41/transitiveMembers" + QueryType = "MicrosoftGraph" + } + StageSettings = @( + @{ + StageId = "1" + DurationInDays = 2 + RecommendationsEnabled = $false + DecisionsThatWillMoveToNextStage = @( + "NotReviewed" + "Approve" + ) + Reviewers = @( + @{ + Query = "/users/398164b1-5196-49dd-ada2-364b49f99b27" + QueryType = "MicrosoftGraph" + } + ) + } + @{ + StageId = "2" + DependsOn = @( + "1" + ) + DurationInDays = 2 + RecommendationsEnabled = $true + Reviewers = @( + @{ + Query = "./manager" + QueryType = "MicrosoftGraph" + QueryRoot = "decisions" + } + ) + FallbackReviewers = @( + @{ + Query = "/groups/072ac5f4-3f13-4088-ab30-0a276f3e6322/transitiveMembers" + QueryType = "MicrosoftGraph" + } + ) + } + ) + Settings = @{ + InstanceDurationInDays = 4 + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-09-08T12:02:30.667Z" + } + } + DecisionHistoriesForReviewersEnabled = $true + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Review inactive guests on teams" + DescriptionForAdmins = "Control guest user access to our teams." + DescriptionForReviewers = "Information security is everyone's responsibility. Review our access policy for more." + InstanceEnumerationScope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups?$filter=(groupTypes/any(c:c+eq+'Unified') and resourceProvisioningOptions/Any(x:x eq 'Team')')" + QueryType = "MicrosoftGraph" + } + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewInactiveUsersQueryScope" + Query = "./members/microsoft.graph.user/?$filter=(userType eq 'Guest')" + QueryType = "MicrosoftGraph" + InactiveDuration = "P30D" + } + Reviewers = @( + @{ + Query = "./owners" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/users/fc9a2c2b-1ddc-486d-a211-5fe8ca77fa1f" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + RecommendationsEnabled = $true + InstanceDurationInDays = 3 + Recurrence = @{ + Pattern = @{ + Type = "absoluteMonthly" + DayOfMonth = 5 + Interval = 3 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-05-04T00:00:00.000Z" + } + } + DefaultDecisionEnabled = $true + DefaultDecision = "Deny" + AutoApplyDecisionsEnabled = $true + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Test create" + DescriptionForAdmins = "New scheduled access review" + DescriptionForReviewers = "If you have any questions, contact jerry@contoso.com" + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups/02f3bafb-448c-487c-88c2-5fd65ce49a41/transitiveMembers" + QueryType = "MicrosoftGraph" + } + Reviewers = @( + @{ + Query = "/users/398164b1-5196-49dd-ada2-364b49f99b27" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + InstanceDurationInDays = 1 + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-09-08T12:02:30.667Z" + } + } + RecommendationInsightSettings = @( + @{ + "@odata.type" = "#microsoft.graph.userLastSignInRecommendationInsightSetting" + RecommendationLookBackDuration = "P30D" + SignInScope = "tenant" + } + @{ + "@odata.type" = "#microsoft.graph.groupPeerOutlierRecommendationInsightSettings" + } + ) + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Test create" + DescriptionForAdmins = "New scheduled access review" + DescriptionForReviewers = "If you have any questions, contact jerry@contoso.com" + Scope = @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/groups/02f3bafb-448c-487c-88c2-5fd65ce49a41/transitiveMembers" + QueryType = "MicrosoftGraph" + } + Reviewers = @( + @{ + Query = "/users/398164b1-5196-49dd-ada2-364b49f99b27" + QueryType = "MicrosoftGraph" + } + ) + Settings = @{ + MailNotificationsEnabled = $true + ReminderNotificationsEnabled = $true + JustificationRequiredOnApproval = $true + DefaultDecisionEnabled = $false + DefaultDecision = "None" + InstanceDurationInDays = 1 + RecommendationsEnabled = $true + Recurrence = @{ + Pattern = @{ + Type = "weekly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2020-09-08T12:02:30.667Z" + } + } + } +} +New-MgIdentityGovernanceAccessReviewDefinition -BodyParameter $params +``` +This example shows how to use the New-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md index 093355d11d5..6b8e7b80cd2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinition.md @@ -1,18 +1,45 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Last quarter's group reviews April 2021" + Decisions = @( + "approve" + "deny" + "dontKnow" + "notReviewed" + "notNotified" + ) + ScheduleSettings = @{ + ReportRange = "P1M" + Recurrence = @{ + Pattern = @{ + Type = "monthly" + Interval = 1 + } + Range = @{ + Type = "noEnd" + StartDate = "2018-08-03T21:02:30.667Z" + Count = + } + } + } + Scopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + QueryType = "MicrosoftGraph" + Query = "/identityGovernance/accessReviews/definitions?$filter=contains(scope/query, 'accessPackageAssignments')" + QueryRoot = $null + } + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + QueryType = "MicrosoftGraph" + Query = "/identityGovernance/accessReviews/definitions?$filter=contains(scope/query, '/groups')" + QueryRoot = $null + } + ) +} +New-MgIdentityGovernanceAccessReviewHistoryDefinition -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityGovernanceAccessReviewHistoryDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md index 093355d11d5..b7d0811595d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri -AccessReviewHistoryDefinitionId $accessReviewHistoryDefinitionId -AccessReviewHistoryInstanceId $accessReviewHistoryInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..65515ad10fb 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Contoso ToU for guest users" + IsViewingBeforeAcceptanceRequired = $true + Files = @( + @{ + FileName = "TOU.pdf" + Language = "en" + IsDefault = $true + FileData = @{ + Data = [System.Text.Encoding]::ASCII.GetBytes("SGVsbG8gd29ybGQ=//truncated-binary") + } + } + ) +} +New-MgIdentityGovernanceTermOfUseAgreement -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedAccessRoleAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedAccessRoleAssignmentRequest.md index 093355d11d5..6c1393ba3af 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedAccessRoleAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedAccessRoleAssignmentRequest.md @@ -1,18 +1,110 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RoleDefinitionId = "ea48ad5e-e3b0-4d10-af54-39a45bbfe68d" + ResourceId = "e5e7d29d-5465-45ac-885f-4716a5ee74b5" + SubjectId = "918e54be-12c4-4f4c-a6d3-2ee0e3661c51" + AssignmentState = "Eligible" + Type = "AdminAdd" + Reason = "Assign an eligible role" + Schedule = @{ + StartDateTime = [System.DateTime]::Parse("2018-05-12T23:37:43.356Z") + EndDateTime = [System.DateTime]::Parse("2018-11-08T23:37:43.356Z") + Type = "Once" + } +} +New-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RoleDefinitionId = "8b4d1d51-08e9-4254-b0a6-b16177aae376" + ResourceId = "e5e7d29d-5465-45ac-885f-4716a5ee74b5" + SubjectId = "918e54be-12c4-4f4c-a6d3-2ee0e3661c51" + AssignmentState = "Active" + Type = "UserAdd" + Reason = "Activate the owner role" + Schedule = @{ + Type = "Once" + StartDateTime = [System.DateTime]::Parse("2018-05-12T23:28:43.537Z") + Duration = "PT9H" + } + LinkedEligibleRoleAssignmentId = "e327f4be-42a0-47a2-8579-0a39b025b394" +} +New-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RoleDefinitionId = "bc75b4e6-7403-4243-bf2f-d1f6990be122" + ResourceId = "fb016e3a-c3ed-4d9d-96b6-a54cd4f0b735" + SubjectId = "918e54be-12c4-4f4c-a6d3-2ee0e3661c51" + AssignmentState = "Active" + Type = "UserRemove" + Reason = "Deactivate the role" + LinkedEligibleRoleAssignmentId = "cb8a533e-02d5-42ad-8499-916b1e4822ec" +} +New-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -BodyParameter $params +``` +This example shows how to use the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RoleDefinitionId = "65bb4622-61f5-4f25-9d75-d0e20cf92019" + ResourceId = "e5e7d29d-5465-45ac-885f-4716a5ee74b5" + SubjectId = "74765671-9ca4-40d7-9e36-2f4a570608a6" + AssignmentState = "Eligible" + Type = "AdminRemove" +} +New-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -BodyParameter $params +``` +This example shows how to use the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RoleDefinitionId = "70521f3e-3b95-4e51-b4d2-a2f485b02103" + ResourceId = "e5e7d29d-5465-45ac-885f-4716a5ee74b5" + SubjectId = "1566d11d-d2b6-444a-a8de-28698682c445" + AssignmentState = "Eligible" + Type = "AdminUpdate" + Schedule = @{ + Type = "Once" + StartDateTime = [System.DateTime]::Parse("2018-03-08T05:42:45.317Z") + EndDateTime = [System.DateTime]::Parse("2018-06-05T05:42:31.000Z") + } +} +New-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -BodyParameter $params +``` +This example shows how to use the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + RoleDefinitionId = "0e88fd18-50f5-4ee1-9104-01c3ed910065" + ResourceId = "e5e7d29d-5465-45ac-885f-4716a5ee74b5" + SubjectId = "74765671-9ca4-40d7-9e36-2f4a570608a6" + AssignmentState = "Eligible" + Type = "AdminExtend" + Reason = "extend role assignment" + Schedule = @{ + Type = "Once" + StartDateTime = [System.DateTime]::Parse("2018-05-12T23:53:55.327Z") + EndDateTime = [System.DateTime]::Parse("2018-08-10T23:53:55.327Z") + } +} +New-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -BodyParameter $params +``` +This example shows how to use the New-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedApproval.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedApproval.md index 093355d11d5..f32b1027cc8 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedApproval.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedApproval.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrivilegedApproval Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + UserId = "userId-value" + RoleId = "roleId-value" + ApprovalType = "approvalType-value" + ApprovalState = "approvalState-value" + ApprovalDuration = "datetime-value" +} +New-MgPrivilegedApproval -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrivilegedApproval Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignment.md index 093355d11d5..65cc33fcd62 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignment.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrivilegedRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + UserId = "userId-value" + RoleId = "roleId-value" +} +New-MgPrivilegedRoleAssignment -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrivilegedRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentEligible.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentEligible.md index 093355d11d5..069fe98bcdd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentEligible.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentEligible.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrivilegedRoleAssignmentEligible Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +New-MgPrivilegedRoleAssignmentEligible -PrivilegedRoleAssignmentId $privilegedRoleAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrivilegedRoleAssignmentEligible Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentPermanent.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentPermanent.md index 093355d11d5..40c58ce8b80 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentPermanent.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentPermanent.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrivilegedRoleAssignmentPermanent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Reason = "reason-value" + TicketNumber = "ticketNumber-value" + TicketSystem = "ticketSystem-value" +} +New-MgPrivilegedRoleAssignmentPermanent -PrivilegedRoleAssignmentId $privilegedRoleAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrivilegedRoleAssignmentPermanent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentRequest.md index 093355d11d5..335b5926e78 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgPrivilegedRoleAssignmentRequest.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPrivilegedRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Duration = "2" + Reason = "Activate the role for business purpose" + TicketNumber = "234" + TicketSystem = "system" + Schedule = @{ + StartDateTime = [System.DateTime]::Parse("2018-02-08T02:35:17.903Z") + } + Type = "UserAdd" + AssignmentState = "Active" + RoleId = "88d8e3e3-8f55-4a1e-953a-9b9898b8876b" +} +New-MgPrivilegedRoleAssignmentRequest -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPrivilegedRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgram.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgram.md index 093355d11d5..e453f505577 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgram.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgram.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgProgram Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "testprogram3" + Description = "test description" +} +New-MgProgram -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgProgram Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgramControl.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgramControl.md index 093355d11d5..0b20435b9e2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgramControl.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/New-MgProgramControl.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgProgramControl Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + ControlId = "7e59d237-2fb0-4e5d-b7bb-d4f9f9129213" + ControlTypeId = "6e4f3d20-c5c3-407f-9695-8460952bcc68" + ProgramId = "7e59d237-2fb0-4e5d-b7bb-d4f9f9129213" +} +New-MgProgramControl -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgProgramControl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReview.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReview.md index 093355d11d5..c6cd918b546 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReview.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReview.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgAccessReview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgAccessReview -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgAccessReview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReviewReviewer.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReviewReviewer.md index 093355d11d5..67c42910c3d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReviewReviewer.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgAccessReviewReviewer.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgAccessReviewReviewer Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgAccessReviewReviewer -AccessReviewId $accessReviewId -AccessReviewReviewerId $accessReviewReviewerId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgAccessReviewReviewer Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageAssignmentRequest.md index 093355d11d5..968a4fdf843 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageAssignmentRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementAccessPackageAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAccessPackageAssignmentRequest -AccessPackageAssignmentRequestId $accessPackageAssignmentRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementAccessPackageAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalog.md index 093355d11d5..29b4828124c 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalog.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementAccessPackageCatalog Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAccessPackageCatalog -AccessPackageCatalogId $accessPackageCatalogId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementAccessPackageCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md index 093355d11d5..3fdb909c1e1 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension -AccessPackageCatalogId $accessPackageCatalogId -CustomAccessPackageWorkflowExtensionId $customAccessPackageWorkflowExtensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md index 093355d11d5..904fefe668e 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef -AccessPackageId $accessPackageId -AccessPackageId1 $accessPackageId1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef.md index 093355d11d5..c3936de81d1 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef -AccessPackageId $accessPackageId -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..feca4fdd7af 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md index 093355d11d5..b42d7c7f4d3 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md index 093355d11d5..33e8ec27a51 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef -ConnectedOrganizationId $connectedOrganizationId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceAccessReviewDefinition.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceAccessReviewDefinition.md index 093355d11d5..6cbaec7fc58 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceAccessReviewDefinition.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceAccessReviewDefinition.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityGovernanceAccessReviewDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgIdentityGovernanceAccessReviewDefinition -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityGovernanceAccessReviewDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..144a7eca0b4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgPrivilegedRoleAssignment.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgPrivilegedRoleAssignment.md index 093355d11d5..aed21593c22 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgPrivilegedRoleAssignment.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgPrivilegedRoleAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPrivilegedRoleAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgPrivilegedRoleAssignment -PrivilegedRoleAssignmentId $privilegedRoleAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPrivilegedRoleAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgram.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgram.md index 093355d11d5..8a0f0a8db84 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgram.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgram.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgProgram Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgProgram -ProgramId $programId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgProgram Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgramControl.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgramControl.md index 093355d11d5..d4a68bd5a42 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgramControl.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Remove-MgProgramControl.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgProgramControl Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Remove-MgProgramControl -ProgramControlId $programControlId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgProgramControl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgAccessReviewDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgAccessReviewDecision.md index 093355d11d5..5cd95a838fe 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgAccessReviewDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgAccessReviewDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgAccessReviewDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Reset-MgAccessReviewDecision -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Reset-MgAccessReviewDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md index 093355d11d5..3ef62cfef24 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgAccessReviewReminder.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgAccessReviewReminder.md index 093355d11d5..86ba636b85f 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgAccessReviewReminder.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgAccessReviewReminder.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgAccessReviewReminder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Send-MgAccessReviewReminder -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Send-MgAccessReviewReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md index 093355d11d5..7ba2e3c82ec 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgAccessReview.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgAccessReview.md index 093355d11d5..702fa01b26a 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgAccessReview.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgAccessReview.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgAccessReview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgAccessReview -AccessReviewId $accessReviewId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgAccessReview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 093355d11d5..8609e140da7 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 093355d11d5..61dca690e09 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedAccessRoleAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedAccessRoleAssignmentRequest.md index 093355d11d5..fae8dcdb4ea 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedAccessRoleAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedAccessRoleAssignmentRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgPrivilegedAccessRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgPrivilegedAccessRoleAssignmentRequest -PrivilegedAccessId $privilegedAccessId -GovernanceRoleAssignmentRequestId $governanceRoleAssignmentRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgPrivilegedAccessRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedRoleAssignmentRequest.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedRoleAssignmentRequest.md index 093355d11d5..47863535cd7 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedRoleAssignmentRequest.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Stop-MgPrivilegedRoleAssignmentRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgPrivilegedRoleAssignmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Stop-MgPrivilegedRoleAssignmentRequest -PrivilegedRoleAssignmentRequestId $privilegedRoleAssignmentRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgPrivilegedRoleAssignmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgAccessReview.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgAccessReview.md index 093355d11d5..4ad58da1c23 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgAccessReview.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgAccessReview.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgAccessReview Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "TestReview new name" +} +Update-MgAccessReview -AccessReviewId $accessReviewId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgAccessReview Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackage.md index 093355d11d5..dde105e5dba 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackage.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEntitlementManagementAccessPackage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Access Package New Name" +} +Update-MgEntitlementManagementAccessPackage -AccessPackageId $accessPackageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEntitlementManagementAccessPackage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep.md index 093355d11d5..0f40306e9ea 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep -ApprovalId $approvalId -ApprovalStepId $approvalStepId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEntitlementManagementAccessPackageAssignmentApprovalStep Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageCatalog.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageCatalog.md index 093355d11d5..9f2c6408ddd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageCatalog.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementAccessPackageCatalog.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEntitlementManagementAccessPackageCatalog Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Catalog One" +} +Update-MgEntitlementManagementAccessPackageCatalog -AccessPackageCatalogId $accessPackageCatalogId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEntitlementManagementAccessPackageCatalog Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementConnectedOrganization.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementConnectedOrganization.md index 093355d11d5..3ece92d710d 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementConnectedOrganization.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementConnectedOrganization.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEntitlementManagementConnectedOrganization Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "Connected organization new name" + Description = "Connected organization new description" + State = "configured" +} +Update-MgEntitlementManagementConnectedOrganization -ConnectedOrganizationId $connectedOrganizationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEntitlementManagementConnectedOrganization Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementSetting.md index 093355d11d5..ad9d0ca1b55 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgEntitlementManagementSetting.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgEntitlementManagementSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + ExternalUserLifecycleAction = "None" +} +Update-MgEntitlementManagementSetting -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgEntitlementManagementSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md index 093355d11d5..418a6ea2988 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstance.md @@ -1,18 +1,47 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Scope = @{ + "@odata.type" = "#microsoft.graph.principalResourceMembershipsScope" + PrincipalScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/v1.0/users" + QueryType = "MicrosoftGraph" + } + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/v1.0/groups" + QueryType = "MicrosoftGraph" + } + ) + ResourceScopes = @( + @{ + "@odata.type" = "#microsoft.graph.accessReviewQueryScope" + Query = "/beta/roleManagement/directory/roleDefinitions/9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" + QueryType = "MicrosoftGraph" + } + ) + } + Reviewers = @( + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e" + QueryType = "MicrosoftGraph" + } + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstance -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstance Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md index 093355d11d5..c8074176ebd 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + "@odata.type" = "#microsoft.graph.accessReviewStage" + Reviewers = @( + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) + FallbackReviewers = @( + @{ + Query = "/users/4562bcc8-c436-4f95-b7c0-4f8ce89dca5e" + QueryType = "MicrosoftGraph" + } + @{ + Query = "/users/1ed8ac56-4827-4733-8f80-86adc2e67db5" + QueryType = "MicrosoftGraph" + } + ) +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md index 093355d11d5..b4985a58038 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "This person is still on my team" +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "This person is still on my team" +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + Decision = "Approve" + Justification = "This person is still on my team" +} +Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision -AccessReviewScheduleDefinitionId $accessReviewScheduleDefinitionId -AccessReviewInstanceId $accessReviewInstanceId -AccessReviewStageId $accessReviewStageId -AccessReviewInstanceDecisionItemId $accessReviewInstanceDecisionItemId -BodyParameter $params +``` +This example shows how to use the Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewPolicy.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewPolicy.md index 093355d11d5..bd58673d9b4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewPolicy.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceAccessReviewPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityGovernanceAccessReviewPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + IsGroupOwnerManagementEnabled = $true +} +Update-MgIdentityGovernanceAccessReviewPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityGovernanceAccessReviewPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceTermOfUseAgreement.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceTermOfUseAgreement.md index 093355d11d5..26ef56ffc80 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceTermOfUseAgreement.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgIdentityGovernanceTermOfUseAgreement.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityGovernanceTermOfUseAgreement Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "All Contoso volunteers - Terms of use" + IsViewingBeforeAcceptanceRequired = $true +} +Update-MgIdentityGovernanceTermOfUseAgreement -AgreementId $agreementId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityGovernanceTermOfUseAgreement Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedAccessRoleSetting.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedAccessRoleSetting.md index 093355d11d5..15981ef66e2 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedAccessRoleSetting.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedAccessRoleSetting.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPrivilegedAccessRoleSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + AdminEligibleSettings = @( + @{ + RuleIdentifier = "ExpirationRule" + Setting = "{"permanentAssignment":false,"maximumGrantPeriodInMinutes":129600}" + } + ) +} +Update-MgPrivilegedAccessRoleSetting -PrivilegedAccessId $privilegedAccessId -GovernanceRoleSettingId $governanceRoleSettingId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPrivilegedAccessRoleSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedApproval.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedApproval.md index 093355d11d5..0317e5c0990 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedApproval.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgPrivilegedApproval.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPrivilegedApproval Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + ApprovalState = "approvalState-value" + ApproverReason = "approverReason-value" +} +Update-MgPrivilegedApproval -PrivilegedApprovalId $privilegedApprovalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPrivilegedApproval Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgProgram.md b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgProgram.md index 093355d11d5..96b31fac6a4 100644 --- a/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgProgram.md +++ b/src/Identity.Governance/Identity.Governance/examples/v1.0-beta/Update-MgProgram.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgProgram Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.Governance +$params = @{ + DisplayName = "testprogram3 new name" +} +Update-MgProgram -ProgramId $programId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgProgram Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Confirm-MgRiskyServicePrincipalCompromised.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Confirm-MgRiskyServicePrincipalCompromised.md index 093355d11d5..a4b3f2b0943 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Confirm-MgRiskyServicePrincipalCompromised.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Confirm-MgRiskyServicePrincipalCompromised.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgRiskyServicePrincipalCompromised Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ServicePrincipalIds = @( + "9089a539-a539-9089-39a5-899039a58990" + ) +} +Confirm-MgRiskyServicePrincipalCompromised -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgRiskyServicePrincipalCompromised Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgDataPolicyOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgDataPolicyOperation.md index 093355d11d5..af06a44cfe9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgDataPolicyOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgDataPolicyOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgDataPolicyOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgDataPolicyOperation -DataPolicyOperationId $dataPolicyOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgDataPolicyOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityApiConnector.md index 093355d11d5..471582843c2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityApiConnector.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityApiConnector ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlow.md index 093355d11d5..c6b1aaf63e9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlow.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlow -B2cIdentityUserFlowId $b2cIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2CUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlow -ExpandProperty "identityProviders" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityB2CUserFlow Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlow +``` +This example shows how to use the Get-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowIdentityProvider.md index 093355d11d5..0bfa214a98b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowIdentityProvider.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowIdentityProvider -B2cIdentityUserFlowId $b2cIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguage.md index 093355d11d5..c690bcd28e4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguage.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityB2CUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2CUserFlowLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityB2CUserFlowLanguage Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -Filter "isEnabled eq true" +``` +This example shows how to use the Get-MgIdentityB2CUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPage.md index 093355d11d5..435e1c68cba 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowLanguageDefaultPage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowLanguageDefaultPage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowLanguageDefaultPage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPageContent.md index 093355d11d5..956399d8300 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageDefaultPageContent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowLanguageDefaultPageContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowLanguageDefaultPageContent -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowLanguageDefaultPageContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageOverridePage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageOverridePage.md index 093355d11d5..429e5b1b6bc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageOverridePage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowLanguageOverridePage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowLanguageOverridePage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowLanguageOverridePage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowLanguageOverridePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignment.md index 093355d11d5..90a87a6a657 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignment.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -ExpandProperty "userAttribute" +``` +This example shows how to use the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -ExpandProperty "userAttribute" +``` +This example shows how to use the Get-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md index 093355d11d5..3b511ab346d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder -B2cIdentityUserFlowId $b2cIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2CUserFlowUserAttributeAssignmentOrder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlow.md index 093355d11d5..f080a277fb2 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlow.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2XUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2XUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlow -ExpandProperty "identityProviders" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityB2XUserFlow Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlow +``` +This example shows how to use the Get-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowIdentityProvider.md index 093355d11d5..4f2ad8123cc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowIdentityProvider.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2XUserFlowIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowIdentityProvider -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2XUserFlowIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowLanguage.md index 093355d11d5..f20412d444e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowLanguage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2XUserFlowLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowLanguage -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2XUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md index 093355d11d5..b4239c403f7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -ExpandProperty "userAttribute" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityConditionalAccessAuthenticationContextClassReference.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityConditionalAccessAuthenticationContextClassReference.md index 093355d11d5..1dc60757b20 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityConditionalAccessAuthenticationContextClassReference.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityConditionalAccessAuthenticationContextClassReference.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityConditionalAccessAuthenticationContextClassReference -AuthenticationContextClassReferenceId $authenticationContextClassReferenceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityConditionalAccessAuthenticationContextClassReference ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityConditionalAccessAuthenticationContextClassReference -AuthenticationContextClassReferenceId $authenticationContextClassReferenceId +``` +This example shows how to use the Get-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityContinuouAccessEvaluationPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityContinuouAccessEvaluationPolicy.md index 093355d11d5..12c3fd4eefd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityContinuouAccessEvaluationPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityContinuouAccessEvaluationPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityContinuouAccessEvaluationPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityContinuouAccessEvaluationPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityContinuouAccessEvaluationPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityProvider.md index 093355d11d5..4fae7342030 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityProvider.md @@ -1,18 +1,70 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderId $identityProviderId +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderId $identityProviderId +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -OutFile $outFileId +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 9: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 10: Using the Get-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId +``` +This example shows how to use the Get-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlow.md index 093355d11d5..797f2326acf 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlow.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityUserFlow -IdentityUserFlowId $identityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityUserFlow ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlowAttribute.md index 093355d11d5..559459b4d9a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgIdentityUserFlowAttribute.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgIdentityUserFlowAttribute Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgIdentityUserFlowAttribute Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgIdentityUserFlowAttribute ``` - -{{ Add description here }} - +This example shows how to use the Get-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionBitlockerRecoveryKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionBitlockerRecoveryKey.md index 093355d11d5..de811afd0a5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionBitlockerRecoveryKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionBitlockerRecoveryKey.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey -Filter "deviceId eq '1ab40ab2-32a8-4b00-b6b5-ba724e407de9'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId +``` +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionBitlockerRecoveryKey -BitlockerRecoveryKeyId $bitlockerRecoveryKeyId -Property "key" +``` +This example shows how to use the Get-MgInformationProtectionBitlockerRecoveryKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionThreatAssessmentRequest.md index 093355d11d5..28ea7eda368 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgInformationProtectionThreatAssessmentRequest.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId +``` +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId -ExpandProperty "results" +``` +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest +``` +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgInformationProtectionThreatAssessmentRequest -ThreatAssessmentRequestId $threatAssessmentRequestId +``` +This example shows how to use the Get-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrant.md index 093355d11d5..6886116e856 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrant.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOauth2PermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOauth2PermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOauth2PermissionGrant ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrantDelta.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrantDelta.md index 093355d11d5..51ba17a10be 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOauth2PermissionGrantDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOauth2PermissionGrantDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOauth2PermissionGrantDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgOauth2PermissionGrantDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOrganizationCertificateBasedAuthConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOrganizationCertificateBasedAuthConfiguration.md index 093355d11d5..62dba8d8694 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOrganizationCertificateBasedAuthConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgOrganizationCertificateBasedAuthConfiguration.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId -CertificateBasedAuthConfigurationId $certificateBasedAuthConfigurationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgOrganizationCertificateBasedAuthConfiguration -OrganizationId $organizationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgOrganizationCertificateBasedAuthConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAccessReviewPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAccessReviewPolicy.md index 093355d11d5..2eb7b532773 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAccessReviewPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAccessReviewPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAccessReviewPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAccessReviewPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAccessReviewPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..c81eb394fd0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyActivityBasedTimeoutPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAdminConsentRequestPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAdminConsentRequestPolicy.md index 093355d11d5..ee06d4621b7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAdminConsentRequestPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAdminConsentRequestPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAdminConsentRequestPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAdminConsentRequestPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAdminConsentRequestPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicy.md index 093355d11d5..daad95252f3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAppManagementPolicy -AppManagementPolicyId $appManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAppManagementPolicy ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicyApplyTo.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicyApplyTo.md index 093355d11d5..5782fd24d66 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicyApplyTo.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAppManagementPolicyApplyTo.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAppManagementPolicyApplyTo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAppManagementPolicyApplyTo -AppManagementPolicyId $appManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyAppManagementPolicyApplyTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyAppManagementPolicyApplyTo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAppManagementPolicyApplyTo -AppManagementPolicyId $appManagementPolicyId -Property "id,appId,displayName,createdDateTime" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAppManagementPolicyApplyTo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationFlowPolicy.md index 093355d11d5..a13c86a1e80 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationFlowPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAuthenticationFlowPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationFlowPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAuthenticationFlowPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicy.md index 093355d11d5..75477a41d29 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAuthenticationMethodPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 093355d11d5..024fcf7d838 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyB2CAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyB2CAuthenticationMethodPolicy.md index 093355d11d5..e66704047b7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyB2CAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyB2CAuthenticationMethodPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyB2CAuthenticationMethodPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyB2CAuthenticationMethodPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyB2CAuthenticationMethodPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyClaimMappingPolicy.md index 093355d11d5..c08a9fbb2da 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyClaimMappingPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyClaimMappingPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyClaimMappingPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicy.md index 093355d11d5..1652fc09ccd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyCrossTenantAccessPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyDefault.md index 093355d11d5..7ae532c239b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyCrossTenantAccessPolicyDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicyDefault ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicyDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..33ae6aa3f98 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyCrossTenantAccessPolicyPartner ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDefaultAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDefaultAppManagementPolicy.md index 093355d11d5..8f55df0d7f7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDefaultAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDefaultAppManagementPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyDefaultAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyDefaultAppManagementPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyDefaultAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDeviceRegistrationPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDeviceRegistrationPolicy.md index 093355d11d5..5945c82167b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDeviceRegistrationPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyDeviceRegistrationPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyDeviceRegistrationPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyDeviceRegistrationPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyDeviceRegistrationPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyExternalIdentityPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyExternalIdentityPolicy.md index 093355d11d5..68aa476bfcf 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyExternalIdentityPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyExternalIdentityPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyExternalIdentityPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyExternalIdentityPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyExternalIdentityPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..409f7518584 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyFeatureRolloutPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -ExpandProperty "appliesTo" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyFeatureRolloutPolicy Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId +``` +This example shows how to use the Get-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..f111110a7fd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyHomeRealmDiscoveryPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 093355d11d5..d99fd54d041 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicy.md index 093355d11d5..fdff51b31ac 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyMobileAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileAppManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyMobileAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyMobileAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileAppManagementPolicy ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyMobileAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicyIncludedGroup.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicyIncludedGroup.md index 093355d11d5..6c89c7fda11 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicyIncludedGroup.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileAppManagementPolicyIncludedGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyMobileAppManagementPolicyIncludedGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileAppManagementPolicyIncludedGroup -MobilityManagementPolicyId $mobilityManagementPolicyId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyMobileAppManagementPolicyIncludedGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyMobileAppManagementPolicyIncludedGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileAppManagementPolicyIncludedGroup -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyMobileAppManagementPolicyIncludedGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicy.md index 093355d11d5..736bd05a277 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicy.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileDeviceManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileDeviceManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileDeviceManagementPolicy +``` +This example shows how to use the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileDeviceManagementPolicy -OutFile $outFileId +``` +This example shows how to use the Get-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup.md index 093355d11d5..c3569f6fd38 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyMobileDeviceManagementPolicyIncludedGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md index 093355d11d5..4b2846787dc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyPermissionGrantPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyPermissionGrantPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicy ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..45595cfb290 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyPermissionGrantPolicyExclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyPermissionGrantPolicyExclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..6508b9db5f8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicy.md index 093355d11d5..5133ead3bcb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyRoleManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicy -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyRoleManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyRoleManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicy -Filter "scopeId eq '/' and scopeType eq 'DirectoryRole'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyRoleManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyAssignment.md index 093355d11d5..c6e7cb51b5f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyAssignment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyAssignment -UnifiedRoleManagementPolicyAssignmentId $unifiedRoleManagementPolicyAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyAssignment -Filter "scopeId eq '/' and scopeType eq 'Directory'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyRoleManagementPolicyAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyEffectiveRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyEffectiveRule.md index 093355d11d5..1f616889b71 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyEffectiveRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyEffectiveRule.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyRoleManagementPolicyEffectiveRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyEffectiveRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyRoleManagementPolicyEffectiveRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyRule.md index 093355d11d5..984a79e96e8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyRoleManagementPolicyRule.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyRoleManagementPolicyRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyRoleManagementPolicyRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgPolicyRoleManagementPolicyRule Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId +``` +This example shows how to use the Get-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenIssuancePolicy.md index 093355d11d5..db347e52326 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyTokenIssuancePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyTokenIssuancePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenIssuancePolicy ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenLifetimePolicy.md index 093355d11d5..b0732911a74 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPolicyTokenLifetimePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenLifetimePolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPolicyTokenLifetimePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipal.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipal.md index 093355d11d5..8df103a96e0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipal.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipal.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRiskyServicePrincipal Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyServicePrincipal -RiskyServicePrincipalId $riskyServicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgRiskyServicePrincipal Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgRiskyServicePrincipal Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyServicePrincipal ``` - -{{ Add description here }} - +This example shows how to use the Get-MgRiskyServicePrincipal Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipalHistory.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipalHistory.md index 093355d11d5..085c63f7998 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipalHistory.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgRiskyServicePrincipalHistory.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgRiskyServicePrincipalHistory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgRiskyServicePrincipalHistory -RiskyServicePrincipalId $riskyServicePrincipalId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgRiskyServicePrincipalHistory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgServicePrincipalRiskDetection.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgServicePrincipalRiskDetection.md index 093355d11d5..fe11a0e9dd7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgServicePrincipalRiskDetection.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgServicePrincipalRiskDetection.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgServicePrincipalRiskDetection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgServicePrincipalRiskDetection -ServicePrincipalRiskDetectionId $servicePrincipalRiskDetectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgServicePrincipalRiskDetection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgServicePrincipalRiskDetection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgServicePrincipalRiskDetection -Filter "riskEventType eq 'investigationsThreatIntelligence' or riskLevel eq 'medium'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgServicePrincipalRiskDetection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgServicePrincipalRiskDetection Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgServicePrincipalRiskDetection +``` +This example shows how to use the Get-MgServicePrincipalRiskDetection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySet.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySet.md index 093355d11d5..66ac42a1274 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySet.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySet.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTrustFrameworkKeySet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgTrustFrameworkKeySet ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTrustFrameworkKeySet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTrustFrameworkKeySet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgTrustFrameworkKeySet -TrustFrameworkKeySetId $trustFrameworkKeySetId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTrustFrameworkKeySet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySetActiveKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySetActiveKey.md index 093355d11d5..96ee9eade52 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySetActiveKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkKeySetActiveKey.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTrustFrameworkKeySetActiveKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgTrustFrameworkKeySetActiveKey -TrustFrameworkKeySetId $trustFrameworkKeySetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTrustFrameworkKeySetActiveKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkPolicy.md index 093355d11d5..da18709429b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgTrustFrameworkPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTrustFrameworkPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgTrustFrameworkPolicy ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTrustFrameworkPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationEmailMethod.md index 093355d11d5..c6ce2c9abbe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationEmailMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationEmailMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationEmailMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationFido2Method.md index 093355d11d5..4da1bab2b42 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationFido2Method.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationFido2Method Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationFido2Method Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationFido2Method Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationFido2Method -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationFido2Method Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMethod.md index 093355d11d5..9e393024163 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMethod.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationMethod -UserId $userId -AuthenticationMethodId $authenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 093355d11d5..decbc7b38a5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationOperation.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationOperation.md index 093355d11d5..be39c89e922 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationOperation.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationOperation -UserId $userId -LongRunningOperationId $longRunningOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordMethod.md index 093355d11d5..cefc8bfa00f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordMethod.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationPasswordMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPasswordMethod -UserId $userId -PasswordAuthenticationMethodId $passwordAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationPasswordMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationPasswordMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPasswordMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationPasswordMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md index 093355d11d5..381a2d16e65 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod -UserId $userId -PasswordlessMicrosoftAuthenticatorAuthenticationMethodId $passwordlessMicrosoftAuthenticatorAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPhoneMethod.md index 093355d11d5..2bc9fa82043 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationPhoneMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationPhoneMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationPhoneMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationSoftwareOathMethod.md index 093355d11d5..bd08915fec1 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationSoftwareOathMethod.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserAuthenticationSoftwareOathMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationSoftwareOathMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationTemporaryAccessPassMethod.md index 093355d11d5..7ffe8feb4e0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md index 093355d11d5..6ec810677a5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Get-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserInformationProtectionPolicyLabel.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserInformationProtectionPolicyLabel.md index 093355d11d5..01cd88efe7d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserInformationProtectionPolicyLabel.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgUserInformationProtectionPolicyLabel.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserInformationProtectionPolicyLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserInformationProtectionPolicyLabel -UserId $userId -InformationProtectionLabelId $informationProtectionLabelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserInformationProtectionPolicyLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserInformationProtectionPolicyLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Get-MgUserInformationProtectionPolicyLabel -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserInformationProtectionPolicyLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgAvailableIdentityProviderType.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgAvailableIdentityProviderType.md index 093355d11d5..6360c5ceb24 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgAvailableIdentityProviderType.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgAvailableIdentityProviderType.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAvailableIdentityProviderType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Invoke-MgAvailableIdentityProviderType ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgAvailableIdentityProviderType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgAvailableIdentityProviderType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Invoke-MgAvailableIdentityProviderType ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAvailableIdentityProviderType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Invoke-MgAvailableIdentityProviderType Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Invoke-MgAvailableIdentityProviderType -OutFile $outFileId +``` +This example shows how to use the Invoke-MgAvailableIdentityProviderType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyServicePrincipal.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyServicePrincipal.md index 093355d11d5..7f547fb8b67 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyServicePrincipal.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyServicePrincipal.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgDismissRiskyServicePrincipal Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ServicePrincipalIds = @( + "9089a539-a539-9089-39a5-899039a58990" + ) +} +Invoke-MgDismissRiskyServicePrincipal -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgDismissRiskyServicePrincipal Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyUser.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyUser.md index 093355d11d5..16bbe303c32 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyUser.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgDismissRiskyUser.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgDismissRiskyUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + UserIds = @( + "04487ee0-f4f6-4e7f-8999-facc5a30e232" + "13387ee0-f4f6-4e7f-8999-facc5120e345" + ) +} +Invoke-MgDismissRiskyUser -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgDismissRiskyUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgExtractInformationProtectionPolicyLabel.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgExtractInformationProtectionPolicyLabel.md index 093355d11d5..aca9162b21a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgExtractInformationProtectionPolicyLabel.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgExtractInformationProtectionPolicyLabel.md @@ -1,18 +1,55 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgExtractInformationProtectionPolicyLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ContentInfo = @{ + "@odata.type" = "#microsoft.graph.contentInfo" + "Format@odata.type" = "#microsoft.graph.contentFormat" + Format = "default" + Identifier = $null + "State@odata.type" = "#microsoft.graph.contentState" + State = "rest" + "Metadata@odata.type" = "#Collection(microsoft.graph.keyValuePair)" + Metadata = @( + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Enabled" + Value = "True" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Method" + Value = "Standard" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_SetDate" + Value = "1/1/0001 12:00:00 AM" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_SiteId" + Value = "cfa4cf1d-a337-4481-aa99-19d8f3d63f7c" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Name" + Value = "Top Secret" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_ContentBits" + Value = "0" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_ActionId" + Value = "00000000-0000-0000-0000-000000000000" + } + ) + } +} +Invoke-MgExtractInformationProtectionPolicyLabel -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgExtractInformationProtectionPolicyLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadIdentityApiConnectorClientCertificate.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadIdentityApiConnectorClientCertificate.md index 093355d11d5..80281cb67fb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadIdentityApiConnectorClientCertificate.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadIdentityApiConnectorClientCertificate.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUploadIdentityApiConnectorClientCertificate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "" +} +Invoke-MgUploadIdentityApiConnectorClientCertificate -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUploadIdentityApiConnectorClientCertificate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetCertificate.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetCertificate.md index 093355d11d5..8d4e2b28a0e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetCertificate.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetCertificate.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUploadTrustFrameworkKeySetCertificate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Key = "key-value" +} +Invoke-MgUploadTrustFrameworkKeySetCertificate -TrustFrameworkKeySetId $trustFrameworkKeySetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUploadTrustFrameworkKeySetCertificate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetPkcs12.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetPkcs12.md index 093355d11d5..ea981bd3a6b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetPkcs12.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetPkcs12.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUploadTrustFrameworkKeySetPkcs12 Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Key = "Base64-encoded-pfx-content" + Password = "password-value" +} +Invoke-MgUploadTrustFrameworkKeySetPkcs12 -TrustFrameworkKeySetId $trustFrameworkKeySetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUploadTrustFrameworkKeySetPkcs12 Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetSecret.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetSecret.md index 093355d11d5..9b08a9e914b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetSecret.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Invoke-MgUploadTrustFrameworkKeySetSecret.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUploadTrustFrameworkKeySetSecret Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Use = "use-value" + K = "application-secret-to-be-uploaded" + Nbf = 1508969811 + Exp = 1508973711 +} +Invoke-MgUploadTrustFrameworkKeySetSecret -TrustFrameworkKeySetId $trustFrameworkKeySetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUploadTrustFrameworkKeySetSecret Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityApiConnector.md index 093355d11d5..429e24ae1a4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityApiConnector.md @@ -1,18 +1,48 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Test API" + TargetUrl = "https://someapi.com/api" + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.basicAuthentication" + Username = "" + Password = "" + } +} +New-MgIdentityApiConnector -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Test API" + TargetUrl = "https://someotherapi.com/api" + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "" + } +} +New-MgIdentityApiConnector -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityApiConnector Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Test API" + TargetUrl = "https://someotherapi.com/api" + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "" + } +} +New-MgIdentityApiConnector -BodyParameter $params +``` +This example shows how to use the New-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlow.md index 093355d11d5..803f68a258b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlow.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityB2CUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "UserFlowWithAPIConnector" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 + ApiConnectorConfiguration = @{ + PostFederationSignup = @{ + "@odata.id" = "{apiConnectorId}" + } + PostAttributeCollection = @{ + "@odata.id" = "{apiConnectorId}" + } + } +} +New-MgIdentityB2CUserFlow -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityB2CUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Customer" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 3 + IdentityProviders = @( + @{ + Id = "Facebook-OAuth" + } + ) +} +New-MgIdentityB2CUserFlow -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityB2CUserFlow Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Customer" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 3 +} +New-MgIdentityB2CUserFlow -BodyParameter $params +``` +This example shows how to use the New-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowIdentityProviderByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowIdentityProviderByRef.md index 093355d11d5..466cc70f0b8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowIdentityProviderByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowIdentityProviderByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityB2CUserFlowIdentityProviderByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.id" = "https://graph.microsoft.com/beta/identityProviders/{id}" +} +New-MgIdentityB2CUserFlowIdentityProviderByRef -B2cIdentityUserFlowId $b2cIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityB2CUserFlowIdentityProviderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowUserAttributeAssignment.md index 093355d11d5..60112b73a80 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2CUserFlowUserAttributeAssignment.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsOptional = $false + RequiresVerification = $false + UserInputType = "TextBox" + DisplayName = "Shoe size" + UserAttributeValues = @( + ) + UserAttribute = @{ + Id = "extension_guid_shoeSize" + } +} +New-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlow.md index 093355d11d5..25bca12bb00 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlow.md @@ -1,18 +1,51 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityB2XUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "UserFlowWithAPIConnector" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 + ApiConnectorConfiguration = @{ + PostFederationSignup = @{ + "@odata.id" = "{apiConnectorId}" + } + PostAttributeCollection = @{ + "@odata.id" = "{apiConnectorId}" + } + } +} +New-MgIdentityB2XUserFlow -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityB2XUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Partner" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 + IdentityProviders = @( + @{ + Id = "Facebook-OAuth" + Type = "Facebook" + Name = "Facebook" + } + ) +} +New-MgIdentityB2XUserFlow -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityB2XUserFlow Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Partner" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 +} +New-MgIdentityB2XUserFlow -BodyParameter $params +``` +This example shows how to use the New-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlowUserAttributeAssignment.md index 093355d11d5..aca99cdf086 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityB2XUserFlowUserAttributeAssignment.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsOptional = $false + RequiresVerification = $false + UserInputType = "TextBox" + DisplayName = "Shoe size" + UserAttributeValues = @( + ) + UserAttribute = @{ + Id = "extension_guid_shoeSize" + } +} +New-MgIdentityB2XUserFlowUserAttributeAssignment -B2xIdentityUserFlowId $b2xIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityB2XUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityConditionalAccessAuthenticationContextClassReference.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityConditionalAccessAuthenticationContextClassReference.md index 093355d11d5..24a99619ca0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityConditionalAccessAuthenticationContextClassReference.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityConditionalAccessAuthenticationContextClassReference.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "c1" + DisplayName = "Contoso medium" + Description = "Medium protection level defined for Contoso policy" + IsAvailable = $true +} +New-MgIdentityConditionalAccessAuthenticationContextClassReference -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityProvider.md index 093355d11d5..997119a532d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityProvider.md @@ -1,18 +1,80 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.appleManagedIdentityProvider" + DisplayName = "Sign in with Apple" + DeveloperId = "UBF8T346G9" + ServiceId = "com.microsoft.rts.b2c.test.client" + KeyId = "99P6D879C4" + CertificateData = "******" +} +New-MgIdentityProvider -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.identityProvider" + Name = "Login with Amazon" + Type = "Amazon" + ClientId = "56433757-cadd-4135-8431-2c9e3fd68ae8" + ClientSecret = "000000000000" +} +New-MgIdentityProvider -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.openIdConnectIdentityProvider" + DisplayName = "Login with the Contoso identity provider" + ClientId = "56433757-cadd-4135-8431-2c9e3fd68ae8" + ClientSecret = "12345" + DomainHint = "mycustomoidc" + MetadataUrl = "https://mycustomoidc.com/.well-known/openid-configuration" + ResponseMode = "form_post" + ResponseType = "code" + Scope = "openid" +} +New-MgIdentityProvider -BodyParameter $params +``` +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.openIdConnectProvider" + Name = "Login with the Contoso identity provider" + Type = "OpenIDConnect" + ClientId = "56433757-cadd-4135-8431-2c9e3fd68ae8" + ClientSecret = "12345" + DomainHint = "mycustomoidc" + MetadataUrl = "https://mycustomoidc.com/.well-known/openid-configuration" + ResponseMode = "form_post" + ResponseType = "code" + Scope = "openid" +} +New-MgIdentityProvider -BodyParameter $params +``` +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "microsoft.graph.socialIdentityProvider" + DisplayName = "Login with Amazon" + IdentityProviderType = "Amazon" + ClientId = "56433757-cadd-4135-8431-2c9e3fd68ae8" + ClientSecret = "000000000000" +} +New-MgIdentityProvider -BodyParameter $params +``` +This example shows how to use the New-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlow.md index 093355d11d5..8faaf714a60 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlow.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "Pol1" + UserFlowType = "signUpOrSignIn" + UserFlowTypeVersion = 1 +} +New-MgIdentityUserFlow -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlowAttribute.md index 093355d11d5..e296bf1fa7f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgIdentityUserFlowAttribute.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgIdentityUserFlowAttribute Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Hobby" + Description = "Your hobby" + DataType = "string" +} +New-MgIdentityUserFlowAttribute -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgInformationProtectionThreatAssessmentRequest.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgInformationProtectionThreatAssessmentRequest.md index 093355d11d5..901e71ead7d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgInformationProtectionThreatAssessmentRequest.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgInformationProtectionThreatAssessmentRequest.md @@ -1,18 +1,55 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.emailFileAssessmentRequest" + RecipientEmail = "tifc@a830edad9050849EQTPWBJZXODQ.onmicrosoft.com" + ExpectedAssessment = "block" + Category = "malware" + ContentData = "UmVjZWl2ZWQ6IGZyb20gTVcyUFIwME1CMDMxNC5uYW1wcmQwMC....." +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.fileAssessmentRequest" + ExpectedAssessment = "block" + Category = "malware" + FileName = "test.txt" + ContentData = "VGhpcyBpcyBhIHRlc3QgZmlsZQ==" +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.mailAssessmentRequest" + RecipientEmail = "tifc@a830edad9050849EQTPWBJZXODQ.onmicrosoft.com" + ExpectedAssessment = "block" + Category = "spam" + MessageUri = "https://graph.microsoft.com/beta/users/c52ce8db-3e4b-4181-93c4-7d6b6bffaf60/messages/AAMkADU3MWUxOTU0LWNlOTEt=" +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params +``` +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgInformationProtectionThreatAssessmentRequest Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.urlAssessmentRequest" + Url = "http://test.com" + ExpectedAssessment = "block" + Category = "phishing" +} +New-MgInformationProtectionThreatAssessmentRequest -BodyParameter $params +``` +This example shows how to use the New-MgInformationProtectionThreatAssessmentRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgOauth2PermissionGrant.md index 093355d11d5..092a9c0a9b4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgOauth2PermissionGrant.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgOauth2PermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ClientId = "ef969797-201d-4f6b-960c-e9ed5f31dab5" + ConsentType = "AllPrincipals" + ResourceId = "943603e4-e787-4fe9-93d1-e30f749aae39" + Scope = "DelegatedPermissionGrant.ReadWrite.All" + StartTime = [System.DateTime]::Parse("2022-03-17T00:00:00Z") + ExpiryTime = [System.DateTime]::Parse("2023-03-17T00:00:00Z") +} +New-MgOauth2PermissionGrant -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..004e0922584 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyActivityBasedTimeoutPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyClaimMappingPolicy.md index 093355d11d5..02afa593e74 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyClaimMappingPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "{"ClaimsMappingPolicy":{"Version":1,"IncludeBasicClaimSet":"true","ClaimsSchema": [{"Source":"user","ID":"userprincipalname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"},{"Source":"user","ID":"givenname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname"},{"Source":"user","ID":"displayname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"},{"Source":"user","ID":"surname","SamlClaimType":"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname"},{"Source":"user","ID":"userprincipalname","SamlClaimType":"username"}],"ClaimsTransformation":[{"ID":"CreateTermsOfService","TransformationMethod":"CreateStringClaim","InputParameters": [{"ID":"value","DataType":"string", "Value":"sandbox"}],"OutputClaims":[{"ClaimTypeReferenceId":"TOS","TransformationClaimType":"createdClaim"}]}]}}" + ) + DisplayName = "Test1234" +} +New-MgPolicyClaimMappingPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..08248d42e4e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + TenantId = "3d0f5dec-5d3d-455c-8016-e2af1ae4d31a" + B2bDirectConnectOutbound = @{ + UsersAndGroups = @{ + AccessType = "blocked" + Targets = @( + @{ + Target = "6f546279-4da5-4b53-a095-09ea0cef9971" + TargetType = "group" + } + ) + } + } + B2bDirectConnectInbound = @{ + Applications = @{ + AccessType = "allowed" + Targets = @( + @{ + Target = "Office365" + TargetType = "application" + } + ) + } + } +} +New-MgPolicyCrossTenantAccessPolicyPartner -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..373de32eaff 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "PassthroughAuthentication rollout policy" + Description = "PassthroughAuthentication rollout policy" + Feature = "passthroughAuthentication" + IsEnabled = $true + IsAppliedToOrganization = $false +} +New-MgPolicyFeatureRolloutPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 093355d11d5..0dab98d8600 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.id" = " https://graph.microsoft.com/beta/directoryObjects/2441b489-4f12-4882-b039-8f6006bd66da" +} +New-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..e1b04fb9256 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyHomeRealmDiscoveryPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md index 093355d11d5..57aee1a0639 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.id" = "https://graph.microsoft.com/odata/groups('1a9db3ab-0acf-4808-99ae-e8ed581cb2e0')" +} +New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef -MobilityManagementPolicyId $mobilityManagementPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyMobileAppManagementPolicyIncludedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md index 093355d11d5..26091980269 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.id" = "https://graph.microsoft.com/odata/groups('dc3d2ce5-7c5e-4dca-a0ef-2145bf6e53ef')" +} +New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef -MobilityManagementPolicyId $mobilityManagementPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.id" = "https://graph.microsoft.com/odata/groups('dc3d2ce5-7c5e-4dca-a0ef-2145bf6e53ef')" +} +New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef -MobilityManagementPolicyId $mobilityManagementPolicyId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md index 093355d11d5..b0251d3e6a8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyPermissionGrantPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "my-custom-consent-policy" + DisplayName = "Custom application consent policy" + Description = "A custom permission grant policy to customize conditions for granting consent." +} +New-MgPolicyPermissionGrantPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..7e643156294 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyPermissionGrantPolicyExclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PermissionType = "delegated" + ResourceApplication = "00000003-0000-0000-c000-000000000000" +} +New-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyPermissionGrantPolicyExclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..bd7e5b424dc 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PermissionType = "delegated" + CertifiedClientApplicationsOnly = $true +} +New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PermissionType = "delegated" + ClientApplicationsFromVerifiedPublisherOnly = $true +} +New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgPolicyPermissionGrantPolicyInclude Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PermissionType = "delegated" + CertifiedClientApplicationsOnly = $true +} +New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params +``` +This example shows how to use the New-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenIssuancePolicy.md index 093355d11d5..9d7351e87fd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyTokenIssuancePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyTokenIssuancePolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenLifetimePolicy.md index 093355d11d5..00b365ba89a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPolicyTokenLifetimePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +New-MgPolicyTokenLifetimePolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySet.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySet.md index 093355d11d5..fbff9b08760 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySet.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySet.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTrustFrameworkKeySet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "keyset1" + Keys = @( + @{ + K = "k-value" + X5c = @( + "x5c-value" + ) + X5t = "x5t-value" + Kty = "kty-value" + Use = "use-value" + Exp = 99 + Nbf = 99 + Kid = "kid-value" + E = "e-value" + N = "n-value" + D = "d-value" + P = "p-value" + Q = "q-value" + Dp = "dp-value" + Dq = "dq-value" + Qi = "qi-value" + } + ) +} +New-MgTrustFrameworkKeySet -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgTrustFrameworkKeySet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTrustFrameworkKeySet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Id = "keyset1" +} +New-MgTrustFrameworkKeySet -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgTrustFrameworkKeySet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySetKey.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySetKey.md index 093355d11d5..341a1c44077 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySetKey.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgTrustFrameworkKeySetKey.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTrustFrameworkKeySetKey Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Use = "sig" + Kty = "RSA" + Nbf = 1508969811 + Exp = 1508969811 +} +New-MgTrustFrameworkKeySetKey -TrustFrameworkKeySetId $trustFrameworkKeySetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTrustFrameworkKeySetKey Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationEmailMethod.md index 093355d11d5..71c41f18dc3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserAuthenticationEmailMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + EmailAddress = "kim@contoso.com" +} +New-MgUserAuthenticationEmailMethod -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationPhoneMethod.md index 093355d11d5..a4751566f82 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserAuthenticationPhoneMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PhoneNumber = "+1 2065555555" + PhoneType = "mobile" +} +# A UPN can also be used as -UserId. +New-MgUserAuthenticationPhoneMethod -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationTemporaryAccessPassMethod.md index 093355d11d5..7a823021bde 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + StartDateTime = [System.DateTime]::Parse("2022-06-05T00:00:00.000Z") + LifetimeInMinutes = 60 + IsUsableOnce = $false +} +New-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityApiConnector.md index 093355d11d5..2c391416e36 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityApiConnector.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlow.md index 093355d11d5..30687e36200 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlow.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityB2CUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2CUserFlow -B2cIdentityUserFlowId $b2cIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowIdentityProviderByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowIdentityProviderByRef.md index 093355d11d5..2687eaca2a7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowIdentityProviderByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowIdentityProviderByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityB2CUserFlowIdentityProviderByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2CUserFlowIdentityProviderByRef -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityProviderId $identityProviderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityB2CUserFlowIdentityProviderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowLanguage.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowLanguage.md index 093355d11d5..982a6131bed 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowLanguage.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowLanguage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityB2CUserFlowLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityB2CUserFlowLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowUserAttributeAssignment.md index 093355d11d5..260038a2783 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2CUserFlowUserAttributeAssignment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlow.md index 093355d11d5..41afb02897f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlow.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityB2XUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2XUserFlow -B2xIdentityUserFlowId $b2xIdentityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityB2XUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlowIdentityProviderByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlowIdentityProviderByRef.md index 093355d11d5..1da9e5b7aba 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlowIdentityProviderByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityB2XUserFlowIdentityProviderByRef.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityB2XUserFlowIdentityProviderByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2XUserFlowIdentityProviderByRef -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgIdentityB2XUserFlowIdentityProviderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgIdentityB2XUserFlowIdentityProviderByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityB2XUserFlowIdentityProviderByRef -B2xIdentityUserFlowId $b2xIdentityUserFlowId -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityB2XUserFlowIdentityProviderByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityProvider.md index 093355d11d5..e5d0701e143 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityProvider.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlow.md index 093355d11d5..58c775af378 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlow.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityUserFlow -IdentityUserFlowId $identityUserFlowId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlowAttribute.md index 093355d11d5..4428c56f617 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgIdentityUserFlowAttribute.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgIdentityUserFlowAttribute Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgOauth2PermissionGrant.md index 093355d11d5..9b181d80bb5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgOauth2PermissionGrant.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgOauth2PermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..52a82621278 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAppManagementPolicy.md index 093355d11d5..41aae11eb6f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAppManagementPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAppManagementPolicy -AppManagementPolicyId $appManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 093355d11d5..8e7042040ae 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId +``` +This example shows how to use the Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyClaimMappingPolicy.md index 093355d11d5..bce6459f0ff 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyClaimMappingPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..f1ade290468 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..dadb557f6f5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md index 093355d11d5..16aac6be8c0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyFeatureRolloutPolicyApplyToByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyFeatureRolloutPolicyApplyToByRef -FeatureRolloutPolicyId $featureRolloutPolicyId -DirectoryObjectId $directoryObjectId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyFeatureRolloutPolicyApplyToByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..42c25002d03 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicy.md index 093355d11d5..48b3f4829a9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyMobileAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyMobileAppManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyMobileAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md index 093355d11d5..7e1051c8bd8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef -MobilityManagementPolicyId $mobilityManagementPolicyId -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyMobileAppManagementPolicyIncludedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicy.md index 093355d11d5..b9acf12abb3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyMobileDeviceManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyMobileDeviceManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgPolicyMobileDeviceManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyMobileDeviceManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md index 093355d11d5..2a2c57be1fe 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef -MobilityManagementPolicyId $mobilityManagementPolicyId -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyMobileDeviceManagementPolicyIncludedGroupByRef Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md index 093355d11d5..14cd36d85ae 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyPermissionGrantPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..c34af0da1c8 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyPermissionGrantPolicyExclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyPermissionGrantPolicyExclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..e774a409166 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyPermissionGrantPolicyInclude Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId $permissionGrantPolicyId -PermissionGrantConditionSetId $permissionGrantConditionSetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyPermissionGrantPolicyInclude Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenIssuancePolicy.md index 093355d11d5..c2333972a62 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyTokenIssuancePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenLifetimePolicy.md index 093355d11d5..9a32bcccd62 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPolicyTokenLifetimePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkKeySet.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkKeySet.md index 093355d11d5..cb39222e5c7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkKeySet.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkKeySet.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTrustFrameworkKeySet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgTrustFrameworkKeySet -TrustFrameworkKeySetId $trustFrameworkKeySetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTrustFrameworkKeySet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkPolicy.md index 093355d11d5..263c705309a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgTrustFrameworkPolicy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTrustFrameworkPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgTrustFrameworkPolicy -TrustFrameworkPolicyId $trustFrameworkPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTrustFrameworkPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationEmailMethod.md index 093355d11d5..c5a2f4ffb16 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationEmailMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationFido2Method.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationFido2Method.md index 093355d11d5..a10bc3e26a0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationFido2Method.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationFido2Method.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationFido2Method Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationFido2Method -UserId $userId -Fido2AuthenticationMethodId $fido2AuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationFido2Method Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md index 093355d11d5..8ad03994dda 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod -UserId $userId -MicrosoftAuthenticatorAuthenticationMethodId $microsoftAuthenticatorAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md index 093355d11d5..a8a1e328d94 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod -UserId $userId -PasswordlessMicrosoftAuthenticatorAuthenticationMethodId $passwordlessMicrosoftAuthenticatorAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPhoneMethod.md index 093355d11d5..7ff17c6323a 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationPhoneMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +# A UPN can also be used as -UserId. +Remove-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationSoftwareOathMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationSoftwareOathMethod.md index 093355d11d5..ffcb8a49662 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationSoftwareOathMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationSoftwareOathMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationSoftwareOathMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationSoftwareOathMethod -UserId $userId -SoftwareOathAuthenticationMethodId $softwareOathAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationSoftwareOathMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md index 093355d11d5..f8351df4ef4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationTemporaryAccessPassMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationTemporaryAccessPassMethod -UserId $userId -TemporaryAccessPassAuthenticationMethodId $temporaryAccessPassAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationTemporaryAccessPassMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md index 093355d11d5..c1e25594be3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgUserAuthenticationWindowHelloForBusinessMethod.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Remove-MgUserAuthenticationWindowHelloForBusinessMethod -UserId $userId -WindowsHelloForBusinessAuthenticationMethodId $windowsHelloForBusinessAuthenticationMethodId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserAuthenticationWindowHelloForBusinessMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md index 093355d11d5..7347182ffeb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowLanguageOverridePageContent.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowLanguageOverridePageContent.md index 093355d11d5..f2321f9fc6d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowLanguageOverridePageContent.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowLanguageOverridePageContent.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgIdentityB2CUserFlowLanguageOverridePageContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + LocalizedStrings = @( + ) +} +Set-MgIdentityB2CUserFlowLanguageOverridePageContent -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -UserFlowLanguagePageId $userFlowLanguagePageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgIdentityB2CUserFlowLanguageOverridePageContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md index 093355d11d5..ddb696c953c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + NewAssignmentOrder = @{ + Order = @( + "City" + "extension_GUID_ShoeSize" + ) + } +} +Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder -B2cIdentityUserFlowId $b2cIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgIdentityB2CUserFlowUserAttributeAssignmentOrder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelApplication.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelApplication.md index 093355d11d5..ab175d837af 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelApplication.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelApplication.md @@ -1,18 +1,66 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgInformationProtectionPolicyLabelApplication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ContentInfo = @{ + "@odata.type" = "#microsoft.graph.contentInfo" + "Format@odata.type" = "#microsoft.graph.contentFormat" + Format = "default" + Identifier = $null + "State@odata.type" = "#microsoft.graph.contentState" + State = "rest" + "Metadata@odata.type" = "#Collection(microsoft.graph.keyValuePair)" + Metadata = @( + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Enabled" + Value = "True" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Method" + Value = "Standard" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_SetDate" + Value = "1/1/0001 12:00:00 AM" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_SiteId" + Value = "cfa4cf1d-a337-4481-aa99-19d8f3d63f7c" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Name" + Value = "General" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_ContentBits" + Value = "0" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_ActionId" + Value = "00000000-0000-0000-0000-000000000000" + } + ) + } + LabelingOptions = @{ + "@odata.type" = "#microsoft.graph.labelingOptions" + "AssignmentMethod@odata.type" = "#microsoft.graph.assignmentMethod" + AssignmentMethod = "standard" + "LabelId@odata.type" = "#Guid" + LabelId = "97309856-9c28-4ac6-9382-5f8bc20c457b" + DowngradeJustification = $null + "ExtendedProperties@odata.type" = "#Collection(microsoft.graph.keyValuePair)" + ExtendedProperties = @( + ) + } +} +Test-MgInformationProtectionPolicyLabelApplication -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgInformationProtectionPolicyLabelApplication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelClassificationResult.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelClassificationResult.md index 093355d11d5..c06cab31def 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelClassificationResult.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelClassificationResult.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgInformationProtectionPolicyLabelClassificationResult Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ContentInfo = @{ + "@odata.type" = "#microsoft.graph.contentInfo" + "Format@odata.type" = "#microsoft.graph.contentFormat" + Format = "default" + Identifier = $null + "State@odata.type" = "#microsoft.graph.contentState" + State = "rest" + } + ClassificationResults = @( + @{ + SensitiveTypeId = "cb353f78-2b72-4c3c-8827-92ebe4f69fdf" + Count = 4 + ConfidenceLevel = 75 + } + ) +} +Test-MgInformationProtectionPolicyLabelClassificationResult -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgInformationProtectionPolicyLabelClassificationResult Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelRemoval.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelRemoval.md index 093355d11d5..60451e0b80f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelRemoval.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Test-MgInformationProtectionPolicyLabelRemoval.md @@ -1,18 +1,59 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgInformationProtectionPolicyLabelRemoval Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ContentInfo = @{ + "@odata.type" = "#microsoft.graph.contentInfo" + "Format@odata.type" = "#microsoft.graph.contentFormat" + Format = "default" + Identifier = $null + "State@odata.type" = "#microsoft.graph.contentState" + State = "rest" + "Metadata@odata.type" = "#Collection(microsoft.graph.keyValuePair)" + Metadata = @( + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Enabled" + Value = "True" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Method" + Value = "Standard" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_SetDate" + Value = "1/1/0001 12:00:00 AM" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_SiteId" + Value = "cfa4cf1d-a337-4481-aa99-19d8f3d63f7c" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_Name" + Value = "General" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_ContentBits" + Value = "0" + } + @{ + "@odata.type" = "#microsoft.graph.keyValuePair" + Name = "MSIP_Label_722a5300-ac39-4c9a-88e3-f54c46676417_ActionId" + Value = "00000000-0000-0000-0000-000000000000" + } + ) + } + DowngradeJustification = @{ + JustificationMessage = "The information has been declassified." + IsDowngradeJustified = $true + } +} +Test-MgInformationProtectionPolicyLabelRemoval -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgInformationProtectionPolicyLabelRemoval Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityApiConnector.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityApiConnector.md index 093355d11d5..d237445369c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityApiConnector.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityApiConnector.md @@ -1,18 +1,44 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "New Test API" + TargetUrl = "https://otherapi.com/api/endpoint" + AuthenticationConfiguration = @{ + "@odata.type" = "microsoft.graph.basicAuthentication" + Username = "" + Password = "" + } +} +Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgIdentityApiConnector Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "secret" + } +} +Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgIdentityApiConnector Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + AuthenticationConfiguration = @{ + "@odata.type" = "#microsoft.graph.pkcs12Certificate" + Pkcs12Value = "eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ...kDJ04sJShkkgjL9Bm49plA" + Password = "secret" + } +} +Update-MgIdentityApiConnector -IdentityApiConnectorId $identityApiConnectorId -BodyParameter $params +``` +This example shows how to use the Update-MgIdentityApiConnector Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlow.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlow.md index 093355d11d5..36a16676f98 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlow.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlow.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityB2CUserFlow Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsLanguageCustomizationEnabled = $true + DefaultLanguageTag = "en" +} +Update-MgIdentityB2CUserFlow -B2cIdentityUserFlowId $b2cIdentityUserFlowId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityB2CUserFlow Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlowUserAttributeAssignment.md index 093355d11d5..59d1378863e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityB2CUserFlowUserAttributeAssignment.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + UserInputType = "textBox" +} +Update-MgIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityB2CUserFlowUserAttributeAssignment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityConditionalAccessAuthenticationContextClassReference.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityConditionalAccessAuthenticationContextClassReference.md index 093355d11d5..7b5e2003f7c 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityConditionalAccessAuthenticationContextClassReference.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityConditionalAccessAuthenticationContextClassReference.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Value = @( + ) +} +Update-MgIdentityConditionalAccessAuthenticationContextClassReference -AuthenticationContextClassReferenceId $authenticationContextClassReferenceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityConditionalAccessAuthenticationContextClassReference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityContinuouAccessEvaluationPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityContinuouAccessEvaluationPolicy.md index 093355d11d5..ab819ef2b57 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityContinuouAccessEvaluationPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityContinuouAccessEvaluationPolicy.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityContinuouAccessEvaluationPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.continuousAccessEvaluationPolicy" + Migrate = $true +} +Update-MgIdentityContinuouAccessEvaluationPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityContinuouAccessEvaluationPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityProvider.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityProvider.md index 093355d11d5..9c009bbb0c3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityProvider.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityProvider.md @@ -1,18 +1,54 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.socialIdentityProvider" + DisplayName = "Apple" +} +Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgIdentityProvider Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + ClientSecret = "1111111111111" +} +Update-MgIdentityProvider -IdentityProviderId $identityProviderId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.socialIdentityProvider" + ResponseType = "id_token" +} +Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params +``` +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Update-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.socialIdentityProvider" + ResponseType = "id_token" +} +Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params +``` +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Update-MgIdentityProvider Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.socialIdentityProvider" + ClientSecret = "1111111111111" +} +Update-MgIdentityProvider -IdentityProviderBaseId $identityProviderBaseId -BodyParameter $params +``` +This example shows how to use the Update-MgIdentityProvider Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityUserFlowAttribute.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityUserFlowAttribute.md index 093355d11d5..a6f4a521f06 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityUserFlowAttribute.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgIdentityUserFlowAttribute.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgIdentityUserFlowAttribute Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Description = "Your new hobby" +} +Update-MgIdentityUserFlowAttribute -IdentityUserFlowAttributeId $identityUserFlowAttributeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgIdentityUserFlowAttribute Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgOauth2PermissionGrant.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgOauth2PermissionGrant.md index 093355d11d5..7a1f2d7b0e7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgOauth2PermissionGrant.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgOauth2PermissionGrant.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgOauth2PermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Scope = "User.ReadBasic.All Group.ReadWrite.All" +} +Update-MgOauth2PermissionGrant -OAuth2PermissionGrantId $oAuth2PermissionGrantId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgOauth2PermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAccessReviewPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAccessReviewPolicy.md index 093355d11d5..5dd621f157f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAccessReviewPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAccessReviewPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyAccessReviewPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsGroupOwnerManagementEnabled = $true +} +Update-MgPolicyAccessReviewPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyAccessReviewPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyActivityBasedTimeoutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyActivityBasedTimeoutPolicy.md index 093355d11d5..f9f4b84afa4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyActivityBasedTimeoutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyActivityBasedTimeoutPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyActivityBasedTimeoutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyActivityBasedTimeoutPolicy -ActivityBasedTimeoutPolicyId $activityBasedTimeoutPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyActivityBasedTimeoutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationFlowPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationFlowPolicy.md index 093355d11d5..578c6acbcea 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationFlowPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationFlowPolicy.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyAuthenticationFlowPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + SelfServiceSignUp = @{ + IsEnabled = $true + } +} +Update-MgPolicyAuthenticationFlowPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyAuthenticationFlowPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicy.md index 093355d11d5..e5e75be0c4f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicy.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyAuthenticationMethodPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + RegistrationEnforcement = @{ + AuthenticationMethodsRegistrationCampaign = @{ + SnoozeDurationInDays = 1 + State = "enabled" + ExcludeTargets = @( + ) + IncludeTargets = @( + @{ + Id = "3ee3a9de-0a86-4e12-a287-9769accf1ba2" + TargetType = "group" + TargetedAuthenticationMethod = "microsoftAuthenticator" + } + ) + } + } +} +Update-MgPolicyAuthenticationMethodPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md index 093355d11d5..1a9c3adba07 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration.md @@ -1,18 +1,84 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.emailAuthenticationMethodConfiguration" + AllowExternalIdToUseEmailOtp = "disabled" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.fido2AuthenticationMethodConfiguration" + State = "enabled" + IsAttestationEnforced = "true" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration" + State = "enabled" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethodConfiguration" + State = "enabled" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.smsAuthenticationMethodConfiguration" + Id = "Sms" + State = "enabled" +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration" + IsUsableOnce = $true +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet +```powershell +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.x509CertificateAuthenticationMethodConfiguration" + Id = "X509Certificate" + State = "enabled" + CertificateUserBindings = @( + ) + IncludeTargets = @( + ) +} +Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration -AuthenticationMethodConfigurationId $authenticationMethodConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyClaimMappingPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyClaimMappingPolicy.md index 093355d11d5..cad82458421 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyClaimMappingPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyClaimMappingPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyClaimMappingPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "UpdateClaimsPolicy" +} +Update-MgPolicyClaimMappingPolicy -ClaimsMappingPolicyId $claimsMappingPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyClaimMappingPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicy.md index 093355d11d5..00b6cb8f9f0 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicy.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyCrossTenantAccessPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + AllowedCloudEndpoints = @( + "microsoftonline.us" + "partner.microsoftonline.cn" + ) +} +Update-MgPolicyCrossTenantAccessPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyCrossTenantAccessPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyDefault.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyDefault.md index 093355d11d5..5f42277105e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyDefault.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyDefault.md @@ -1,18 +1,29 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyCrossTenantAccessPolicyDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + B2bCollaborationOutbound = @{ + UsersAndGroups = @{ + AccessType = "blocked" + Targets = @( + @{ + Target = "0be493dc-cb56-4a53-936f-9cf64410b8b0" + TargetType = "group" + } + ) + } + Applications = @{ + AccessType = "blocked" + Targets = @( + @{ + Target = "AllApplications" + TargetType = "application" + } + ) + } + } +} +Update-MgPolicyCrossTenantAccessPolicyDefault -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyCrossTenantAccessPolicyDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyPartner.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyPartner.md index 093355d11d5..2c53523988b 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyPartner.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyCrossTenantAccessPolicyPartner.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyCrossTenantAccessPolicyPartner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + InboundTrust = @{ + IsMfaAccepted = $true + IsCompliantDeviceAccepted = $true + IsHybridAzureADJoinedDeviceAccepted = $true + } +} +Update-MgPolicyCrossTenantAccessPolicyPartner -CrossTenantAccessPolicyConfigurationPartnerTenantId $crossTenantAccessPolicyConfigurationPartnerTenantId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyCrossTenantAccessPolicyPartner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyDefaultAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyDefaultAppManagementPolicy.md index 093355d11d5..e1415370332 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyDefaultAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyDefaultAppManagementPolicy.md @@ -1,18 +1,46 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyDefaultAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsEnabled = $true + ApplicationRestrictions = @{ + PasswordCredentials = @( + @{ + RestrictionType = "passwordAddition" + MaxLifetime = $null + RestrictForAppsCreatedAfterDateTime = [System.DateTime]::Parse("2021-01-01T10:37:00Z") + } + @{ + RestrictionType = "passwordLifetime" + MaxLifetime = "P4DT12H30M5S" + RestrictForAppsCreatedAfterDateTime = [System.DateTime]::Parse("2017-01-01T10:37:00Z") + } + @{ + RestrictionType = "symmetricKeyAddition" + MaxLifetime = $null + RestrictForAppsCreatedAfterDateTime = [System.DateTime]::Parse("2021-01-01T10:37:00Z") + } + @{ + RestrictionType = "customPasswordAddition" + MaxLifetime = $null + RestrictForAppsCreatedAfterDateTime = [System.DateTime]::Parse("2015-01-01T10:37:00Z") + } + @{ + RestrictionType = "symmetricKeyLifetime" + MaxLifetime = "P40D" + RestrictForAppsCreatedAfterDateTime = [System.DateTime]::Parse("2015-01-01T10:37:00Z") + } + ) + KeyCredentials = @( + @{ + RestrictionType = "asymmetricKeyLifetime" + MaxLifetime = "P30D" + RestrictForAppsCreatedAfterDateTime = [System.DateTime]::Parse("2015-01-01T10:37:00Z") + } + ) + } +} +Update-MgPolicyDefaultAppManagementPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyDefaultAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyFeatureRolloutPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyFeatureRolloutPolicy.md index 093355d11d5..d3999dd6483 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyFeatureRolloutPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyFeatureRolloutPolicy.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyFeatureRolloutPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "PasswordHashSync Rollout Policy" + Description = "PasswordHashSync Rollout Policy" + IsEnabled = $true + IsAppliedToOrganization = $false +} +Update-MgPolicyFeatureRolloutPolicy -FeatureRolloutPolicyId $featureRolloutPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyFeatureRolloutPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyHomeRealmDiscoveryPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyHomeRealmDiscoveryPolicy.md index 093355d11d5..c2f7669d545 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyHomeRealmDiscoveryPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyHomeRealmDiscoveryPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyHomeRealmDiscoveryPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyHomeRealmDiscoveryPolicy -HomeRealmDiscoveryPolicyId $homeRealmDiscoveryPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyHomeRealmDiscoveryPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md index 093355d11d5..916fda78477 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + IsEnabled = $false +} +Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileAppManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileAppManagementPolicy.md index 093355d11d5..b4167357d9e 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileAppManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileAppManagementPolicy.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyMobileAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.mobilityManagementPolicy" + ComplianceUrl = "https://portal.mg.contoso.com/?portalAction=Compliance" + DiscoveryUrl = "https://enrollment.mg.contoso.com/enrollmentserver/discovery.svc" + TermsOfUseUrl = "https://portal.mg.contoso.com/TermsofUse.aspx" +} +Update-MgPolicyMobileAppManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgPolicyMobileAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgPolicyMobileAppManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.mobilityManagementPolicy" + ComplianceUrl = "https://portal.mg.contoso.com/?portalAction=Compliance" + DiscoveryUrl = "https://enrollment.mg.contoso.com/enrollmentserver/discovery.svc" + TermsOfUseUrl = "https://portal.mg.contoso.com/TermsofUse.aspx" +} +Update-MgPolicyMobileAppManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyMobileAppManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileDeviceManagementPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileDeviceManagementPolicy.md index 093355d11d5..a545d7015a4 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileDeviceManagementPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyMobileDeviceManagementPolicy.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyMobileDeviceManagementPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.mobilityManagementPolicy" + ComplianceUrl = "https://portal.uem.contoso.com/?portalAction=Compliance" + DiscoveryUrl = "https://enrollment.uem.contoso.com/enrollmentserver/discovery.svc" + TermsOfUseUrl = "https://portal.uem.contoso.com/TermsofUse.aspx" +} +Update-MgPolicyMobileDeviceManagementPolicy -MobilityManagementPolicyId $mobilityManagementPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyMobileDeviceManagementPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md index 093355d11d5..456ad1ba882 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyPermissionGrantPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + DisplayName = "Custom permission grant policy" +} +Update-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId $permissionGrantPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyPermissionGrantPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyRoleManagementPolicyRule.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyRoleManagementPolicyRule.md index 093355d11d5..bfdc4bdf4c5 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyRoleManagementPolicyRule.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyRoleManagementPolicyRule.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyRoleManagementPolicyRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + "@odata.type" = "#microsoft.graph.unifiedRoleManagementPolicyExpirationRule" + Id = "Expiration_EndUser_Assignment" + IsExpirationRequired = $true + MaximumDuration = "PT1H45M" + Target = @{ + "@odata.type" = "microsoft.graph.unifiedRoleManagementPolicyRuleTarget" + Caller = "EndUser" + Operations = @( + "All" + ) + Level = "Assignment" + InheritableSettings = @( + ) + EnforcedSettings = @( + ) + } +} +Update-MgPolicyRoleManagementPolicyRule -UnifiedRoleManagementPolicyId $unifiedRoleManagementPolicyId -UnifiedRoleManagementPolicyRuleId $unifiedRoleManagementPolicyRuleId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyRoleManagementPolicyRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenIssuancePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenIssuancePolicy.md index 093355d11d5..991279d9a37 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenIssuancePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenIssuancePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyTokenIssuancePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyTokenIssuancePolicy -TokenIssuancePolicyId $tokenIssuancePolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyTokenIssuancePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenLifetimePolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenLifetimePolicy.md index 093355d11d5..e3c17506ca7 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenLifetimePolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyTokenLifetimePolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPolicyTokenLifetimePolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + Definition = @( + "definition-value" + ) + DisplayName = "displayName-value" + IsOrganizationDefault = $true +} +Update-MgPolicyTokenLifetimePolicy -TokenLifetimePolicyId $tokenLifetimePolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPolicyTokenLifetimePolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationEmailMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationEmailMethod.md index 093355d11d5..1e91b1f02eb 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationEmailMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationEmailMethod.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserAuthenticationEmailMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + EmailAddress = "kim@contoso.com" +} +Update-MgUserAuthenticationEmailMethod -UserId $userId -EmailAuthenticationMethodId $emailAuthenticationMethodId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserAuthenticationEmailMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationPhoneMethod.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationPhoneMethod.md index 093355d11d5..7375b689937 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationPhoneMethod.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgUserAuthenticationPhoneMethod.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserAuthenticationPhoneMethod Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Identity.SignIns +$params = @{ + PhoneNumber = "+1 2065555554" + PhoneType = "mobile" +} +# A UPN can also be used as -UserId. +Update-MgUserAuthenticationPhoneMethod -UserId $userId -PhoneAuthenticationMethodId $phoneAuthenticationMethodId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserAuthenticationPhoneMethod Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserInferenceClassificationOverride.md index 093355d11d5..17be1eb8173 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserInferenceClassificationOverride.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserInferenceClassificationOverride Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserInferenceClassificationOverride -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolder.md index 093355d11d5..b2305146281 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolder.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolder -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserMailFolder Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId +``` +This example shows how to use the Get-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderChildFolder.md index 093355d11d5..56207ac1530 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderChildFolder.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMailFolderChildFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMailFolderChildFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessage.md index 093355d11d5..f8c1a762842 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMailFolderMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMailFolderMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessageRule.md index 093355d11d5..8ba4ec629ff 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMailFolderMessageRule.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMailFolderMessageRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMailFolderMessageRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessage.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessage.md index 093355d11d5..c49e84743a3 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessage.md @@ -1,18 +1,64 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId -ExpandProperty "mentions" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "subject,body,bodyPreview,uniqueBody" +``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId -Property "internetMessageHeaders" +``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -MessageId $messageId +``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -Property "subject,body,bodyPreview,uniqueBody" +``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -Property "sender,subject" +``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the Get-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessage -UserId $userId -Filter "MentionsPreview/IsMentioned eq true" -Property "Subject,Sender,ReceivedDateTime,MentionsPreview" +``` +This example shows how to use the Get-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageAttachment.md index 093355d11d5..70ba155b634 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageAttachment.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMessageAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserMessageAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId -AttachmentId $attachmentId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserMessageAttachment Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageAttachment -UserId $userId -MessageId $messageId +``` +This example shows how to use the Get-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageExtension.md index 093355d11d5..1e5c230c748 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0-beta/Get-MgUserMessageExtension.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMessageExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Get-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMessageExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserInferenceClassificationOverride.md index 093355d11d5..f7f8599f03f 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserInferenceClassificationOverride.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserInferenceClassificationOverride Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + ClassifyAs = "focused" + SenderEmailAddress = @{ + Name = "Samantha Booth" + Address = "samanthab@adatum.onmicrosoft.com" + } +} +# A UPN can also be used as -UserId. +New-MgUserInferenceClassificationOverride -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolder.md index 093355d11d5..c07c53c18a1 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolder.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "Clutter" + IsHidden = $true +} +# A UPN can also be used as -UserId. +New-MgUserMailFolder -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderChildFolder.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderChildFolder.md index 093355d11d5..dc8bdfe7be6 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderChildFolder.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderChildFolder.md @@ -1,18 +1,29 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMailFolderChildFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "displayName-value" + IsHidden = $true +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMailFolderChildFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "microsoft.graph.mailSearchFolder" + DisplayName = "Weekly digests" + IncludeNestedFolders = $true + SourceFolderIds = @( + "AQMkADYAAAIBDAAAAA==" + ) + FilterQuery = "contains(subject, 'weekly digest')" +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderChildFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMailFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessage.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessage.md index 093355d11d5..45f8b66b8ed 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessage.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessage.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMailFolderMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + ReceivedDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + SentDateTime = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + HasAttachments = $true + Subject = "subject-value" + Body = @{ + ContentType = "" + Content = "content-value" + } + BodyPreview = "bodyPreview-value" +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderMessage -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMailFolderMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessageRule.md index 093355d11d5..9665ec34a31 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMailFolderMessageRule.md @@ -1,18 +1,29 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMailFolderMessageRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "From partner" + Sequence = 2 + IsEnabled = $true + Conditions = @{ + SenderContains = @( + "adele" + ) + } + Actions = @{ + ForwardTo = @( + @{ + EmailAddress = @{ + Name = "Alex Wilbur" + Address = "AlexW@contoso.onmicrosoft.com" + } + } + ) + StopProcessingRules = $true + } +} +# A UPN can also be used as -UserId. +New-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessage.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessage.md index 093355d11d5..b7c3b06669c 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessage.md @@ -1,18 +1,113 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "Did you see last night's game?" + Importance = "Low" + Body = @{ + ContentType = "HTML" + Content = "They were awesome!" + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "AdeleV@contoso.onmicrosoft.com" + } + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserMessage -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "9/8/2018: concert" + Body = @{ + ContentType = "HTML" + Content = "The group represents Washington." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "AlexW@contoso.OnMicrosoft.com" + } + } + ) + InternetMessageHeaders = @( + @{ + Name = "x-custom-header-group-name" + Value = "Washington" + } + @{ + Name = "x-custom-header-group-id" + Value = "WA001" + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserMessage -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "Party planning" + ToRecipients = @( + @{ + EmailAddress = @{ + Name = "Samantha Booth" + Address = "samanthab@contoso.onmicrosoft.com" + } + } + ) + Mentions = @( + @{ + Mentioned = @{ + Name = "Dana Swope" + Address = "danas@contoso.onmicrosoft.com" + } + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserMessage -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgUserMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "Annual review" + Body = @{ + ContentType = "HTML" + Content = "You should be proud!" + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "rufus@contoso.com" + } + } + ) + Extensions = @( + @{ + "@odata.type" = "microsoft.graph.openTypeExtension" + ExtensionName = "Com.Contoso.Referral" + CompanyName = "Wingtip Toys" + ExpirationDate = "2015-12-30T11:00:00.000Z" + DealValue = + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserMessage -UserId $userId -BodyParameter $params +``` +This example shows how to use the New-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageAttachment.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageAttachment.md index 093355d11d5..40c3a51f564 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageAttachment.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageAttachment.md @@ -1,18 +1,61 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessageAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "#Microsoft.OutlookServices.FileAttachment" + Name = "name-value" + ContentType = "contentType-value" + IsInline = $false + ContentLocation = "contentLocation-value" + ContentBytes = "contentBytes-value" +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMessageAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "smile" + ContentBytes = "a0b1c76de9f7=" +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgUserMessageAttachment Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "#microsoft.graph.itemAttachment" + Name = "Holiday event" + Item = @{ + "@odata.type" = "microsoft.graph.event" + Subject = "Discuss gifts for children" + } +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params +``` +This example shows how to use the New-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgUserMessageAttachment Cmdlet +```powershell +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "#microsoft.graph.referenceAttachment" + Name = "Personal pictures" + SourceUrl = "https://contoso.com/personal/mario_contoso_net/Documents/Pics" + ProviderType = "oneDriveConsumer" + Permission = "Edit" + IsFolder = "True" +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachment -UserId $userId -MessageId $messageId -BodyParameter $params +``` +This example shows how to use the New-MgUserMessageAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageExtension.md index 093355d11d5..0d052c41334 100644 --- a/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0-beta/New-MgUserMessageExtension.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessageExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "microsoft.graph.openTypeExtension" + ExtensionName = "Com.Contoso.Referral" + CompanyName = "Wingtip Toys" + DealValue = + ExpirationDate = "2015-12-03T10:00:00.000Z" +} +# A UPN can also be used as -UserId. +New-MgUserMessageExtension -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessageExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserInferenceClassificationOverride.md index 093355d11d5..6be2a44bbba 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserInferenceClassificationOverride.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserInferenceClassificationOverride Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolder.md index 093355d11d5..4d4e4d75664 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolder.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolderMessageRule.md index 093355d11d5..5580bf0cae1 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMailFolderMessageRule.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserMailFolderMessageRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessage.md b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessage.md index 093355d11d5..19137c5c0b4 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessage.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageExtension.md b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageExtension.md index 093355d11d5..0e59fe62b40 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageExtension.md +++ b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageExtension.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserMessageExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessageExtension -UserId $userId -MessageId $messageId -ExtensionId $extensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserMessageExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageMention.md b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageMention.md index 093355d11d5..c10f9ffc18f 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageMention.md +++ b/src/Mail/Mail/examples/v1.0-beta/Remove-MgUserMessageMention.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserMessageMention Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +# A UPN can also be used as -UserId. +Remove-MgUserMessageMention -UserId $userId -MessageId $messageId -MentionId $mentionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserMessageMention Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserInferenceClassificationOverride.md b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserInferenceClassificationOverride.md index 093355d11d5..3d86ddb676b 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserInferenceClassificationOverride.md +++ b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserInferenceClassificationOverride.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserInferenceClassificationOverride Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + ClassifyAs = "focused" +} +# A UPN can also be used as -UserId. +Update-MgUserInferenceClassificationOverride -UserId $userId -InferenceClassificationOverrideId $inferenceClassificationOverrideId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserInferenceClassificationOverride Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolder.md b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolder.md index 093355d11d5..037e7b990a3 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolder.md +++ b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolder.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "displayName-value" +} +# A UPN can also be used as -UserId. +Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + "@odata.type" = "microsoft.graph.mailSearchFolder" + FilterQuery = "contains(subject, 'Analytics')" +} +# A UPN can also be used as -UserId. +Update-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolderMessageRule.md b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolderMessageRule.md index 093355d11d5..1892488eb31 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolderMessageRule.md +++ b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMailFolderMessageRule.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserMailFolderMessageRule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + DisplayName = "Important from partner" + Actions = @{ + MarkImportance = "high" + } +} +# A UPN can also be used as -UserId. +Update-MgUserMailFolderMessageRule -UserId $userId -MailFolderId $mailFolderId -MessageRuleId $messageRuleId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserMailFolderMessageRule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMessage.md b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMessage.md index 093355d11d5..f9835bf5a44 100644 --- a/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMessage.md +++ b/src/Mail/Mail/examples/v1.0-beta/Update-MgUserMessage.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + IsRead = "true" +} +# A UPN can also be used as -UserId. +Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Mail +$params = @{ + Subject = "subject-value" + Body = @{ + ContentType = "" + Content = "content-value" + } + InferenceClassification = "other" +} +# A UPN can also be used as -UserId. +Update-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebook.md index 093355d11d5..cf630807ed8 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebook.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteNotebook Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnenoteNotebook Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebook -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserOnenoteNotebook Cmdlet +```powershell +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId +``` +This example shows how to use the Get-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSection.md index 093355d11d5..5e24f9cb2ac 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSection.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteNotebookSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteNotebookSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSectionGroup.md index 093355d11d5..2b4e4da71f2 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteNotebookSectionGroup.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteNotebookSectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteNotebookSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteOperation.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteOperation.md index 093355d11d5..d43d2d8d0e2 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteOperation.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteOperation.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteOperation -UserId $userId -OnenoteOperationId $onenoteOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSection.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSection.md index 093355d11d5..83d92648f54 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSection.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSection.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSection -UserId $userId -OnenoteSectionId $onenoteSectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnenoteSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnenoteSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSection -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroup.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroup.md index 093355d11d5..e7dee706eaa 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroup.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteSectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSectionGroup -UserId $userId -SectionGroupId $sectionGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOnenoteSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOnenoteSectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSectionGroup -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroupSection.md index 093355d11d5..a234de3df29 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0-beta/Get-MgUserOnenoteSectionGroupSection.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteSectionGroupSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Get-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteSectionGroupSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebook.md b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebook.md index 093355d11d5..36192b3b5fd 100644 --- a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebook.md +++ b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebook.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOnenoteNotebook Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "My Private notebook" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteNotebook -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSection.md b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSection.md index 093355d11d5..838fd4d5258 100644 --- a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSection.md +++ b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSection.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOnenoteNotebookSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteNotebookSection -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOnenoteNotebookSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSectionGroup.md b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSectionGroup.md index 093355d11d5..8fe88b33041 100644 --- a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteNotebookSectionGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOnenoteNotebookSectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section group name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteNotebookSectionGroup -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOnenoteNotebookSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroup.md b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroup.md index 093355d11d5..8102be1df00 100644 --- a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroup.md +++ b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOnenoteSectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section group name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteSectionGroup -UserId $userId -SectionGroupId $sectionGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOnenoteSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroupSection.md b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroupSection.md index 093355d11d5..d481eb0fae0 100644 --- a/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroupSection.md +++ b/src/Notes/Notes/examples/v1.0-beta/New-MgUserOnenoteSectionGroupSection.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOnenoteSectionGroupSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +$params = @{ + DisplayName = "Section name" +} +# A UPN can also be used as -UserId. +New-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOnenoteSectionGroupSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Notes/Notes/examples/v1.0-beta/Remove-MgUserOnenotePage.md b/src/Notes/Notes/examples/v1.0-beta/Remove-MgUserOnenotePage.md index 093355d11d5..8f9927ca2f5 100644 --- a/src/Notes/Notes/examples/v1.0-beta/Remove-MgUserOnenotePage.md +++ b/src/Notes/Notes/examples/v1.0-beta/Remove-MgUserOnenotePage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOnenotePage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Notes +# A UPN can also be used as -UserId. +Remove-MgUserOnenotePage -UserId $userId -OnenotePageId $onenotePageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOnenotePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserActivityStatistics.md b/src/People/People/examples/v1.0-beta/Get-MgUserActivityStatistics.md index 093355d11d5..c11a2a55c4d 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserActivityStatistics.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserActivityStatistics.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserActivityStatistics Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserActivityStatistics -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserActivityStatistics Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserPerson.md b/src/People/People/examples/v1.0-beta/Get-MgUserPerson.md index 093355d11d5..7482d458910 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserPerson.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserPerson.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPerson Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserPerson -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPerson Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfile.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfile.md index 093355d11d5..b12baacce6c 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfile.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfile.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfile -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfile -UserId $userId -ExpandProperty "names(`$select=first,last),skills(`$select=displayName)" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAccount.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAccount.md index 093355d11d5..a3915ea788e 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAccount.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAccount.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAccount -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAccount -UserId $userId -UserAccountInformationId $userAccountInformationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAddress.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAddress.md index 093355d11d5..bd11141dc01 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAddress.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAddress.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileAddress Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAddress -UserId $userId -ItemAddressId $itemAddressId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileAddress Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileAddress Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAddress -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileAddress Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAnniversary.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAnniversary.md index 093355d11d5..4784aa0ccb4 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAnniversary.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAnniversary.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileAnniversary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAnniversary -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileAnniversary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileAnniversary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAnniversary -UserId $userId -PersonAnnualEventId $personAnnualEventId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileAnniversary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAward.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAward.md index 093355d11d5..e22dd91b252 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileAward.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileAward.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileAward Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAward -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileAward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileAward Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileAward -UserId $userId -PersonAwardId $personAwardId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileAward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileCertification.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileCertification.md index 093355d11d5..85aec298b34 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileCertification.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileCertification.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileCertification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileCertification -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileCertification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileCertification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileCertification -UserId $userId -PersonCertificationId $personCertificationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileCertification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileEducationalActivity.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileEducationalActivity.md index 093355d11d5..f4b1ba8d1b7 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileEducationalActivity.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileEducationalActivity.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileEducationalActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileEducationalActivity -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileEducationalActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileEducationalActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileEducationalActivity -UserId $userId -EducationalActivityId $educationalActivityId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileEducationalActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileEmail.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileEmail.md index 093355d11d5..511c4b75e91 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileEmail.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileEmail.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileEmail -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Get-MgUserProfileEmail -UserId $userId -ItemEmailId $itemEmailId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileInterest.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileInterest.md index 093355d11d5..f7dfd07ff29 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileInterest.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileInterest.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileInterest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileInterest -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileInterest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileInterest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileInterest -UserId $userId -PersonInterestId $personInterestId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileInterest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileLanguage.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileLanguage.md index 093355d11d5..61503f6111d 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileLanguage.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileLanguage.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileLanguage -UserId $userId -LanguageProficiencyId $languageProficiencyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileLanguage -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileName.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileName.md index 093355d11d5..0df9b9bdd07 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileName.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileName.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileName Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileName -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileName Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileName Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileName -UserId $userId -PersonNameId $personNameId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileName Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileNote.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileNote.md index 093355d11d5..c08027cabef 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileNote.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileNote.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileNote Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileNote -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileNote Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileNote Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileNote -UserId $userId -PersonAnnotationId $personAnnotationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileNote Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePatent.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePatent.md index 093355d11d5..1997067d0c1 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePatent.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePatent.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfilePatent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePatent -UserId $userId -ItemPatentId $itemPatentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfilePatent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfilePatent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePatent -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfilePatent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePhone.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePhone.md index 093355d11d5..1674ba4417c 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePhone.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePhone.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfilePhone Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePhone -UserId $userId -ItemPhoneId $itemPhoneId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfilePhone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfilePhone Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePhone -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfilePhone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePosition.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePosition.md index 093355d11d5..6996c292539 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePosition.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePosition.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfilePosition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePosition -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfilePosition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfilePosition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePosition -UserId $userId -WorkPositionId $workPositionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfilePosition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileProject.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileProject.md index 093355d11d5..67d0fab28cd 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileProject.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileProject.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileProject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileProject -UserId $userId -ProjectParticipationId $projectParticipationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileProject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileProject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileProject -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileProject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePublication.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePublication.md index 093355d11d5..1525f16ae1f 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfilePublication.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfilePublication.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfilePublication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePublication -UserId $userId -ItemPublicationId $itemPublicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfilePublication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfilePublication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfilePublication -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfilePublication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileSkill.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileSkill.md index 093355d11d5..367392baea4 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileSkill.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileSkill.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileSkill Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileSkill -UserId $userId -SkillProficiencyId $skillProficiencyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileSkill Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileSkill Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileSkill -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileSkill Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebAccount.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebAccount.md index 093355d11d5..e84187e9e72 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebAccount.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebAccount.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileWebAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileWebAccount -UserId $userId -WebAccountId $webAccountId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileWebAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileWebAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileWebAccount -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileWebAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebsite.md b/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebsite.md index 093355d11d5..91df9fed97b 100644 --- a/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebsite.md +++ b/src/People/People/examples/v1.0-beta/Get-MgUserProfileWebsite.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserProfileWebsite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileWebsite -UserId $userId -PersonWebsiteId $personWebsiteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserProfileWebsite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserProfileWebsite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Get-MgUserProfileWebsite -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserProfileWebsite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileAccount.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileAccount.md index 093355d11d5..e0fb7b514d1 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileAccount.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileAccount.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + AllowedAudiences = "organization" + CountryCode = "NO" +} +# A UPN can also be used as -UserId. +New-MgUserProfileAccount -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileAddress.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileAddress.md index 093355d11d5..27c02a24cd4 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileAddress.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileAddress.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileAddress Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + DisplayName = "Home" + Detail = @{ + Type = "home" + PostOfficeBox = $null + Street = "221B Baker Street" + City = "London" + State = $null + CountryOrRegion = "United Kingdom" + PostalCode = "E14 3TD" + } +} +# A UPN can also be used as -UserId. +New-MgUserProfileAddress -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileAddress Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileAnniversary.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileAnniversary.md index 093355d11d5..b5aac7e8098 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileAnniversary.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileAnniversary.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileAnniversary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Type = "birthday" + Date = "1980-01-08" +} +# A UPN can also be used as -UserId. +New-MgUserProfileAnniversary -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileAnniversary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileAward.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileAward.md index 093355d11d5..24df98b9b62 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileAward.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileAward.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileAward Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Description = "Lifetime Achievement award from the International Association of Branding Managers" + DisplayName = "Lifetime Achievement Award For Excellence in Branding" + IssuedDate = "Date" + IssuingAuthority = "International Association of Branding Management" + ThumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" + WebUrl = "https://www.iabm.io" +} +# A UPN can also be used as -UserId. +New-MgUserProfileAward -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileAward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileCertification.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileCertification.md index 093355d11d5..2cba14df86e 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileCertification.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileCertification.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileCertification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + CertificationId = "KB-1235466333663322" + Description = "Blackbelt in Marketing - Brand Management" + DisplayName = "Marketing Blackbelt - Brand Management" + ThumbnailUrl = "https://iame.io/dfhdfdfd334.jpg" + WebUrl = "https://www.iame.io/blackbelt" +} +# A UPN can also be used as -UserId. +New-MgUserProfileCertification -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileCertification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileEducationalActivity.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileEducationalActivity.md index 093355d11d5..e28f25de8ff 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileEducationalActivity.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileEducationalActivity.md @@ -1,18 +1,38 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileEducationalActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + CompletionMonthYear = "Date" + EndMonthYear = "Date" + Institution = @{ + Description = $null + DisplayName = "Colorado State University" + Location = @{ + Type = "business" + PostOfficeBox = $null + Street = "12000 E Prospect Rd" + City = "Fort Collins" + State = "Colorado" + CountryOrRegion = "USA" + PostalCode = "80525" + } + WebUrl = "https://www.colostate.edu" + } + Program = @{ + Abbreviation = "MBA" + Activities = $null + Awards = $null + Description = "Master of Business Administration with a major in Entreprenuership and Finance." + DisplayName = "Master of Business Administration" + FieldsOfStudy = $null + Grade = "3.9" + Notes = $null + WebUrl = "https://biz.colostate.edu" + } + StartMonthYear = "Date" +} +# A UPN can also be used as -UserId. +New-MgUserProfileEducationalActivity -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileEducationalActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileEmail.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileEmail.md index 093355d11d5..f309dcdfad2 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileEmail.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileEmail.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Address = "Innocenty.Popov@adventureworks.com" +} +# A UPN can also be used as -UserId. +New-MgUserProfileEmail -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileInterest.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileInterest.md index 093355d11d5..4d6dc475043 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileInterest.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileInterest.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileInterest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Categories = @( + "Sports" + ) + Description = "World's greatest football club" + DisplayName = "Chelsea FC" + WebUrl = "https://www.chelseafc.com" +} +# A UPN can also be used as -UserId. +New-MgUserProfileInterest -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileInterest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileLanguage.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileLanguage.md index 093355d11d5..e88331bf42e 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileLanguage.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileLanguage.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + DisplayName = "Norwegian Bokmål" + Tag = "nb-NO" + Spoken = "nativeOrBilingual" + Written = "nativeOrBilingual" + Reading = "nativeOrBilingual" +} +# A UPN can also be used as -UserId. +New-MgUserProfileLanguage -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileName.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileName.md index 093355d11d5..1dd1f9b501a 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileName.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileName.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileName Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + DisplayName = "Innocenty Popov" + First = "Innocenty" + Initials = "IP" + Last = "Popov" + LanguageTag = "en-US" + Maiden = $null +} +# A UPN can also be used as -UserId. +New-MgUserProfileName -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileName Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileNote.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileNote.md index 093355d11d5..e62ed4dbcf8 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileNote.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileNote.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileNote Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Detail = @{ + ContentType = "text" + Content = "I am originally from Australia, but grew up in Moscow, Russia." + } + DisplayName = "About Me" +} +# A UPN can also be used as -UserId. +New-MgUserProfileNote -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileNote Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfilePatent.md b/src/People/People/examples/v1.0-beta/New-MgUserProfilePatent.md index 093355d11d5..6937917ab35 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfilePatent.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfilePatent.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfilePatent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Description = "Calculating the intent of a user to purchase an item based on the amount of time they hover their mouse over a given pixel." + DisplayName = "Inferring User Intent through browsing behaviors" + IsPending = $true + Number = "USPTO-3954432633" + WebUrl = "https://patents.gov/3954432633" +} +# A UPN can also be used as -UserId. +New-MgUserProfilePatent -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfilePatent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfilePhone.md b/src/People/People/examples/v1.0-beta/New-MgUserProfilePhone.md index 093355d11d5..8a3a6682611 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfilePhone.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfilePhone.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfilePhone Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + DisplayName = "Car Phone" + Number = "+7 499 342 22 13" +} +# A UPN can also be used as -UserId. +New-MgUserProfilePhone -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfilePhone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfilePosition.md b/src/People/People/examples/v1.0-beta/New-MgUserProfilePosition.md index 093355d11d5..4450e3fe3fd 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfilePosition.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfilePosition.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfilePosition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Detail = @{ + Company = @{ + DisplayName = "Adventureworks Ltd." + Department = "Consulting" + OfficeLocation = "AW23/344" + Address = @{ + Type = "business" + Street = "123 Patriachy Ponds" + City = "Moscow" + CountryOrRegion = "Russian Federation" + PostalCode = "RU-34621" + } + WebUrl = "https://www.adventureworks.com" + } + JobTitle = "Senior Product Branding Manager II" + Role = "consulting" + } + IsCurrent = $true +} +# A UPN can also be used as -UserId. +New-MgUserProfilePosition -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfilePosition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileProject.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileProject.md index 093355d11d5..f1b90ee9aa2 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileProject.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileProject.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileProject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Categories = @( + "Branding" + ) + Client = @{ + DisplayName = "Contoso Ltd." + Department = "Corporate Marketing" + WebUrl = "https://www.contoso.com" + } + DisplayName = "Contoso Re-branding Project" + Detail = @{ + Company = @{ + DisplayName = "Adventureworks Inc." + Department = "Consulting" + WebUrl = "https://adventureworks.com" + } + Description = "Rebranding of Contoso Ltd." + JobTitle = "Lead PM Rebranding" + Role = "project management" + Summary = "A 6 month project to help Contoso rebrand after they were divested from a parent organization." + } +} +# A UPN can also be used as -UserId. +New-MgUserProfileProject -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileProject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfilePublication.md b/src/People/People/examples/v1.0-beta/New-MgUserProfilePublication.md index 093355d11d5..462ffa7b352 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfilePublication.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfilePublication.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfilePublication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Description = "One persons journey to the top of the branding management field." + DisplayName = "Got Brands? The story of Innocenty Popov and his journey to the top." + PublishedDate = "Date" + Publisher = "International Association of Branding Management Publishing" + ThumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" + WebUrl = "https://www.iabm.io" +} +# A UPN can also be used as -UserId. +New-MgUserProfilePublication -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfilePublication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileSkill.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileSkill.md index 093355d11d5..d20492a0f83 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileSkill.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileSkill.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileSkill Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Categories = @( + "Professional" + ) + AllowedAudiences = "organization" + DisplayName = "API Design" + Proficiency = "generalProfessional" + CollaborationTags = @( + "ableToMentor" + ) +} +# A UPN can also be used as -UserId. +New-MgUserProfileSkill -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileSkill Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileWebAccount.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileWebAccount.md index 093355d11d5..068be96694b 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileWebAccount.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileWebAccount.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileWebAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Description = "My Github contributions!" + UserId = "innocenty.popov" + Service = @{ + Name = "GitHub" + WebUrl = "https://github.com" + } +} +# A UPN can also be used as -UserId. +New-MgUserProfileWebAccount -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileWebAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/New-MgUserProfileWebsite.md b/src/People/People/examples/v1.0-beta/New-MgUserProfileWebsite.md index 093355d11d5..e492f569b16 100644 --- a/src/People/People/examples/v1.0-beta/New-MgUserProfileWebsite.md +++ b/src/People/People/examples/v1.0-beta/New-MgUserProfileWebsite.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserProfileWebsite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Categories = @( + "football" + ) + DisplayName = "Lyn Damer" + WebUrl = "www.lyndamer.no" +} +# A UPN can also be used as -UserId. +New-MgUserProfileWebsite -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserProfileWebsite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfile.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfile.md index 093355d11d5..c3cb5a11fe2 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfile.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfile.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfile -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAccount.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAccount.md index 093355d11d5..0c246f73a0a 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAccount.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAccount.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileAccount -UserId $userId -UserAccountInformationId $userAccountInformationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAddress.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAddress.md index 093355d11d5..378cbcbb687 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAddress.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAddress.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileAddress Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Remove-MgUserProfileAddress -UserId $userId -ItemAddressId $itemAddressId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileAddress Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAnniversary.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAnniversary.md index 093355d11d5..1ffdb85584d 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAnniversary.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAnniversary.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileAnniversary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileAnniversary -UserId $userId -PersonAnnualEventId $personAnnualEventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileAnniversary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAward.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAward.md index 093355d11d5..8b3c017536e 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAward.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileAward.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileAward Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Remove-MgUserProfileAward -UserId $userId -PersonAwardId $personAwardId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileAward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileCertification.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileCertification.md index 093355d11d5..fd6dc9bcf63 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileCertification.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileCertification.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileCertification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Remove-MgUserProfileCertification -UserId $userId -PersonCertificationId $personCertificationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileCertification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEducationalActivity.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEducationalActivity.md index 093355d11d5..4088618c5a2 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEducationalActivity.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEducationalActivity.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileEducationalActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileEducationalActivity -UserId $userId -EducationalActivityId $educationalActivityId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileEducationalActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEmail.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEmail.md index 093355d11d5..9de28160db6 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEmail.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileEmail.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileEmail -UserId $userId -ItemEmailId $itemEmailId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileInterest.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileInterest.md index 093355d11d5..d5df1fc4c83 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileInterest.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileInterest.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileInterest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileInterest -UserId $userId -PersonInterestId $personInterestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileInterest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileLanguage.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileLanguage.md index 093355d11d5..83c17d6fc64 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileLanguage.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileLanguage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileLanguage -UserId $userId -LanguageProficiencyId $languageProficiencyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileName.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileName.md index 093355d11d5..92932d84e13 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileName.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileName.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileName Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileName -UserId $userId -PersonNameId $personNameId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileName Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileNote.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileNote.md index 093355d11d5..904c8593987 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileNote.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileNote.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileNote Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Remove-MgUserProfileNote -UserId $userId -PersonAnnotationId $personAnnotationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileNote Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePatent.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePatent.md index 093355d11d5..99f9072372b 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePatent.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePatent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfilePatent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Remove-MgUserProfilePatent -UserId $userId -ItemPatentId $itemPatentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfilePatent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePhone.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePhone.md index 093355d11d5..54fd4d81542 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePhone.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePhone.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfilePhone Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +Remove-MgUserProfilePhone -UserId $userId -ItemPhoneId $itemPhoneId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfilePhone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePosition.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePosition.md index 093355d11d5..f55a2f85041 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePosition.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePosition.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfilePosition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfilePosition -UserId $userId -WorkPositionId $workPositionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfilePosition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileProject.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileProject.md index 093355d11d5..8e5e5fd3151 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileProject.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileProject.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileProject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileProject -UserId $userId -ProjectParticipationId $projectParticipationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileProject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePublication.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePublication.md index 093355d11d5..bff7ad3c755 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePublication.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfilePublication.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfilePublication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfilePublication -UserId $userId -ItemPublicationId $itemPublicationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfilePublication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileSkill.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileSkill.md index 093355d11d5..16f74abce9e 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileSkill.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileSkill.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileSkill Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileSkill -UserId $userId -SkillProficiencyId $skillProficiencyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileSkill Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebAccount.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebAccount.md index 093355d11d5..f3166dfd8ff 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebAccount.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebAccount.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileWebAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileWebAccount -UserId $userId -WebAccountId $webAccountId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileWebAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebsite.md b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebsite.md index 093355d11d5..b3c45bef6b7 100644 --- a/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebsite.md +++ b/src/People/People/examples/v1.0-beta/Remove-MgUserProfileWebsite.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserProfileWebsite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +# A UPN can also be used as -UserId. +Remove-MgUserProfileWebsite -UserId $userId -PersonWebsiteId $personWebsiteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserProfileWebsite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAccount.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAccount.md index 093355d11d5..4fde93c74e4 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAccount.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAccount.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + CountryCode = "NO" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileAccount -UserId $userId -UserAccountInformationId $userAccountInformationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAddress.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAddress.md index 093355d11d5..bddb700a928 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAddress.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAddress.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileAddress Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + AllowedAudiences = "me" + DisplayName = "Secret Hideout" +} +Update-MgUserProfileAddress -UserId $userId -ItemAddressId $itemAddressId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileAddress Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAnniversary.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAnniversary.md index 093355d11d5..2693c692cb4 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAnniversary.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAnniversary.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileAnniversary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + AllowedAudiences = "contacts" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileAnniversary -UserId $userId -PersonAnnualEventId $personAnnualEventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileAnniversary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAward.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAward.md index 093355d11d5..f487e9dd7fd 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileAward.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileAward.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileAward Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + IssuingAuthority = "International Association of Branding Management" + ThumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" +} +Update-MgUserProfileAward -UserId $userId -PersonAwardId $personAwardId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileAward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileCertification.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileCertification.md index 093355d11d5..e9e65407a61 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileCertification.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileCertification.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileCertification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + IssuingAuthority = "International Academy of Marketing Excellence" + IssuingCompany = "International Academy of Marketing Excellence" +} +Update-MgUserProfileCertification -UserId $userId -PersonCertificationId $personCertificationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileCertification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileEducationalActivity.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileEducationalActivity.md index 093355d11d5..15ba38a094e 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileEducationalActivity.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileEducationalActivity.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileEducationalActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Institution = @{ + Location = @{ + Type = "business" + PostOfficeBox = $null + Street = "12000 E Prospect Rd" + City = "Fort Collins" + State = "Colorado" + CountryOrRegion = "USA" + PostalCode = "80525" + } + } +} +# A UPN can also be used as -UserId. +Update-MgUserProfileEducationalActivity -UserId $userId -EducationalActivityId $educationalActivityId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileEducationalActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileEmail.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileEmail.md index 093355d11d5..cbf737dc1ab 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileEmail.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileEmail.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + DisplayName = "Business Email" + Type = "work" +} +Update-MgUserProfileEmail -UserId $userId -ItemEmailId $itemEmailId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileInterest.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileInterest.md index 093355d11d5..12da5034166 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileInterest.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileInterest.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileInterest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Categories = @( + "Sports" + ) +} +# A UPN can also be used as -UserId. +Update-MgUserProfileInterest -UserId $userId -PersonInterestId $personInterestId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileInterest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileLanguage.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileLanguage.md index 093355d11d5..24847884b6f 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileLanguage.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileLanguage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + AllowedAudiences = "organization" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileLanguage -UserId $userId -LanguageProficiencyId $languageProficiencyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileName.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileName.md index 093355d11d5..2a8c11e2604 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileName.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileName.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileName Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Nickname = "Kesha" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileName -UserId $userId -PersonNameId $personNameId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileName Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileNote.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileNote.md index 093355d11d5..6e733fa0214 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileNote.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileNote.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileNote Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + AllowedAudiences = "organization" +} +Update-MgUserProfileNote -UserId $userId -PersonAnnotationId $personAnnotationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileNote Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePatent.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePatent.md index 093355d11d5..8a9652d8f25 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePatent.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePatent.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfilePatent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Number = "USPTO-3954432633" + WebUrl = "https://patents.gov/3954432633" +} +Update-MgUserProfilePatent -UserId $userId -ItemPatentId $itemPatentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfilePatent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePhone.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePhone.md index 093355d11d5..929de85ad3b 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePhone.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePhone.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfilePhone Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Type = "other" +} +Update-MgUserProfilePhone -UserId $userId -ItemPhoneId $itemPhoneId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfilePhone Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePosition.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePosition.md index 093355d11d5..3144e605a57 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePosition.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePosition.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfilePosition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + IsCurrent = $true +} +# A UPN can also be used as -UserId. +Update-MgUserProfilePosition -UserId $userId -WorkPositionId $workPositionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfilePosition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileProject.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileProject.md index 093355d11d5..f1ad8375f14 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileProject.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileProject.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileProject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + AllowedAudiences = "organization" + Client = @{ + Department = "Corporate Marketing" + WebUrl = "https://www.contoso.com" + } +} +# A UPN can also be used as -UserId. +Update-MgUserProfileProject -UserId $userId -ProjectParticipationId $projectParticipationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileProject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePublication.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePublication.md index 093355d11d5..f80194be37b 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfilePublication.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfilePublication.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfilePublication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Publisher = "International Association of Branding Management Publishing" + ThumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" +} +Update-MgUserProfilePublication -UserId $userId -ItemPublicationId $itemPublicationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfilePublication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileSkill.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileSkill.md index 093355d11d5..e288f289a8f 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileSkill.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileSkill.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileSkill Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Categories = @( + "Professional" + ) + Proficiency = "advancedProfessional" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileSkill -UserId $userId -SkillProficiencyId $skillProficiencyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileSkill Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebAccount.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebAccount.md index 093355d11d5..ad5d3644903 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebAccount.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebAccount.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileWebAccount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + WebUrl = "https://github.com/innocenty.popov" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileWebAccount -UserId $userId -WebAccountId $webAccountId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileWebAccount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebsite.md b/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebsite.md index 093355d11d5..77dde8b0e9f 100644 --- a/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebsite.md +++ b/src/People/People/examples/v1.0-beta/Update-MgUserProfileWebsite.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserProfileWebsite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.People +$params = @{ + Description = "Lyn Damer play in the Women's 1st Division (Toppserien) in Norway" +} +# A UPN can also be used as -UserId. +Update-MgUserProfileWebsite -UserId $userId -PersonWebsiteId $personWebsiteId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserProfileWebsite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContact.md index 093355d11d5..043cee4845b 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContact.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContact -UserId $userId -ContactId $contactId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContact -UserId $userId -Property "displayName,emailAddresses" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolder.md index 093355d11d5..ae1d35eb409 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolder.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserContactFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserContactFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolder -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderChildFolder.md index 093355d11d5..a7c97b92d52 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderChildFolder.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserContactFolderChildFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserContactFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderContact.md index 093355d11d5..2ca82b13bc5 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Get-MgUserContactFolderContact.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserContactFolderContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Get-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserContactFolderContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContact.md index 093355d11d5..5df44275afa 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContact.md @@ -1,18 +1,31 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + GivenName = "Pavel" + Surname = "Bansky" + EmailAddresses = @( + @{ + Address = "pavelb@contoso.onmicrosoft.com" + Name = "Pavel Bansky" + Type = "personal" + } + @{ + Address = "pavelb@fabrikam.onmicrosoft.com" + Name = "Pavel Bansky" + Type = "other" + OtherLabel = "Volunteer work" + } + ) + Phones = @( + @{ + Number = "+1 732 555 0102" + Type = "business" + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserContact -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolder.md index 093355d11d5..4f7b487fed6 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolder.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserContactFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + ParentFolderId = "AQMkADIxYjJiYgEzLTFmNjYALTRjYTMtODA1NC0wZDkxZGNmOTcxNTQALgAAA8RJzXYaLKZPlmn0ge0edZkBADa3qi2IMXRNg6RwQSHe_F8AAAIBDgAAAA==" + DisplayName = "Important contacts" +} +# A UPN can also be used as -UserId. +New-MgUserContactFolder -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderChildFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderChildFolder.md index 093355d11d5..9fee34e1685 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderChildFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderChildFolder.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserContactFolderChildFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + DisplayName = "Family" +} +# A UPN can also be used as -UserId. +New-MgUserContactFolderChildFolder -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserContactFolderChildFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderContact.md index 093355d11d5..6e919d23632 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/New-MgUserContactFolderContact.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserContactFolderContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + ParentFolderId = "parentFolderId-value" + Birthday = [System.DateTime]::Parse("2016-10-19T10:37:00Z") + FileAs = "fileAs-value" + DisplayName = "displayName-value" + GivenName = "givenName-value" + Initials = "initials-value" +} +# A UPN can also be used as -UserId. +New-MgUserContactFolderContact -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserContactFolderContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContact.md index 093355d11d5..2cfe18df0c1 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContact.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Remove-MgUserContact -UserId $userId -ContactId $contactId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContactFolder.md index 093355d11d5..44f4ebfd984 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Remove-MgUserContactFolder.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserContactFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +# A UPN can also be used as -UserId. +Remove-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContact.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContact.md index 093355d11d5..3474ac653f5 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContact.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContact.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserContact Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + EmailAddresses = @( + @{ + Type = "personal" + Name = "Pavel Bansky" + Address = "pavelb@adatum.onmicrosoft.com" + } + @{ + Address = "pavelb@fabrikam.onmicrosoft.com" + Name = "Pavel Bansky" + Type = "other" + OtherLabel = "Volunteer work" + } + ) +} +# A UPN can also be used as -UserId. +Update-MgUserContact -UserId $userId -ContactId $contactId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserContact Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContactFolder.md b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContactFolder.md index 093355d11d5..ea993d87800 100644 --- a/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContactFolder.md +++ b/src/PersonalContacts/PersonalContacts/examples/v1.0-beta/Update-MgUserContactFolder.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserContactFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.PersonalContacts +$params = @{ + ParentFolderId = "parentFolderId-value" + DisplayName = "displayName-value" +} +# A UPN can also be used as -UserId. +Update-MgUserContactFolder -UserId $userId -ContactFolderId $contactFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserContactFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgGroupPlannerPlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgGroupPlannerPlan.md index 093355d11d5..25eb954e105 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgGroupPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgGroupPlannerPlan.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgGroupPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgGroupPlannerPlan -GroupId $groupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgGroupPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucket.md index 093355d11d5..527e0665d1a 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucket.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerBucket Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerBucket ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerBucket Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerBucket -PlannerBucketId $plannerBucketId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucketTask.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucketTask.md index 093355d11d5..7428815cc14 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucketTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerBucketTask.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerBucketTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerBucketTask -PlannerBucketId $plannerBucketId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerBucketTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlan.md index 093355d11d5..c85fd490932 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlan.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlan -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlan ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanBucket.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanBucket.md index 093355d11d5..8c5cd966d3b 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanBucket.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanBucket.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerPlanBucket Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlanBucket -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerPlanBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanDetail.md index 093355d11d5..3ef38714af1 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanDetail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerPlanDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerPlanDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanTask.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanTask.md index 093355d11d5..6f9debbe198 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerPlanTask.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerPlanTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerPlanTask -PlannerPlanId $plannerPlanId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerPlanTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRoster.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRoster.md index 093355d11d5..76723fb0adc 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRoster.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRoster.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerRoster Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerRoster -PlannerRosterId $plannerRosterId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerRoster Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterMember.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterMember.md index 093355d11d5..d5d6dc0da25 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterMember.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterMember.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerRosterMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerRosterMember -PlannerRosterId $plannerRosterId -PlannerRosterMemberId $plannerRosterMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPlannerRosterMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerRosterMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerRosterMember -PlannerRosterId $plannerRosterId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerRosterMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterPlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterPlan.md index 093355d11d5..bf837a6aa71 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerRosterPlan.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerRosterPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerRosterPlan -PlannerRosterId $plannerRosterId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerRosterPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTask.md index 093355d11d5..b77b84390d9 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTask.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTask -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgPlannerTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTask ``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskAssignedToTaskBoardFormat.md index 093355d11d5..9c5f0fea3bc 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskBucketTaskBoardFormat.md index 093355d11d5..33d6a38f832 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerTaskBucketTaskBoardFormat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerTaskBucketTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskDetail.md index 093355d11d5..3723f3299b1 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskDetail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerTaskDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerTaskDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskProgressTaskBoardFormat.md index 093355d11d5..a8925d1e73b 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgPlannerTaskProgressTaskBoardFormat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgPlannerTaskProgressTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlanner.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlanner.md index 093355d11d5..5e49492767d 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlanner.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlanner.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlanner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlanner -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlanner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerFavoritePlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerFavoritePlan.md index 093355d11d5..97063d8c19f 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerFavoritePlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerFavoritePlan.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlannerFavoritePlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlannerFavoritePlan -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlannerFavoritePlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerPlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerPlan.md index 093355d11d5..9bdde25910d 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerPlan.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlannerPlan -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRecentPlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRecentPlan.md index 093355d11d5..2398a9a3038 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRecentPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRecentPlan.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlannerRecentPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlannerRecentPlan -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlannerRecentPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRosterPlan.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRosterPlan.md index 093355d11d5..0ebad116faa 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRosterPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerRosterPlan.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlannerRosterPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Get-MgUserPlannerRosterPlan -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlannerRosterPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerTask.md b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerTask.md index 093355d11d5..4a3c8888dca 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/Get-MgUserPlannerTask.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlannerTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +# A UPN can also be used as -UserId. +Get-MgUserPlannerTask -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerBucket.md index 093355d11d5..92e6b457ff3 100644 --- a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerBucket.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPlannerBucket Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Name = "Advertising" + PlanId = "xqQg5FS2LkCp935s-FIFm2QAFkHM" + OrderHint = " !" +} +New-MgPlannerBucket -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerPlan.md index 093355d11d5..9a3164fc9b2 100644 --- a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerPlan.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Container = @{ + Url = "https://graph.microsoft.com/beta/groups/ebf3b108-5234-4e22-b93d-656d7dae5874" + } + Title = "title-value" +} +New-MgPlannerPlan -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRoster.md b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRoster.md index 093355d11d5..acc8e003135 100644 --- a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRoster.md +++ b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRoster.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPlannerRoster Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + "@odata.type" = "#microsoft.graph.plannerRoster" +} +New-MgPlannerRoster -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPlannerRoster Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRosterMember.md b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRosterMember.md index 093355d11d5..ce8a1007695 100644 --- a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRosterMember.md +++ b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerRosterMember.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPlannerRosterMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + "@odata.type" = "#microsoft.graph.plannerRosterMember" + UserId = "String" +} +New-MgPlannerRosterMember -PlannerRosterId $plannerRosterId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPlannerRosterMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerTask.md index 093355d11d5..3cf42b6362b 100644 --- a/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/New-MgPlannerTask.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgPlannerTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + PlanId = "xqQg5FS2LkCp935s-FIFm2QAFkHM" + BucketId = "hsOf2dhOJkqyYYZEtdzDe2QAIUCR" + Title = "Update client list" + Assignments = @{ + "Fbab97d0-4932-4511-b675-204639209557" = @{ + "@odata.type" = "#microsoft.graph.plannerAssignment" + OrderHint = " !" + } + } +} +New-MgPlannerTask -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerBucket.md index 093355d11d5..ef48c848a6f 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerBucket.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPlannerBucket Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerBucket -PlannerBucketId $plannerBucketId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerPlan.md index 093355d11d5..68a7b2eea17 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerPlan.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerPlan -PlannerPlanId $plannerPlanId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRoster.md b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRoster.md index 093355d11d5..4f36a67076c 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRoster.md +++ b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRoster.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPlannerRoster Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerRoster -PlannerRosterId $plannerRosterId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPlannerRoster Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRosterMember.md b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRosterMember.md index 093355d11d5..38f6ddfff42 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRosterMember.md +++ b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerRosterMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPlannerRosterMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerRosterMember -PlannerRosterId $plannerRosterId -PlannerRosterMemberId $plannerRosterMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPlannerRosterMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerTask.md index 093355d11d5..bbeb881e87c 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/Remove-MgPlannerTask.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgPlannerTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +Remove-MgPlannerTask -PlannerTaskId $plannerTaskId-If-Match W/"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerBucket.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerBucket.md index 093355d11d5..3ed2845eac4 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerBucket.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerBucket.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerBucket Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Name = "Development" +} +Update-MgPlannerBucket -PlannerBucketId $plannerBucketId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerBucket Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlan.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlan.md index 093355d11d5..f85255752f9 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlan.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlan.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerPlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Title = "title-value" +} +Update-MgPlannerPlan -PlannerPlanId $plannerPlanId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerPlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlanDetail.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlanDetail.md index 093355d11d5..7e24eb55fd6 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlanDetail.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerPlanDetail.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerPlanDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + SharedWith = @{ + "6463a5ce-2119-4198-9f2a-628761df4a62" = $true + "D95e6152-f683-4d78-9ff5-67ad180fea4a" = $false + } + CategoryDescriptions = @{ + Category1 = "Indoors" + Category3 = $null + } +} +Update-MgPlannerPlanDetail -PlannerPlanId $plannerPlanId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerPlanDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTask.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTask.md index 093355d11d5..d6f22d3562a 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTask.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTask.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + Assignments = @{ + "Fbab97d0-4932-4511-b675-204639209557" = @{ + "@odata.type" = "#microsoft.graph.plannerAssignment" + OrderHint = "N9917 U2883!" + } + } + AppliedCategories = @{ + Category3 = $true + Category4 = $false + } +} +Update-MgPlannerTask -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskAssignedToTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskAssignedToTaskBoardFormat.md index 093355d11d5..59425a6026f 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskAssignedToTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskAssignedToTaskBoardFormat.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + OrderHintsByAssignee = @{ + "Aaa27244-1db4-476a-a5cb-004607466324" = "8566473P 957764Jk!" + } +} +Update-MgPlannerTaskAssignedToTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerTaskAssignedToTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskBucketTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskBucketTaskBoardFormat.md index 093355d11d5..b94eeb1278a 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskBucketTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskBucketTaskBoardFormat.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerTaskBucketTaskBoardFormat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + OrderHint = "A6673H Ejkl!" +} +Update-MgPlannerTaskBucketTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerTaskBucketTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskDetail.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskDetail.md index 093355d11d5..d0cc33af750 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskDetail.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskDetail.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerTaskDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + PreviewType = "noPreview" + References = @{ + "Http%3A//developer%2Emicrosoft%2Ecom" = @{ + "@odata.type" = "microsoft.graph.plannerExternalReference" + Alias = "Documentation" + PreviewPriority = " !" + Type = "Other" + } + "Https%3A//developer%2Emicrosoft%2Ecom/graph/graph-explorer" = @{ + "@odata.type" = "microsoft.graph.plannerExternalReference" + PreviewPriority = " !!" + } + "Http%3A//www%2Ebing%2Ecom" = $null + } + Checklist = @{ + "95e27074-6c4a-447a-aa24-9d718a0b86fa" = @{ + "@odata.type" = "microsoft.graph.plannerChecklistItem" + Title = "Update task details" + IsChecked = $true + } + "D280ed1a-9f6b-4f9c-a962-fb4d00dc50ff" = @{ + "@odata.type" = "microsoft.graph.plannerChecklistItem" + IsChecked = $true + } + "A93c93c5-10a6-4167-9551-8bafa09967a7" = $null + } +} +Update-MgPlannerTaskDetail -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerTaskDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskProgressTaskBoardFormat.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskProgressTaskBoardFormat.md index 093355d11d5..4a456eeb232 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskProgressTaskBoardFormat.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgPlannerTaskProgressTaskBoardFormat.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgPlannerTaskProgressTaskBoardFormat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + OrderHint = "A6673H Ejkl!" +} +Update-MgPlannerTaskProgressTaskBoardFormat -PlannerTaskId $plannerTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgPlannerTaskProgressTaskBoardFormat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Planner/Planner/examples/v1.0-beta/Update-MgUserPlanner.md b/src/Planner/Planner/examples/v1.0-beta/Update-MgUserPlanner.md index 093355d11d5..707592398f6 100644 --- a/src/Planner/Planner/examples/v1.0-beta/Update-MgUserPlanner.md +++ b/src/Planner/Planner/examples/v1.0-beta/Update-MgUserPlanner.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserPlanner Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Planner +$params = @{ + FavoritePlanReferences = @{ + Jd8S5gOaFk2S8aWCIAJz42QAAxtD = @{ + "@odata.type" = "#microsoft.graph.plannerFavoritePlanReference" + OrderHint = " !" + PlanTitle = "Next Release Discussion" + } + "7oTB5aMIAE2rVo-1N-L7RmQAGX2q" = $null + } + RecentPlanReferences = @{ + Jd8S5gOaFk2S8aWCIAJz42QAAxtD = @{ + "@odata.type" = "#microsoft.graph.plannerRecentPlanReference" + LastAccessedDateTime = "2018-01-02T22:49:46.155Z" + PlanTitle = "Next Release Discussion" + } + } +} +# A UPN can also be used as -UserId. +Update-MgUserPlanner -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserPlanner Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInCompromised.md b/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInCompromised.md index 093355d11d5..49e95865bf6 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInCompromised.md +++ b/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInCompromised.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgAuditLogSignInCompromised Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +$params = @{ + RequestIds = @( + "f01c6af6-6683-4a37-a945-0a925501eede" + "42bf60ac-d0cb-4206-aa5c-101884298f55" + "f09c8f14-8d8e-42cf-8a7e-732b0594e79b" + ) +} +Confirm-MgAuditLogSignInCompromised -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgAuditLogSignInCompromised Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInSafe.md b/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInSafe.md index 093355d11d5..fba07f30c52 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInSafe.md +++ b/src/Reports/Reports/examples/v1.0-beta/Confirm-MgAuditLogSignInSafe.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgAuditLogSignInSafe Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +$params = @{ + RequestIds = @( + "5a0c76d2-cb57-4ece-9bc1-c323178f116a" + "96609214-09ef-4f80-9d4a-ace5fceecaec" + "05020696-4eb8-45a3-918f-8f8bb7ad6015" + ) +} +Confirm-MgAuditLogSignInSafe -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgAuditLogSignInSafe Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogDirectoryAudit.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogDirectoryAudit.md index 093355d11d5..475994ea767 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogDirectoryAudit.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogDirectoryAudit.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAuditLogDirectoryAudit Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogDirectoryAudit -DirectoryAuditId $directoryAuditId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAuditLogDirectoryAudit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAuditLogDirectoryAudit Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogDirectoryAudit ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAuditLogDirectoryAudit Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogProvisioning.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogProvisioning.md index 093355d11d5..976e96bb3c1 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogProvisioning.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogProvisioning.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAuditLogProvisioning Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogProvisioning ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAuditLogProvisioning Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAuditLogProvisioning Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogProvisioning ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAuditLogProvisioning Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogSignIn.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogSignIn.md index 093355d11d5..c954c98fd2b 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogSignIn.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgAuditLogSignIn.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAuditLogSignIn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn -SignInId $signInId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAuditLogSignIn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgAuditLogSignIn Cmdlet +```powershell +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn -Filter "startsWith(appDisplayName,'Azure')" -Top 10 +``` +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgAuditLogSignIn Cmdlet +```powershell +Import-Module Microsoft.Graph.Reports +Get-MgAuditLogSignIn -Filter "(signInEventTypes/any(t: t ne 'interactiveUser'))" -Sort "createdDateTime DESC" -Top 10 +``` +This example shows how to use the Get-MgAuditLogSignIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportApplicationSignInDetailedSummary.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportApplicationSignInDetailedSummary.md index 093355d11d5..2afbc68fecb 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportApplicationSignInDetailedSummary.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportApplicationSignInDetailedSummary.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportApplicationSignInDetailedSummary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportApplicationSignInDetailedSummary -ApplicationSignInDetailedSummaryId $applicationSignInDetailedSummaryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgReportApplicationSignInDetailedSummary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgReportApplicationSignInDetailedSummary Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportApplicationSignInDetailedSummary ``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportApplicationSignInDetailedSummary Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationRepeatOffender.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationRepeatOffender.md index 093355d11d5..447f4bb3b9a 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationRepeatOffender.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationRepeatOffender.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportAttackSimulationRepeatOffender Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportAttackSimulationRepeatOffender ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportAttackSimulationRepeatOffender Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationTrainingUserCoverage.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationTrainingUserCoverage.md index 093355d11d5..a0943cc827b 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationTrainingUserCoverage.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationTrainingUserCoverage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportAttackSimulationTrainingUserCoverage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportAttackSimulationTrainingUserCoverage ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportAttackSimulationTrainingUserCoverage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationUserCoverage.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationUserCoverage.md index 093355d11d5..09893fada73 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationUserCoverage.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAttackSimulationUserCoverage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportAttackSimulationUserCoverage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportAttackSimulationUserCoverage ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportAttackSimulationUserCoverage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAuthenticationMethodUserRegistrationDetail.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAuthenticationMethodUserRegistrationDetail.md index 093355d11d5..0eeb85af508 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAuthenticationMethodUserRegistrationDetail.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportAuthenticationMethodUserRegistrationDetail.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportAuthenticationMethodUserRegistrationDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportAuthenticationMethodUserRegistrationDetail -UserRegistrationDetailsId $userRegistrationDetailsId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgReportAuthenticationMethodUserRegistrationDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgReportAuthenticationMethodUserRegistrationDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportAuthenticationMethodUserRegistrationDetail ``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportAuthenticationMethodUserRegistrationDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationCount.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationCount.md index 093355d11d5..06f81a6799b 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationCount.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationCount.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportCredentialUserRegistrationCount Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportCredentialUserRegistrationCount ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportCredentialUserRegistrationCount Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationDetail.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationDetail.md index 093355d11d5..0438409b3f8 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationDetail.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportCredentialUserRegistrationDetail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportCredentialUserRegistrationDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportCredentialUserRegistrationDetail ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportCredentialUserRegistrationDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationRepeatOffender.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationRepeatOffender.md index 093355d11d5..5b2b96ec8c1 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationRepeatOffender.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationRepeatOffender.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportSecurityAttackSimulationRepeatOffender Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportSecurityAttackSimulationRepeatOffender ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportSecurityAttackSimulationRepeatOffender Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationTrainingUserCoverage.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationTrainingUserCoverage.md index 093355d11d5..c9f38fde3e0 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationTrainingUserCoverage.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationTrainingUserCoverage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportSecurityAttackSimulationTrainingUserCoverage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportSecurityAttackSimulationTrainingUserCoverage ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportSecurityAttackSimulationTrainingUserCoverage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationUserCoverage.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationUserCoverage.md index 093355d11d5..405b6fa9ba2 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationUserCoverage.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportSecurityAttackSimulationUserCoverage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportSecurityAttackSimulationUserCoverage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportSecurityAttackSimulationUserCoverage ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportSecurityAttackSimulationUserCoverage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportUserCredentialUsageDetail.md b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportUserCredentialUsageDetail.md index 093355d11d5..be061d6f8c8 100644 --- a/src/Reports/Reports/examples/v1.0-beta/Get-MgReportUserCredentialUsageDetail.md +++ b/src/Reports/Reports/examples/v1.0-beta/Get-MgReportUserCredentialUsageDetail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgReportUserCredentialUsageDetail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Reports +Get-MgReportUserCredentialUsageDetail ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgReportUserCredentialUsageDetail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Get-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Get-MgSchemaExtension.md index 093355d11d5..463677ebfe3 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Get-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Get-MgSchemaExtension.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +Get-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +Get-MgSchemaExtension -Filter "id eq 'graphlearn_test'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/New-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/New-MgSchemaExtension.md index 093355d11d5..369d52f1ca4 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/New-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/New-MgSchemaExtension.md @@ -1,18 +1,85 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Id = "graphlearn_courses" + Description = "Graph Learn training courses extensions" + TargetTypes = @( + "Group" + ) + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + ) +} +New-MgSchemaExtension -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Id = "courses" + Description = "Graph Learn training courses extensions" + TargetTypes = @( + "Group" + ) + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + ) +} +New-MgSchemaExtension -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgSchemaExtension Cmdlet +```powershell +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Id = "courses" + Description = "Graph Learn training courses extensions" + TargetTypes = @( + "Group" + ) + Owner = "50897f70-a455-4adf-87bc-4cf17091d5ac" + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + ) +} +New-MgSchemaExtension -BodyParameter $params +``` +This example shows how to use the New-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Remove-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Remove-MgSchemaExtension.md index 093355d11d5..5fbf9f8da95 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Remove-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Remove-MgSchemaExtension.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +Remove-MgSchemaExtension -SchemaExtensionId $schemaExtensionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Update-MgSchemaExtension.md b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Update-MgSchemaExtension.md index 093355d11d5..961a8eb0e44 100644 --- a/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Update-MgSchemaExtension.md +++ b/src/SchemaExtensions/SchemaExtensions/examples/v1.0-beta/Update-MgSchemaExtension.md @@ -1,18 +1,56 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + @{ + Name = "courseSupervisors" + Type = "String" + } + ) +} +Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgSchemaExtension Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.SchemaExtensions +$params = @{ + Owner = "ef4cb9a8-97c3-4ca7-854b-5cb5ced376fa" + Properties = @( + @{ + Name = "courseId" + Type = "Integer" + } + @{ + Name = "courseName" + Type = "String" + } + @{ + Name = "courseType" + Type = "String" + } + @{ + Name = "courseSupervisors" + Type = "String" + } + ) +} +Update-MgSchemaExtension -SchemaExtensionId $schemaExtensionId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgSchemaExtension Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnection.md b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnection.md index 093355d11d5..1ed6e2eb7e7 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnection.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgExternalConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgExternalConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnection ``` - -{{ Add description here }} - +This example shows how to use the Get-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionItem.md index 093355d11d5..b3620a72024 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgExternalConnectionItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgExternalConnectionItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionOperation.md b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionOperation.md index 093355d11d5..8e09194b1fe 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionOperation.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgExternalConnectionOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionOperation -ExternalConnectionId $externalConnectionId -ConnectionOperationId $connectionOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgExternalConnectionOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionQuota.md b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionQuota.md index 093355d11d5..ca4d5436209 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionQuota.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionQuota.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgExternalConnectionQuota Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionQuota -ExternalConnectionId $externalConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgExternalConnectionQuota Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgExternalConnectionQuota Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionQuota -ExternalConnectionId $externalConnectionId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgExternalConnectionQuota Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionSchema.md b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionSchema.md index 093355d11d5..66d1dc5d0aa 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionSchema.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgExternalConnectionSchema.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgExternalConnectionSchema Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgExternalConnectionSchema -ExternalConnectionId $externalConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgExternalConnectionSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgSearchAcronym.md b/src/Search/Search/examples/v1.0-beta/Get-MgSearchAcronym.md index 093355d11d5..1d48c30740c 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgSearchAcronym.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgSearchAcronym.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSearchAcronym Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgSearchAcronym -AcronymId $acronymId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSearchAcronym Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSearchAcronym Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgSearchAcronym ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSearchAcronym Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgSearchBookmark.md b/src/Search/Search/examples/v1.0-beta/Get-MgSearchBookmark.md index 093355d11d5..3105a1ebdbd 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgSearchBookmark.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgSearchBookmark.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSearchBookmark Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgSearchBookmark -BookmarkId $bookmarkId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSearchBookmark Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSearchBookmark Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgSearchBookmark ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSearchBookmark Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Get-MgSearchQna.md b/src/Search/Search/examples/v1.0-beta/Get-MgSearchQna.md index 093355d11d5..6754bce0b1b 100644 --- a/src/Search/Search/examples/v1.0-beta/Get-MgSearchQna.md +++ b/src/Search/Search/examples/v1.0-beta/Get-MgSearchQna.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSearchQna Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgSearchQna -QnaId $qnaId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSearchQna Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSearchQna Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Get-MgSearchQna ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSearchQna Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Invoke-MgQuerySearch.md b/src/Search/Search/examples/v1.0-beta/Invoke-MgQuerySearch.md index 093355d11d5..577d2af3eb4 100644 --- a/src/Search/Search/examples/v1.0-beta/Invoke-MgQuerySearch.md +++ b/src/Search/Search/examples/v1.0-beta/Invoke-MgQuerySearch.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgQuerySearch Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Requests = @( + @{ + EntityTypes = @( + "externalItem" + ) + ContentSources = @( + "/external/connections/connectionfriendlyname" + ) + Query = @{ + QueryString = "contoso product" + } + From = 0 + Size = 25 + Fields = @( + "title" + "description" + ) + } + ) +} +Invoke-MgQuerySearch -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgQuerySearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/New-MgExternalConnection.md b/src/Search/Search/examples/v1.0-beta/New-MgExternalConnection.md index 093355d11d5..a0247c4c1d9 100644 --- a/src/Search/Search/examples/v1.0-beta/New-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0-beta/New-MgExternalConnection.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgExternalConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "contosohr" + Name = "Contoso HR" + Description = "Connection to index Contoso HR system" +} +New-MgExternalConnection -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroup.md index 093355d11d5..2128cf13651 100644 --- a/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroup.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgExternalConnectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "31bea3d537902000" + DisplayName = "Contoso Marketing" + Description = "The product marketing team" +} +New-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgExternalConnectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroupMember.md index 093355d11d5..d1f01a83306 100644 --- a/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0-beta/New-MgExternalConnectionGroupMember.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgExternalConnectionGroupMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "e811976d-83df-4cbd-8b9b-5215b18aa874" + Type = "user" +} +New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgExternalConnectionGroupMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "e5477431-1038-484e-bf69-1dfedb97a110" + Type = "externalGroup" +} +New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgExternalConnectionGroupMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Search +$params = @{ + Id = "1431b9c38ee647f6a" + Type = "externalGroup" +} +New-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -BodyParameter $params +``` +This example shows how to use the New-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/New-MgSearchAcronym.md b/src/Search/Search/examples/v1.0-beta/New-MgSearchAcronym.md index 093355d11d5..46f39e279e2 100644 --- a/src/Search/Search/examples/v1.0-beta/New-MgSearchAcronym.md +++ b/src/Search/Search/examples/v1.0-beta/New-MgSearchAcronym.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSearchAcronym Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + DisplayName = "DNN" + StandsFor = "Deep Neural Network" + Description = "A deep neural network is a neural network with a certain level of complexity, a neural network with more than two layers." + WebUrl = "http://microsoft.com/deep-neural-network" + State = "draft" +} +New-MgSearchAcronym -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSearchAcronym Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/New-MgSearchBookmark.md b/src/Search/Search/examples/v1.0-beta/New-MgSearchBookmark.md index 093355d11d5..82ed6e19145 100644 --- a/src/Search/Search/examples/v1.0-beta/New-MgSearchBookmark.md +++ b/src/Search/Search/examples/v1.0-beta/New-MgSearchBookmark.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSearchBookmark Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + DisplayName = "Contoso Install Site" + WebUrl = "http://www.contoso.com/" + Description = "Try or buy Contoso for Home or Business and view product information" + Keywords = @{ + Keywords = @( + "Contoso" + "install" + ) + ReservedKeywords = @( + "Contoso" + ) + MatchSimilarKeywords = $true + } + AvailabilityStartDateTime = $null + AvailabilityEndDateTime = $null + Platforms = @( + "windows" + ) + TargetedVariations = @( + @{ + LanguageTag = "es-es" + DisplayName = "Sitio de instalación Contoso" + Description = "Pruebe o compre Contoso hogar o negocios y vea la información del producto" + } + ) + State = "published" +} +New-MgSearchBookmark -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSearchBookmark Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/New-MgSearchQna.md b/src/Search/Search/examples/v1.0-beta/New-MgSearchQna.md index 093355d11d5..4eba9a577d8 100644 --- a/src/Search/Search/examples/v1.0-beta/New-MgSearchQna.md +++ b/src/Search/Search/examples/v1.0-beta/New-MgSearchQna.md @@ -1,18 +1,38 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSearchQna Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + DisplayName = "Global Country Holidays" + WebUrl = "http://www.contoso.com/" + Description = "The dates that Contoso offices will be closed to observe holidays. These dates may differ from the actual date of the holiday in cases where the holiday falls on a wee​kend.
2021 Dates Holiday
January 1, 2021 New Year's Day
January 18, 2021 Martin Luther King Day
February 15, 2021 Presidents Day
May 31, 2021 Memorial Day
July 5, 2021 Independence Day
September 6, 2021 Labor Day
November 25, 2021 - November 26, 2021 Thanksgiving Day and Day after Thanksgiving
December 23, 2021 - December 24, 2021 Christmas Eve and Christmas Day
" + Keywords = @{ + Keywords = @( + "new years day" + "martin luther king day" + "presidents day" + "memorial day" + "independence day" + "labor day" + "thanksgiving" + "christmas" + ) + ReservedKeywords = @( + "holidays" + "paid days off" + ) + MatchSimilarKeywords = $true + } + AvailabilityStartDateTime = [System.DateTime]::Parse("2020-09-21T20:01:37Z") + AvailabilityEndDateTime = [System.DateTime]::Parse("2021-12-31T20:01:37Z") + LanguageTags = @( + "en-us" + ) + Platforms = @( + "ios" + ) + State = "published" +} +New-MgSearchQna -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSearchQna Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnection.md b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnection.md index 093355d11d5..8cba0fa7fa1 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnection.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgExternalConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnection -ExternalConnectionId $externalConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroup.md b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroup.md index 093355d11d5..594a7d0bcee 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroup.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgExternalConnectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnectionGroup -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgExternalConnectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroupMember.md b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroupMember.md index 093355d11d5..c7b3afefb9e 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroupMember.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionGroupMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgExternalConnectionGroupMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnectionGroupMember -ExternalConnectionId $externalConnectionId -ExternalGroupId $externalGroupId -IdentityId $identityId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgExternalConnectionGroupMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionItem.md index 093355d11d5..42ba2ec9a58 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgExternalConnectionItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgExternalConnectionItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgExternalConnectionItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgSearchAcronym.md b/src/Search/Search/examples/v1.0-beta/Remove-MgSearchAcronym.md index 093355d11d5..b00df37968c 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgSearchAcronym.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgSearchAcronym.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSearchAcronym Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgSearchAcronym -AcronymId $acronymId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSearchAcronym Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgSearchBookmark.md b/src/Search/Search/examples/v1.0-beta/Remove-MgSearchBookmark.md index 093355d11d5..9c0e8e55549 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgSearchBookmark.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgSearchBookmark.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSearchBookmark Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgSearchBookmark -BookmarkId $bookmarkId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSearchBookmark Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Remove-MgSearchQna.md b/src/Search/Search/examples/v1.0-beta/Remove-MgSearchQna.md index 093355d11d5..c52b4cac53f 100644 --- a/src/Search/Search/examples/v1.0-beta/Remove-MgSearchQna.md +++ b/src/Search/Search/examples/v1.0-beta/Remove-MgSearchQna.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSearchQna Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +Remove-MgSearchQna -QnaId $qnaId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSearchQna Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnection.md b/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnection.md index 093355d11d5..95ba5a033aa 100644 --- a/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnection.md +++ b/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnection.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgExternalConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Name = "Contoso HR Service Tickets" + Description = "Connection to index HR service tickets" +} +Update-MgExternalConnection -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgExternalConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionItem.md b/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionItem.md index 093355d11d5..794b988a6e2 100644 --- a/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionItem.md +++ b/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionItem.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgExternalConnectionItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Acl = @( + @{ + Type = "everyone" + Value = "67a141d8-cf4e-4528-ba07-bed21bfacd2d" + AccessType = "grant" + } + ) +} +Update-MgExternalConnectionItem -ExternalConnectionId $externalConnectionId -ExternalItemId $externalItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgExternalConnectionItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionSchema.md b/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionSchema.md index 093355d11d5..ac32262394b 100644 --- a/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionSchema.md +++ b/src/Search/Search/examples/v1.0-beta/Update-MgExternalConnectionSchema.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgExternalConnectionSchema Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + BaseType = "microsoft.graph.externalItem" + Properties = @( + @{ + Name = "ticketTitle" + Type = "string" + IsSearchable = "true" + IsRetrievable = "true" + Labels = @( + "title" + ) + } + @{ + Name = "priority" + Type = "string" + IsQueryable = "true" + IsRetrievable = "true" + IsSearchable = "false" + } + @{ + Name = "assignee" + Type = "string" + IsRetrievable = "true" + } + ) +} +Update-MgExternalConnectionSchema -ExternalConnectionId $externalConnectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgExternalConnectionSchema Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Update-MgSearchAcronym.md b/src/Search/Search/examples/v1.0-beta/Update-MgSearchAcronym.md index 093355d11d5..2c3df746f6f 100644 --- a/src/Search/Search/examples/v1.0-beta/Update-MgSearchAcronym.md +++ b/src/Search/Search/examples/v1.0-beta/Update-MgSearchAcronym.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSearchAcronym Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Description = "A deep neural network is a neural network with a certain level of complexity, a neural network with more than two layers." +} +Update-MgSearchAcronym -AcronymId $acronymId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSearchAcronym Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Search/Search/examples/v1.0-beta/Update-MgSearchBookmark.md b/src/Search/Search/examples/v1.0-beta/Update-MgSearchBookmark.md index 093355d11d5..f7aec2cdd2f 100644 --- a/src/Search/Search/examples/v1.0-beta/Update-MgSearchBookmark.md +++ b/src/Search/Search/examples/v1.0-beta/Update-MgSearchBookmark.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSearchBookmark Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Search +$params = @{ + Description = "Book a fancy vacation in Tuscany or browse museums in Florence." +} +Update-MgSearchBookmark -BookmarkId $bookmarkId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSearchBookmark Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 093355d11d5..1c44fc280a2 100644 --- a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 093355d11d5..e3baa654bbe 100644 --- a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index 093355d11d5..b6e1f76e52c 100644 --- a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + TagsToAdd = @( + @{ + Id = "d3d99dc704a74801b792b3e1e722aa0d" + } + ) +} +Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index 093355d11d5..aa7cfa45bc7 100644 --- a/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/Security/examples/v1.0-beta/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Search = @{ + Id = "c17e91d6-6bc0-4ecb-b388-269ea3d4ffb7" + } + AdditionalDataOptions = "linkedFiles" +} +Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Clear-MgSecurityCaseEdiscoveryCaseSearchData.md b/src/Security/Security/examples/v1.0-beta/Clear-MgSecurityCaseEdiscoveryCaseSearchData.md index 093355d11d5..cfa5a4dd470 100644 --- a/src/Security/Security/examples/v1.0-beta/Clear-MgSecurityCaseEdiscoveryCaseSearchData.md +++ b/src/Security/Security/examples/v1.0-beta/Clear-MgSecurityCaseEdiscoveryCaseSearchData.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Clear-MgSecurityCaseEdiscoveryCaseSearchData Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Clear-MgSecurityCaseEdiscoveryCaseSearchData -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Clear-MgSecurityCaseEdiscoveryCaseSearchData Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Close-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0-beta/Close-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..5ffb1c9ec9a 100644 --- a/src/Security/Security/examples/v1.0-beta/Close-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0-beta/Close-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Close-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Close-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Close-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSet.md index 093355d11d5..4bf6f5dde71 100644 --- a/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Export-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + OutputName = "Export via API" + Description = "Export for the Contoso investigation" + ExportOptions = "originalFiles,fileInfo,tags" + ExportStructure = "directory" +} +Export-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Export-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..230a23fe31d 100644 --- a/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0-beta/Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + OutputName = "Export reviewset query via API" + Description = "Export for the Contoso investigation 2" + ExportOptions = "originalFiles,fileInfo,tags" + ExportStructure = "directory" +} +Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAction.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAction.md index 093355d11d5..e30435a88e0 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAction.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAction.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityAction Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAction -SecurityActionId $securityActionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityAction Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAction ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAlert.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAlert.md index 093355d11d5..e6e1a8cfc20 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAlert.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityAlert Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAlert -AlertId $alertId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityAlert Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAlert ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulation.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulation.md index 093355d11d5..c4131cc9f58 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulation.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityAttackSimulation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAttackSimulation ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityAttackSimulation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomation.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomation.md index 093355d11d5..d3bb44ff65c 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomation.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityAttackSimulationAutomation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAttackSimulationAutomation ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityAttackSimulationAutomation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomationRun.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomationRun.md index 093355d11d5..e0c972e9e42 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomationRun.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityAttackSimulationAutomationRun.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityAttackSimulationAutomationRun Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityAttackSimulationAutomationRun -SimulationAutomationId $simulationAutomationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityAttackSimulationAutomationRun Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..3d9541dd0b2 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCase ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..343b7051d3a 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md index 093355d11d5..9c5674f5b13 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..1a1b6b711e3 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..69b31909c64 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 093355d11d5..14526042ebf 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseLegalHold.md index 093355d11d5..1a251a1c54b 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..b328e5490b3 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -ExpandProperty "dataSource" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet +```powershell +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -ExpandProperty "dataSource" +``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseOperation.md index 093355d11d5..c830ac563e4 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId -CaseOperationId $caseOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet +```powershell +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseOperation -EdiscoveryCaseId $ediscoveryCaseId -OutFile $outFileId +``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md index 093355d11d5..7533ab2d84c 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetFile.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetFile.md index 093355d11d5..dffd36c82a5 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetFile.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetFile.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSetFile -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryFileId $ediscoveryFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSetFile -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -Top 5 ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..6b2dba5fe8e 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..bea4e904d74 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 093355d11d5..3ada2fa7fdd 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md index 093355d11d5..eb092a89f86 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md index 093355d11d5..3aa80af3e2d 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md index 093355d11d5..96a866a7172 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSetting.md index 093355d11d5..0d925d1c95b 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseTag.md index 093355d11d5..b1eb6d480ef 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet +```powershell +Import-Module Microsoft.Graph.Security +Get-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId +``` +This example shows how to use the Get-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityIncident.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityIncident.md index 093355d11d5..873ecb55e8b 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityIncident.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityIncident.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityIncident Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityIncident -IncidentId $incidentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityIncident Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityIncident Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityIncident ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityIncident Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSecurityIncident Cmdlet +```powershell +Import-Module Microsoft.Graph.Security +Get-MgSecurityIncident -ExpandProperty "alerts" +``` +This example shows how to use the Get-MgSecurityIncident Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityLabelRetentionLabel.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityLabelRetentionLabel.md index 093355d11d5..5876d2aaa17 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityLabelRetentionLabel.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityLabelRetentionLabel.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityLabelRetentionLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityLabelRetentionLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityLabelRetentionLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityLabelRetentionLabel ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityLabelRetentionLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScore.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScore.md index 093355d11d5..7e673290032 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScore.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScore.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecuritySecureScore Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecuritySecureScore -Top 1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecuritySecureScore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScoreControlProfile.md index 093355d11d5..1bf9f9e85a2 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecuritySecureScoreControlProfile.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecuritySecureScoreControlProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecuritySecureScoreControlProfile ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecuritySecureScoreControlProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreat.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreat.md index 093355d11d5..b3b5e9eca8c 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreat.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreat.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityThreatSubmissionEmailThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionEmailThreat -EmailThreatSubmissionId $emailThreatSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityThreatSubmissionEmailThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityThreatSubmissionEmailThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionEmailThreat ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityThreatSubmissionEmailThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 093355d11d5..081f8e6e4c2 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy -EmailThreatSubmissionPolicyId $emailThreatSubmissionPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionFileThreat.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionFileThreat.md index 093355d11d5..d8cab2ad72d 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionFileThreat.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionFileThreat.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityThreatSubmissionFileThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionFileThreat -FileThreatSubmissionId $fileThreatSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityThreatSubmissionFileThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityThreatSubmissionFileThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionFileThreat ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityThreatSubmissionFileThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionUrlThreat.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionUrlThreat.md index 093355d11d5..fba4566bc9c 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionUrlThreat.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityThreatSubmissionUrlThreat.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityThreatSubmissionUrlThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionUrlThreat -UrlThreatSubmissionId $urlThreatSubmissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityThreatSubmissionUrlThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityThreatSubmissionUrlThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityThreatSubmissionUrlThreat ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityThreatSubmissionUrlThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTiIndicator.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTiIndicator.md index 093355d11d5..0e59373489d 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTiIndicator.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTiIndicator.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityTiIndicator -TiIndicatorId $tiIndicatorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityTiIndicator ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerRetentionEvent.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerRetentionEvent.md index 093355d11d5..77e4b161c10 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerRetentionEvent.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerRetentionEvent.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityTriggerRetentionEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityTriggerRetentionEvent -RetentionEventId $retentionEventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityTriggerRetentionEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityTriggerRetentionEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityTriggerRetentionEvent ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityTriggerRetentionEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerTypeRetentionEventType.md b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerTypeRetentionEventType.md index 093355d11d5..9b5401c762f 100644 --- a/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerTypeRetentionEventType.md +++ b/src/Security/Security/examples/v1.0-beta/Get-MgSecurityTriggerTypeRetentionEventType.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSecurityTriggerTypeRetentionEventType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityTriggerTypeRetentionEventType -RetentionEventTypeId $retentionEventTypeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSecurityTriggerTypeRetentionEventType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSecurityTriggerTypeRetentionEventType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Get-MgSecurityTriggerTypeRetentionEventType ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSecurityTriggerTypeRetentionEventType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0-beta/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..ba8abb2fd68 100644 --- a/src/Security/Security/examples/v1.0-beta/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0-beta/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Initialize-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Initialize-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Initialize-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/Security/examples/v1.0-beta/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md index 093355d11d5..0507d216070 100644 --- a/src/Security/Security/examples/v1.0-beta/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/Security/examples/v1.0-beta/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/Security/examples/v1.0-beta/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index 093355d11d5..13dbba9cdee 100644 --- a/src/Security/Security/examples/v1.0-beta/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/Security/examples/v1.0-beta/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Invoke-MgReopenSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0-beta/Invoke-MgReopenSecurityCaseEdiscoveryCase.md index 093355d11d5..2e23f482516 100644 --- a/src/Security/Security/examples/v1.0-beta/Invoke-MgReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0-beta/Invoke-MgReopenSecurityCaseEdiscoveryCase.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReopenSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Invoke-MgReopenSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReopenSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityAction.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityAction.md index 093355d11d5..a7c0d7f220a 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityAction.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityAction.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityAction Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Name = "BlockIp" + ActionReason = "Test" + Parameters = @( + @{ + Name = "IP" + Value = "1.2.3.4" + } + ) + VendorInformation = @{ + Provider = "Windows Defender ATP" + Vendor = "Microsoft" + } +} +New-MgSecurityAction -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..8d48d254019 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "CONTOSO LITIGATION-005" + Description = "Project Bazooka" + ExternalId = "324516" +} +New-MgSecurityCaseEdiscoveryCase -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..ded74992aeb 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Email = "AdeleV@contoso.com" +} +New-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d5..d65cb5ded4d 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Site = @{ + WebUrl = "https://m365x809305.sharepoint.com/sites/Retail" + } +} +New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d5..f92b550b31a 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Group = @{ + Mail = "SOCTeam@M365x809305.onmicrosoft.com" + } + IncludedSources = "mailbox, site" +} +New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" + IncludedSources = "mailbox" +} +New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet +```powershell +Import-Module Microsoft.Graph.Security +$params = @{ + "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/93f90172-fe05-43ea-83cf-ff785a40d610" + IncludedSources = "mailbox" +} +New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -BodyParameter $params +``` +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHold.md index 093355d11d5..222bbccaa63 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Displayname = "My legalHold with sources" + Description = "Created from Graph API" + ContentQuery = "Bazooka" + "UserSources@odata.bind" = @( + @{ + "@odata.type" = "microsoft.graph.security.userSource" + Email = "SalesTeam@M365x809305.OnMicrosoft.com" + } + ) + "SiteSources@odata.bind" = @( + @{ + "@odata.type" = "microsoft.graph.security.siteSource" + } + ) +} +New-MgSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d5..7799286fae4 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Site = @{ + WebUrl = "https://m365x809305.sharepoint.com/sites/Retail" + } +} +New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Site = @{ + WebUrl = "https://m365x809305.sharepoint.com/sites/Retail" + } +} +New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource.md index 093355d11d5..d47bf9badc1 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Email = "admin@M365x809305.onmicrosoft.com" + IncludedSources = "mailbox, site" +} +New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Email = "admin@M365x809305.onmicrosoft.com" + IncludedSources = "mailbox, site" +} +New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..a8e4d85bf21 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DataSource = @{ + "@odata.type" = "microsoft.graph.security.siteSource" + } +} +New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSet.md index 093355d11d5..3e35fb4657f 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My review set 2" +} +New-MgSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseReviewSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..881672dd475 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My Query 1" + ContentQuery = "(Author="edison")" +} +New-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..74287602174 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My search 2" + Description = "My first search" + ContentQuery = "(Author="edison")" + "CustodianSources@odata.bind" = @( + "https://graph.microsoft.com/beta/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/custodians/0053a61a3b6c42738f7606791716a22a/userSources/43434642-3137-3138-3432-374142313639" + "https://graph.microsoft.com/beta/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/custodians/0053a61a3b6c42738f7606791716a22a/siteSources/169718e3-a8df-449d-bef4-ee09fe1ddc5d" + "https://graph.microsoft.com/beta/security/cases/ediscoveryCases('b0073e4e-4184-41c6-9eb7-8c8cc3e2288b')/custodians('0053a61a3b6c42738f7606791716a22a')/unifiedGroupSources('32e14fa4-3106-4bd2-a245-34bf0c718a7e')" + ) + "NoncustodialSources@odata.bind" = @( + "https://graph.microsoft.com/beta/security/cases/ediscoveryCases/b0073e4e-4184-41c6-9eb7-8c8cc3e2288b/noncustodialdatasources/35393639323133394345384344303043" + ) +} +New-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityLabelRetentionLabel.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityLabelRetentionLabel.md index 093355d11d5..56a10fd08e9 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityLabelRetentionLabel.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityLabelRetentionLabel.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityLabelRetentionLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.security.retentionLabel" + DisplayName = "String" + BehaviorDuringRetentionPeriod = "String" + ActionAfterRetentionPeriod = "String" + RetentionTrigger = "String" + RetentionDuration = @{ + "@odata.type" = "microsoft.graph.security.retentionDuration" + } + IsInUse = "Boolean" + DescriptionForAdmins = "String" + DescriptionForUsers = "String" + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + LabelToBeApplied = "String" + DefaultRecordBehavior = "String" +} +New-MgSecurityLabelRetentionLabel -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityLabelRetentionLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreat.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreat.md index 093355d11d5..f74d47dae03 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreat.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreat.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityThreatSubmissionEmailThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.emailUrlThreatSubmission" + Category = "spam" + RecipientEmailAddress = "tifc@a830edad9050849EQTPWBJZXODQ.onmicrosoft.com" + MessageUrl = "https://graph.microsoft.com/beta/users/c52ce8db-3e4b-4181-93c4-7d6b6bffaf60/messages/AAMkADU3MWUxOTU0LWNlOTEt=" +} +New-MgSecurityThreatSubmissionEmailThreat -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityThreatSubmissionEmailThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 093355d11d5..d8178774454 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + IsReportToMicrosoftEnabled = $true +} +New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionUrlThreat.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionUrlThreat.md index 093355d11d5..cefd1e280f7 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionUrlThreat.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityThreatSubmissionUrlThreat.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityThreatSubmissionUrlThreat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.urlThreatSubmission" + Category = "phishing" + WebUrl = "http://phishing.contoso.com" +} +New-MgSecurityThreatSubmissionUrlThreat -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityThreatSubmissionUrlThreat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityTiIndicator.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityTiIndicator.md index 093355d11d5..82f5bb5fd0c 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityTiIndicator.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityTiIndicator.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Action = "alert" + ActivityGroupNames = @( + ) + Confidence = 0 + Description = "This is a canary indicator for demo purpose. Take no action on any observables set in this indicator." + ExpirationDateTime = [System.DateTime]::Parse("2019-03-01T21:43:37.5031462+00:00") + ExternalId = "Test--8586509942679764298MS501" + FileHashType = "sha256" + FileHashValue = "aa64428647b57bf51524d1756b2ed746e5a3f31b67cf7fe5b5d8a9daf07ca313" + KillChain = @( + ) + MalwareFamilyNames = @( + ) + Severity = 0 + Tags = @( + ) + TargetProduct = "Azure Sentinel" + ThreatType = "WatchList" + TlpLevel = "green" +} +New-MgSecurityTiIndicator -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerRetentionEvent.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerRetentionEvent.md index 093355d11d5..40e29839a27 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerRetentionEvent.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerRetentionEvent.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityTriggerRetentionEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.security.retentionEvent" + DisplayName = "String" + Description = "String" + EventQueries = @( + @{ + "@odata.type" = "microsoft.graph.security.eventQueries" + } + ) + EventTriggerDateTime = [System.DateTime]::Parse("String (timestamp)") + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + EventPropagationResults = @( + @{ + "@odata.type" = "microsoft.graph.security.eventPropagationResult" + } + ) + EventStatus = @{ + "@odata.type" = "microsoft.graph.security.retentionEventStatus" + } + LastStatusUpdateDateTime = [System.DateTime]::Parse("String (timestamp)") +} +New-MgSecurityTriggerRetentionEvent -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityTriggerRetentionEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerTypeRetentionEventType.md b/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerTypeRetentionEventType.md index 093355d11d5..045aa3b8b72 100644 --- a/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerTypeRetentionEventType.md +++ b/src/Security/Security/examples/v1.0-beta/New-MgSecurityTriggerTypeRetentionEventType.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSecurityTriggerTypeRetentionEventType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.security.retentionEventType" + DisplayName = "String" + Description = "String" + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } +} +New-MgSecurityTriggerTypeRetentionEventType -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSecurityTriggerTypeRetentionEventType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md index 093355d11d5..db8b130356a 100644 --- a/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Publish-MgSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d5..cb8353eab9a 100644 --- a/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/Security/examples/v1.0-beta/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..4f94cc69fb8 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 093355d11d5..ef2a5bd0316 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseLegalHold.md index 093355d11d5..4c738f756d6 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseLegalHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 093355d11d5..ca20510ea87 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..1cd6012b1b4 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..bc15c9d5bc1 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseTag.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseTag.md index 093355d11d5..25b221923d5 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseTag.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityCaseEdiscoveryCaseTag.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityCaseEdiscoveryCaseTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewTagId $ediscoveryReviewTagId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityCaseEdiscoveryCaseTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityLabelRetentionLabel.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityLabelRetentionLabel.md index 093355d11d5..f4d099a449d 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityLabelRetentionLabel.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityLabelRetentionLabel.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityLabelRetentionLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityLabelRetentionLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicator.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicator.md index 093355d11d5..7d1eea806c1 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicator.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicator.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityTiIndicator -TiIndicatorId $tiIndicatorId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorByExternalId.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorByExternalId.md index 093355d11d5..4d94ebfbb01 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorByExternalId.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorByExternalId.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityTiIndicatorByExternalId Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Value = @( + "externalId-value1" + "externalId-value2" + ) +} +Remove-MgSecurityTiIndicatorByExternalId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityTiIndicatorByExternalId Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorMultiple.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorMultiple.md index 093355d11d5..0b74eded45b 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorMultiple.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTiIndicatorMultiple.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityTiIndicatorMultiple Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Value = @( + "id-value1" + "id-value2" + ) +} +Remove-MgSecurityTiIndicatorMultiple -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityTiIndicatorMultiple Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerRetentionEvent.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerRetentionEvent.md index 093355d11d5..3824593d785 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerRetentionEvent.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerRetentionEvent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityTriggerRetentionEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityTriggerRetentionEvent -RetentionEventId $retentionEventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityTriggerRetentionEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerTypeRetentionEventType.md b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerTypeRetentionEventType.md index 093355d11d5..a3f8837d76e 100644 --- a/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerTypeRetentionEventType.md +++ b/src/Security/Security/examples/v1.0-beta/Remove-MgSecurityTriggerTypeRetentionEventType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSecurityTriggerTypeRetentionEventType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Remove-MgSecurityTriggerTypeRetentionEventType -RetentionEventTypeId $retentionEventTypeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSecurityTriggerTypeRetentionEventType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/Security/examples/v1.0-beta/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md index 093355d11d5..5a829645e03 100644 --- a/src/Security/Security/examples/v1.0-beta/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/Security/examples/v1.0-beta/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId ``` - -{{ Add description here }} - +This example shows how to use the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0-beta/Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..7e790f1a0dd 100644 --- a/src/Security/Security/examples/v1.0-beta/Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0-beta/Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Stop-MgSecurityAction.md b/src/Security/Security/examples/v1.0-beta/Stop-MgSecurityAction.md index 093355d11d5..be7975a81b6 100644 --- a/src/Security/Security/examples/v1.0-beta/Stop-MgSecurityAction.md +++ b/src/Security/Security/examples/v1.0-beta/Stop-MgSecurityAction.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgSecurityAction Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Stop-MgSecurityAction -SecurityActionId $securityActionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgSecurityAction Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Submit-MgSecurityTiIndicator.md b/src/Security/Security/examples/v1.0-beta/Submit-MgSecurityTiIndicator.md index 093355d11d5..1b374013b65 100644 --- a/src/Security/Security/examples/v1.0-beta/Submit-MgSecurityTiIndicator.md +++ b/src/Security/Security/examples/v1.0-beta/Submit-MgSecurityTiIndicator.md @@ -1,18 +1,51 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Submit-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Value = @( + @{ + ActivityGroupNames = @( + ) + Confidence = 0 + Description = "This is a canary indicator for demo purpose. Take no action on any observables set in this indicator." + ExpirationDateTime = [System.DateTime]::Parse("2019-03-01T21:44:03.1668987+00:00") + ExternalId = "Test--8586509942423126760MS164-0" + FileHashType = "sha256" + FileHashValue = "b555c45c5b1b01304217e72118d6ca1b14b7013644a078273cea27bbdc1cf9d6" + KillChain = @( + ) + MalwareFamilyNames = @( + ) + Severity = 0 + Tags = @( + ) + TargetProduct = "Azure Sentinel" + ThreatType = "WatchList" + TlpLevel = "green" + } + @{ + ActivityGroupNames = @( + ) + Confidence = 0 + Description = "This is a canary indicator for demo purpose. Take no action on any observables set in this indicator." + ExpirationDateTime = [System.DateTime]::Parse("2019-03-01T21:44:03.1748779+00:00") + ExternalId = "Test--8586509942423126760MS164-1" + FileHashType = "sha256" + FileHashValue = "1796b433950990b28d6a22456c9d2b58ced1bdfcdf5f16f7e39d6b9bdca4213b" + KillChain = @( + ) + MalwareFamilyNames = @( + ) + Severity = 0 + Tags = @( + ) + TargetProduct = "Azure Sentinel" + ThreatType = "WatchList" + TlpLevel = "green" + } + ) +} +Submit-MgSecurityTiIndicator -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Submit-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlert.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlert.md index 093355d11d5..f96730d858b 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlert.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlert.md @@ -1,18 +1,46 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityAlert Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + AssignedTo = "String" + ClosedDateTime = [System.DateTime]::Parse("String (timestamp)") + Comments = @( + "String" + ) + Feedback = "@odata.type: microsoft.graph.alertFeedback" + Status = "@odata.type: microsoft.graph.alertStatus" + Tags = @( + "String" + ) + VendorInformation = @{ + Provider = "String" + Vendor = "String" + } +} +Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgSecurityAlert Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + AssignedTo = "String" + ClosedDateTime = [System.DateTime]::Parse("String (timestamp)") + Comments = @( + "String" + ) + Feedback = "@odata.type: microsoft.graph.alertFeedback" + Status = "@odata.type: microsoft.graph.alertStatus" + Tags = @( + "String" + ) + VendorInformation = @{ + Provider = "String" + Vendor = "String" + } +} +Update-MgSecurityAlert -AlertId $alertId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityAlert Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlertMultiple.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlertMultiple.md index 093355d11d5..c49d69d61c4 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlertMultiple.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityAlertMultiple.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityAlertMultiple Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Value = @( + @{ + AssignedTo = "String" + ClosedDateTime = [System.DateTime]::Parse("String (timestamp)") + Comments = @( + "String" + ) + Feedback = @{ + "@odata.type" = "microsoft.graph.alertFeedback" + } + Id = "String (identifier)" + Status = @{ + "@odata.type" = "microsoft.graph.alertStatus" + } + Tags = @( + "String" + ) + VendorInformation = @{ + Provider = "String" + Vendor = "String" + } + } + ) +} +Update-MgSecurityAlertMultiple -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityAlertMultiple Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCase.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCase.md index 093355d11d5..8b8e49cf037 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCase.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCase Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My Case 1 - Renamed" + Description = "Updated description" +} +Update-MgSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityCaseEdiscoveryCase Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md index 093355d11d5..a0d1c1d1518 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Update-MgSecurityCaseEdiscoveryCaseCustodianIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index 093355d11d5..25f9a7f767b 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md index 093355d11d5..a145c5f8494 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "My Query 1 (update)" + ContentQuery = "(Author="edisons")" +} +Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSearch.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSearch.md index 093355d11d5..0f357fb2d80 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSearch.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSearch.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseSearch Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + DisplayName = "Teams search" +} +Update-MgSecurityCaseEdiscoveryCaseSearch -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseSearch Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSetting.md index 093355d11d5..6bb7f565180 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.security.ediscoveryCaseSettings" + RedundancyDetection = @{ + "@odata.type" = "microsoft.graph.security.redundancyDetectionSettings" + } + TopicModeling = @{ + "@odata.type" = "microsoft.graph.security.topicModelingSettings" + } + Ocr = @{ + "@odata.type" = "microsoft.graph.security.ocrSettings" + } +} +Update-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityCaseEdiscoveryCaseSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityIncident.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityIncident.md index 093355d11d5..8babf6aa539 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityIncident.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityIncident.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityIncident Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Classification = "TruePositive" + Determination = "MultiStagedAttack" + Tags = @( + "Demo" + ) +} +Update-MgSecurityIncident -IncidentId $incidentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityIncident Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityLabelRetentionLabel.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityLabelRetentionLabel.md index 093355d11d5..aa9c623b4c2 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityLabelRetentionLabel.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityLabelRetentionLabel.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityLabelRetentionLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + "@odata.type" = "#microsoft.graph.security.retentionLabel" + DisplayName = "String" + BehaviorDuringRetentionPeriod = "String" + ActionAfterRetentionPeriod = "String" + RetentionTrigger = "String" + RetentionDuration = @{ + "@odata.type" = "microsoft.graph.security.retentionDuration" + } + IsInUse = "Boolean" + DescriptionForAdmins = "String" + DescriptionForUsers = "String" + CreatedBy = @{ + "@odata.type" = "microsoft.graph.identitySet" + } + LabelToBeApplied = "String" + DefaultRecordBehavior = "String" +} +Update-MgSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityLabelRetentionLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecuritySecureScoreControlProfile.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecuritySecureScoreControlProfile.md index 093355d11d5..418183cb24c 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecuritySecureScoreControlProfile.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecuritySecureScoreControlProfile Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + ControlStateUpdates = "controlStateUpdates-value" +} +Update-MgSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecuritySecureScoreControlProfile Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 093355d11d5..571ae9dd87e 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + IsReportToMicrosoftEnabled = $false +} +Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy -EmailThreatSubmissionPolicyId $emailThreatSubmissionPolicyId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicator.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicator.md index 093355d11d5..9be8d84b59b 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicator.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicator.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Description = "description-updated" +} +Update-MgSecurityTiIndicator -TiIndicatorId $tiIndicatorId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgSecurityTiIndicator Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + AdditionalInformation = "additionalInformation-after-update" + Confidence = 42 + Description = "description-after-update" +} +Update-MgSecurityTiIndicator -TiIndicatorId $tiIndicatorId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityTiIndicator Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicatorMultiple.md b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicatorMultiple.md index 093355d11d5..6ccb44d854a 100644 --- a/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicatorMultiple.md +++ b/src/Security/Security/examples/v1.0-beta/Update-MgSecurityTiIndicatorMultiple.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSecurityTiIndicatorMultiple Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Security +$params = @{ + Value = @( + @{ + Id = "c6fb948b-89c5-3bba-a2cd-a9d9a1e430e4" + AdditionalInformation = "mytest" + } + @{ + Id = "e58c072b-c9bb-a5c4-34ce-eb69af44fb1e" + AdditionalInformation = "test again" + } + ) +} +Update-MgSecurityTiIndicatorMultiple -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSecurityTiIndicatorMultiple Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopy.md b/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopy.md index 093355d11d5..039fbf3246d 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopy.md +++ b/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopy.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgSiteListContentTypeCopy Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentType = "https://graph.microsoft.com/beta/sites/id/contentTypes/0x0101" +} +Add-MgSiteListContentTypeCopy -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgSiteListContentTypeCopy Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopyFromContentTypeHub.md b/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopyFromContentTypeHub.md index 093355d11d5..a6e2b711f33 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopyFromContentTypeHub.md +++ b/src/Sites/Sites/examples/v1.0-beta/Add-MgSiteListContentTypeCopyFromContentTypeHub.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentTypeId = "String" +} +Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentTypeId = "String" +} +Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +$params = @{ + ContentTypeId = "0x0101" +} +Add-MgSiteListContentTypeCopyFromContentTypeHub -SiteId $siteId -ListId $listId -BodyParameter $params +``` +This example shows how to use the Add-MgSiteListContentTypeCopyFromContentTypeHub Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Copy-MgSiteContentTypeToDefaultContentLocation.md b/src/Sites/Sites/examples/v1.0-beta/Copy-MgSiteContentTypeToDefaultContentLocation.md index 093355d11d5..89c2c33ead5 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Copy-MgSiteContentTypeToDefaultContentLocation.md +++ b/src/Sites/Sites/examples/v1.0-beta/Copy-MgSiteContentTypeToDefaultContentLocation.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgSiteContentTypeToDefaultContentLocation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + SourceFile = @{ + SharepointIds = @{ + ListId = "e2ecf63b-b0fd-48f7-a54a-d8c15479e3b0" + ListItemId = "2" + } + } + DestinationFileName = "newname.txt" +} +Copy-MgSiteContentTypeToDefaultContentLocation -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgSiteContentTypeToDefaultContentLocation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSite.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSite.md index 093355d11d5..bece80c7c30 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSite.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSite.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSite ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSite -SiteId $siteId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSite Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSite -Search "{query}" -OutFile $outFileId +``` +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgSite Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSite -Search "{query}" +``` +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgSite Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSite -Property "siteCollection,webUrl" -Filter "siteCollection/root ne null" +``` +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgSite Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSite -OutFile $outFileId +``` +This example shows how to use the Get-MgSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteColumn.md index 093355d11d5..8aa3eaeb358 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteColumn.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteColumn -SiteId $siteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentType.md index 093355d11d5..19ac6c764d5 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentType.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentType -SiteId $siteId -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSiteContentType Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentType -SiteId $siteId +``` +This example shows how to use the Get-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentTypeColumn.md index 093355d11d5..5fac8bfbf93 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteContentTypeColumn.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteContentTypeColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteContentTypeColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDefaultDrive.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDefaultDrive.md index 093355d11d5..c7215430c65 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDefaultDrive.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDefaultDrive.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteDefaultDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteDefaultDrive -SiteId $siteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteDefaultDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDrive.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDrive.md index 093355d11d5..d866195ee41 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDrive.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteDrive.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteDrive Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteDrive -SiteId $siteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteDrive Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteList.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteList.md index 093355d11d5..9fdbb2a23ad 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteList.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSiteList Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgSiteList Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId -Property "name,lastModifiedDateTime" -ExpandProperty "columns(select=name,description),items)" +``` +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgSiteList Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgSiteList Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteList -SiteId $siteId -ListId $listId +``` +This example shows how to use the Get-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListColumn.md index 093355d11d5..21ad68064b3 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListColumn.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteListColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListColumn -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteListColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentType.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentType.md index 093355d11d5..707302fc487 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteListContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListContentType -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteListContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentTypeCompatibleHubContentType.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentTypeCompatibleHubContentType.md index 093355d11d5..e7bbf581224 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentTypeCompatibleHubContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListContentTypeCompatibleHubContentType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteListContentTypeCompatibleHubContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListContentTypeCompatibleHubContentType -SiteId $siteId -ListId $listId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteListContentTypeCompatibleHubContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItem.md index 093355d11d5..e5814197197 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteListItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId -ExpandProperty "fields" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteListItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDelta.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDelta.md index 093355d11d5..75229dff6b6 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDelta.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDelta.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteListItemDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDelta -SiteId $siteId -ListId $listId -Token "latest" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteListItemDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteListItemDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDelta -SiteId $siteId -ListId $listId -Token "latest" -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteListItemDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgSiteListItemDelta Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDelta -SiteId $siteId -ListId $listId +``` +This example shows how to use the Get-MgSiteListItemDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgSiteListItemDelta Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDelta -SiteId $siteId -ListId $listId -Token "1230919asd190410jlka" +``` +This example shows how to use the Get-MgSiteListItemDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDocumentSetVersion.md index 093355d11d5..c0a41576121 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteListItemDocumentSetVersion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteListItemDocumentSetVersion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePage.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePage.md index 093355d11d5..b30dd7b62fd 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePage.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePage.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSitePage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSitePage -SiteId $siteId -SitePageId $sitePageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSitePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSitePage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSitePage -SiteId $siteId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSitePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePermission.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePermission.md index 093355d11d5..a81d9eb2f3a 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSitePermission.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSitePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSitePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSitePermission -SiteId $siteId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStore.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStore.md index 093355d11d5..e2ac91d89ed 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStore.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStore.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteTermStore Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStore -SiteId $siteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteTermStore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteTermStore Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStore -SiteId $siteId -OutFile $outFileId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteTermStore Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroup.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroup.md index 093355d11d5..cc5f65134e0 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroup.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteTermStoreGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId -Property "*,parentSiteId" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteTermStoreGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroup -SiteId $siteId -GroupId $groupId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteTermStoreGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroupSetTerm.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroupSetTerm.md index 093355d11d5..ca0ebfaa2ee 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroupSetTerm.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreGroupSetTerm.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteTermStoreGroupSetTerm Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroupSetTerm -SiteId $siteId -GroupId $groupId -SetId $setId -TermId $termId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgSiteTermStoreGroupSetTerm Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgSiteTermStoreGroupSetTerm Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreGroupSetTerm -SiteId $siteId -GroupId $groupId -SetId $setId -TermId $termId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteTermStoreGroupSetTerm Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreSet.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreSet.md index 093355d11d5..27e4b693762 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreSet.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSiteTermStoreSet.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSiteTermStoreSet Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSiteTermStoreSet -SiteId $siteId -SetId $setId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSiteTermStoreSet Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgSubSite.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgSubSite.md index 093355d11d5..63b4711da7c 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgSubSite.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgSubSite.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgSubSite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Get-MgSubSite -SiteId $siteId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgSubSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Get-MgUserFollowedSite.md b/src/Sites/Sites/examples/v1.0-beta/Get-MgUserFollowedSite.md index 093355d11d5..e389c2ac152 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Get-MgUserFollowedSite.md +++ b/src/Sites/Sites/examples/v1.0-beta/Get-MgUserFollowedSite.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserFollowedSite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +# A UPN can also be used as -UserId. +Get-MgUserFollowedSite -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserFollowedSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Join-MgSiteContentTypeWithHubSite.md b/src/Sites/Sites/examples/v1.0-beta/Join-MgSiteContentTypeWithHubSite.md index 093355d11d5..c654984a02a 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Join-MgSiteContentTypeWithHubSite.md +++ b/src/Sites/Sites/examples/v1.0-beta/Join-MgSiteContentTypeWithHubSite.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Join-MgSiteContentTypeWithHubSite Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + HubSiteUrls = @( + "https://graph.microsoft.com/beta/sites/id" + ) + PropagateToExistingLists = $false +} +Join-MgSiteContentTypeWithHubSite -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Join-MgSiteContentTypeWithHubSite Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteColumn.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteColumn.md index 093355d11d5..e89d734a213 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteColumn.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Description = "test" + EnforceUniqueValues = $false + Hidden = $false + Indexed = $false + Name = "Title" + Text = @{ + AllowMultipleLines = $false + AppendChangesToExistingText = $false + LinesForEditing = 0 + MaxLength = 255 + } +} +New-MgSiteColumn -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentType.md index 093355d11d5..27f532b11fa 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentType.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Name = "docSet" + Description = "custom docset" + Base = @{ + Name = "Document Set" + Id = "0x0120D520" + } + Group = "Document Set Content Types" +} +New-MgSiteContentType -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentTypeColumn.md index 093355d11d5..0b31a4ad687 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteContentTypeColumn.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteContentTypeColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + "SourceColumn@odata.bind" = "https://graph.microsoft.com/beta/sites/root/columns/99ddcf45-e2f7-4f17-82b0-6fba34445103" +} +New-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteList.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteList.md index 093355d11d5..66083c9b800 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteList.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteList.md @@ -1,18 +1,25 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + DisplayName = "Books" + Columns = @( + @{ + Name = "Author" + Text = @{ + } + } + @{ + Name = "PageCount" + Number = @{ + } + } + ) + List = @{ + Template = "genericList" + } +} +New-MgSiteList -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListColumn.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListColumn.md index 093355d11d5..499765fcb5e 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListColumn.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteListColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Description = "test" + EnforceUniqueValues = $false + Hidden = $false + Indexed = $false + Name = "Title" + Text = @{ + AllowMultipleLines = $false + AppendChangesToExistingText = $false + LinesForEditing = 0 + MaxLength = 255 + } +} +New-MgSiteListColumn -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteListColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItem.md index 093355d11d5..2b5c2b22fcf 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItem.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteListItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Fields = @{ + Title = "Widget" + Color = "Purple" + Weight = + } +} +New-MgSiteListItem -SiteId $siteId -ListId $listId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteListItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemDocumentSetVersion.md index 093355d11d5..a94e05f8e23 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteListItemDocumentSetVersion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Comment = "v1" + ShouldCaptureMinorVersion = $false +} +New-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemLink.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemLink.md index 093355d11d5..f71d174f340 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemLink.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSiteListItemLink.md @@ -1,18 +1,31 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSiteListItemLink Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Type = "embed" +} +New-MgSiteListItemLink -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgSiteListItemLink Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgSiteListItemLink Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Type = "edit" + Scope = "organization" +} +New-MgSiteListItemLink -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgSiteListItemLink Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgSiteListItemLink Cmdlet +```powershell +Import-Module Microsoft.Graph.Sites +$params = @{ + Type = "embed" +} +New-MgSiteListItemLink -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params +``` +This example shows how to use the New-MgSiteListItemLink Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSitePage.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSitePage.md index 093355d11d5..e749475d39d 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSitePage.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSitePage.md @@ -1,18 +1,31 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSitePage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Name = "Events.aspx" + Title = "Team Events" + PublishingState = @{ + Level = "checkedOut" + VersionId = "0.1" + } + WebParts = @( + @{ + Type = "rte" + Data = @{ + InnerHTML = "

Here are the team's upcoming events:

" + } + } + @{ + Type = "d1d91016-032f-456d-98a4-721247c305e8" + Data = @{ + Title = "Events" + Description = "Display upcoming events" + DataVersion = "1.0" + } + } + ) +} +New-MgSitePage -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSitePage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/New-MgSitePermission.md b/src/Sites/Sites/examples/v1.0-beta/New-MgSitePermission.md index 093355d11d5..363e7ee368f 100644 --- a/src/Sites/Sites/examples/v1.0-beta/New-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0-beta/New-MgSitePermission.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgSitePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Roles = @( + "write" + ) + GrantedToIdentities = @( + @{ + Application = @{ + Id = "89ea5c94-7736-4e25-95ad-3fa95f62b66e" + DisplayName = "Contoso Time Manager App" + } + } + ) +} +New-MgSitePermission -SiteId $siteId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Publish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0-beta/Publish-MgSiteContentType.md index 093355d11d5..a49d972730c 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Publish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Publish-MgSiteContentType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Publish-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Publish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Publish-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentType.md index 093355d11d5..bbbb9224a1f 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentTypeColumn.md index 093355d11d5..2bb8fe25e24 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteContentTypeColumn.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSiteContentTypeColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItem.md b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItem.md index 093355d11d5..7abc69f7410 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItem.md +++ b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItem.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSiteListItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteListItem -SiteId $siteId -ListId $listId -ListItemId $listItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSiteListItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItemDocumentSetVersion.md index 093355d11d5..699d5742c71 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSiteListItemDocumentSetVersion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSitePermission.md b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSitePermission.md index 093355d11d5..87f483f71df 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Remove-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0-beta/Remove-MgSitePermission.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgSitePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Remove-MgSitePermission -SiteId $siteId -PermissionId $permissionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Restore-MgSiteListItemDocumentSetVersion.md b/src/Sites/Sites/examples/v1.0-beta/Restore-MgSiteListItemDocumentSetVersion.md index 093355d11d5..5b3f69954de 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Restore-MgSiteListItemDocumentSetVersion.md +++ b/src/Sites/Sites/examples/v1.0-beta/Restore-MgSiteListItemDocumentSetVersion.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restore-MgSiteListItemDocumentSetVersion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Restore-MgSiteListItemDocumentSetVersion -SiteId $siteId -ListId $listId -ListItemId $listItemId -DocumentSetVersionId $documentSetVersionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restore-MgSiteListItemDocumentSetVersion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Test-MgSiteContentTypePublished.md b/src/Sites/Sites/examples/v1.0-beta/Test-MgSiteContentTypePublished.md index 093355d11d5..b3c39701bfd 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Test-MgSiteContentTypePublished.md +++ b/src/Sites/Sites/examples/v1.0-beta/Test-MgSiteContentTypePublished.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgSiteContentTypePublished Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Test-MgSiteContentTypePublished -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgSiteContentTypePublished Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Unpublish-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0-beta/Unpublish-MgSiteContentType.md index 093355d11d5..aef59ec8ca2 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Unpublish-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Unpublish-MgSiteContentType.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Unpublish-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +Unpublish-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Unpublish-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentType.md b/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentType.md index 093355d11d5..3b10d9efe98 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentType.md +++ b/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentType.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSiteContentType Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Name = "updatedCt" + DocumentSet = @{ + ShouldPrefixNameToFile = $true + AllowedContentTypes = @( + @{ + Id = "0x0101" + Name = "Document" + } + ) + DefaultContents = @( + @{ + FileName = "a.txt" + ContentType = @{ + Id = "0x0101" + } + } + @{ + FileName = "b.txt" + ContentType = @{ + Id = "0x0101" + } + } + ) + SharedColumns = @( + @{ + Name = "Description" + Id = "cbb92da4-fd46-4c7d-af6c-3128c2a5576e" + } + @{ + Name = "Address" + Id = "fc2e188e-ba91-48c9-9dd3-16431afddd50" + } + ) + WelcomePageColumns = @( + @{ + Name = "Address" + Id = "fc2e188e-ba91-48c9-9dd3-16431afddd50" + } + ) + } +} +Update-MgSiteContentType -SiteId $siteId -ContentTypeId $contentTypeId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSiteContentType Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentTypeColumn.md b/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentTypeColumn.md index 093355d11d5..413bd3d86b9 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentTypeColumn.md +++ b/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteContentTypeColumn.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSiteContentTypeColumn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Required = $true + Hidden = $false + PropagateChanges = $false +} +Update-MgSiteContentTypeColumn -SiteId $siteId -ContentTypeId $contentTypeId -ColumnDefinitionId $columnDefinitionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSiteContentTypeColumn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteListItemField.md b/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteListItemField.md index 093355d11d5..04f565c666f 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteListItemField.md +++ b/src/Sites/Sites/examples/v1.0-beta/Update-MgSiteListItemField.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSiteListItemField Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Color = "Fuchsia" + Quantity = +} +Update-MgSiteListItemField -SiteId $siteId -ListId $listId -ListItemId $listItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSiteListItemField Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Sites/Sites/examples/v1.0-beta/Update-MgSitePermission.md b/src/Sites/Sites/examples/v1.0-beta/Update-MgSitePermission.md index 093355d11d5..9990ad6d08e 100644 --- a/src/Sites/Sites/examples/v1.0-beta/Update-MgSitePermission.md +++ b/src/Sites/Sites/examples/v1.0-beta/Update-MgSitePermission.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgSitePermission Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Sites +$params = @{ + Roles = @( + "read" + ) +} +Update-MgSitePermission -SiteId $siteId -PermissionId $permissionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgSitePermission Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Add-MgTeamMember.md b/src/Teams/Teams/examples/v1.0-beta/Add-MgTeamMember.md index 093355d11d5..56820ce54cc 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Add-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Add-MgTeamMember.md @@ -1,18 +1,72 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Values = @( + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('18a80140-b0fb-4489-b360-2f6efaf225a0')" + } + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('86503198-b81b-43fe-81ee-ad45b8848ac9')" + } + ) +} +Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Add-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Add-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Values = @( + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('18a80140-b0fb-4489-b360-2f6efaf225a0')" + } + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('86503198-b81b-43fe-81ee-ad45b8848ac9')" + } + ) +} +Add-MgTeamMember -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Add-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Add-MgTeamMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Values = @( + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" + } + @{ + "@odata.type" = "microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('alex@contoso.com')" + } + ) +} +Add-MgTeamMember -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Add-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamChannelMigration.md b/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamChannelMigration.md index 093355d11d5..9c4dafda6ab 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamChannelMigration.md +++ b/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamChannelMigration.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Complete-MgTeamChannelMigration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Complete-MgTeamChannelMigration -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Complete-MgTeamChannelMigration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamMigration.md b/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamMigration.md index 093355d11d5..795dcfe6125 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamMigration.md +++ b/src/Teams/Teams/examples/v1.0-beta/Complete-MgTeamMigration.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Complete-MgTeamMigration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Complete-MgTeamMigration -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Complete-MgTeamMigration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Confirm-MgTeamScheduleTimeCard.md b/src/Teams/Teams/examples/v1.0-beta/Confirm-MgTeamScheduleTimeCard.md index 093355d11d5..7f6428c0938 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Confirm-MgTeamScheduleTimeCard.md +++ b/src/Teams/Teams/examples/v1.0-beta/Confirm-MgTeamScheduleTimeCard.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgTeamScheduleTimeCard Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Confirm-MgTeamScheduleTimeCard -TeamId $teamId -TimeCardId $timeCardId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgTeamScheduleTimeCard Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Copy-MgTeam.md b/src/Teams/Teams/examples/v1.0-beta/Copy-MgTeam.md index 093355d11d5..968077d9544 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Copy-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Copy-MgTeam.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Library Assist" + Description = "Self help community for library" + MailNickname = "libassist" + PartsToClone = "apps,tabs,settings,channels,members" + Visibility = "public" +} +Copy-MgTeam -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamApp.md index 093355d11d5..efad6d35ae6 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamApp.md @@ -1,18 +1,42 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAppCatalogTeamApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "id eq 'b1c5353a-7aca-41b3-830f-27d5218fe0e5'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgAppCatalogTeamApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -ExpandProperty "appDefinitions(`$select=id,displayName,allowedInstallationScopes)" -Filter "appDefinitions/any(a:a/allowedInstallationScopes has 'personal')" +``` +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgAppCatalogTeamApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -ExpandProperty "appDefinitions(`$expand=bot)" -Filter "appDefinitions/any(a:a/bot ne null)" +``` +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgAppCatalogTeamApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "id eq '876df28f-2e78-423b-94a5-44181bd0e225'" -ExpandProperty "appDefinitions" +``` +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgAppCatalogTeamApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamApp -Filter "distributionMethod eq 'organization'" +``` +This example shows how to use the Get-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionBot.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionBot.md index 093355d11d5..b824ccbf164 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionBot.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionBot.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAppCatalogTeamAppDefinitionBot Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionBot -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionBot Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIcon.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIcon.md index 093355d11d5..3c8ea0872ee 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIcon.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIcon.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAppCatalogTeamAppDefinitionColorIcon Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionColorIcon -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionColorIcon Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAppCatalogTeamAppDefinitionColorIcon Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionColorIcon -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionColorIcon Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent.md index 093355d11d5..bdf35c7f385 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionColorIconHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionOutlineIcon.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionOutlineIcon.md index 093355d11d5..d4eca7cb744 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionOutlineIcon.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgAppCatalogTeamAppDefinitionOutlineIcon.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgAppCatalogTeamAppDefinitionOutlineIcon Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionOutlineIcon -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionOutlineIcon Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgAppCatalogTeamAppDefinitionOutlineIcon Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionOutlineIcon -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionOutlineIcon Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgAppCatalogTeamAppDefinitionOutlineIcon Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgAppCatalogTeamAppDefinitionOutlineIcon -TeamsAppId $teamsAppId -TeamsAppDefinitionId $teamsAppDefinitionId -OutFile $outFileId +``` +This example shows how to use the Get-MgAppCatalogTeamAppDefinitionOutlineIcon Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChat.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChat.md index 093355d11d5..b23c9eb41cb 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChat.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChat.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChat -ChatId $chatId -ExpandProperty "members" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChat -ChatId $chatId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChat -ChatId $chatId +``` +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChat -ExpandProperty "lastMessagePreview" +``` +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChat -Sort "lastMessagePreview/createdDateTime desc" +``` +This example shows how to use the Get-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatInstalledApp.md index 093355d11d5..494295a7604 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatInstalledApp.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChatInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId -ExpandProperty "teamsAppDefinition(`$expand=bot)" +``` +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgChatInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChatInstalledApp -ChatId $chatId +``` +This example shows how to use the Get-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMember.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMember.md index 093355d11d5..b30f2ec9720 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessage.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessage.md index 093355d11d5..8b26943a3e4 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessage.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMessage -ChatId $chatId -Top 2 -Sort "createdDateTime desc" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMessage -ChatId $chatId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessageHostedContent.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessageHostedContent.md index 093355d11d5..7758bbb64e0 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatMessageHostedContent.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatMessageHostedContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId -ChatMessageHostedContentId $chatMessageHostedContentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChatMessageHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatMessageHostedContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatMessageHostedContent -ChatId $chatId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatMessageHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatOperation.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatOperation.md index 093355d11d5..7f26a037b6c 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatOperation.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatOperation.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatOperation -ChatId $chatId -TeamsAsyncOperationId $teamsAsyncOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChatOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatOperation -ChatId $chatId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPermissionGrant.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPermissionGrant.md index 093355d11d5..a73d832298d 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPermissionGrant.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPermissionGrant.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatPermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatPermissionGrant -ChatId $chatId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatPermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPinnedMessage.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPinnedMessage.md index 093355d11d5..30ed7ae2b2e 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPinnedMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatPinnedMessage.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatPinnedMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatPinnedMessage -ChatId $chatId -ExpandProperty "message" -OutFile $outFileId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChatPinnedMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatPinnedMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatPinnedMessage -ChatId $chatId -ExpandProperty "message" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatPinnedMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChatPinnedMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChatPinnedMessage -ChatId $chatId +``` +This example shows how to use the Get-MgChatPinnedMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatTab.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatTab.md index 093355d11d5..7f0e9194507 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgChatTab.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgChatTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -ExpandProperty "teamsApp" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgChatTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.web'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgChatTab Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgChatTab -ChatId $chatId -ExpandProperty "teamsApp" +``` +This example shows how to use the Get-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeam.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeam.md index 093355d11d5..07f90af094c 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeam.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeam -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeam -Filter "displayName eq 'A Contoso Team'" -Property "id,description" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeam -Filter "startswith(displayName, 'A')" -Top 2 +``` +This example shows how to use the Get-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeam +``` +This example shows how to use the Get-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeam -Filter "displayName eq 'A Contoso Team'" -Property "id,description" -OutFile $outFileId +``` +This example shows how to use the Get-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannel.md index 093355d11d5..d14da61da70 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannel.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'shared'" +``` +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId +``` +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannel -TeamId $teamId -Filter "membershipType eq 'private'" +``` +This example shows how to use the Get-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelFileFolder.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelFileFolder.md index 093355d11d5..3a0a9e0f4e1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelFileFolder.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelFileFolder.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelFileFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelFileFolder -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelFileFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMember.md index 093355d11d5..5cace31bf2d 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMember.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessage.md index 093355d11d5..e3842d63e83 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessage.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -Top 3 ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageHostedContent.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageHostedContent.md index 093355d11d5..e9e6185b450 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageHostedContent.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageHostedContent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelMessageHostedContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessageHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelMessageHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReply.md index 093355d11d5..bacc45a32ae 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReply.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelMessageReply Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReplyHostedContent.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReplyHostedContent.md index 093355d11d5..f876d7a2d53 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReplyHostedContent.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelMessageReplyHostedContent.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelMessageReplyHostedContent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelMessageReplyHostedContent -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -ChatMessageId1 $chatMessageId1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelMessageReplyHostedContent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeam.md index 093355d11d5..5d2198e61df 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeam.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelSharedWithTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelSharedWithTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeamAllowedMember.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeamAllowedMember.md index 093355d11d5..0926580fe35 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeamAllowedMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelSharedWithTeamAllowedMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelSharedWithTeamAllowedMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelSharedWithTeamAllowedMember -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelSharedWithTeamAllowedMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelTab.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelTab.md index 093355d11d5..9a21c6e8397 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelTab.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamChannelTab.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamChannelTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" -Filter "teamsApp/id eq 'com.microsoft.teamspace.tab.planner'" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamChannelTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamChannelTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamChannelTab -TeamId $teamId -ChannelId $channelId -ExpandProperty "teamsApp" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamChannelTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamIncomingChannel.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamIncomingChannel.md index 093355d11d5..89fe35c9364 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamIncomingChannel.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamIncomingChannel.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamIncomingChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamIncomingChannel -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamIncomingChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamInstalledApp.md index 093355d11d5..d3500643356 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamInstalledApp.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId -ExpandProperty "teamsAppDefinition" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" +``` +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId +``` +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgTeamInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamInstalledApp -TeamId $teamId -ExpandProperty "teamsAppDefinition(`$expand=bot)" +``` +This example shows how to use the Get-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamMember.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamMember.md index 093355d11d5..2e66a401244 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamMember.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -Filter "roles/any(r:r eq 'owner')" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/userId eq '73761f06-2ac9-469c-9f10-279a8cc267f9')" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -Filter "(microsoft.graph.aadUserConversationMember/displayName eq 'Harry Johnson' or microsoft.graph.aadUserConversationMember/email eq 'admin@M365x987948.OnMicrosoft.com')" +``` +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId +``` +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgTeamMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId +``` +This example shows how to use the Get-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPermissionGrant.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPermissionGrant.md index 093355d11d5..463e696678c 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPermissionGrant.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPermissionGrant.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamPermissionGrant Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamPermissionGrant -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamPermissionGrant Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPrimaryChannel.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPrimaryChannel.md index 093355d11d5..64ad86680d5 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPrimaryChannel.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamPrimaryChannel.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamPrimaryChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamPrimaryChannel -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamPrimaryChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamSchedule.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamSchedule.md index 093355d11d5..5233393eb90 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamSchedule.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamSchedule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamSchedule -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOfferShiftRequest.md index 093355d11d5..4201e583e31 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOfferShiftRequest.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleOfferShiftRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId -OfferShiftRequestId $offerShiftRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleOfferShiftRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleOfferShiftRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOfferShiftRequest -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleOfferShiftRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShift.md index 093355d11d5..c171548a5af 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShift.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleOpenShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleOpenShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShift -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShiftChangeRequest.md index 093355d11d5..5f9c485ee64 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -OpenShiftChangeRequestId $openShiftChangeRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleOpenShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSchedulingGroup.md index 093355d11d5..9aa3e33a34d 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSchedulingGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleSchedulingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleSchedulingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSchedulingGroup -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleShift.md index 093355d11d5..5856cd5487a 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleShift.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleShift -TeamId $teamId -Filter "sharedShift/startDateTime ge 2019-03-11T00:00:00.000Z and sharedShift/endDateTime le 2019-03-18T00:00:00.000Z and draftShift/startDateTime ge 2019-03-11T00:00:00.000Z and draftShift/endDateTime le 2019-03-18T00:00:00.000Z" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSwapShiftChangeRequest.md index 093355d11d5..426030f97e3 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -SwapShiftsChangeRequestId $swapShiftsChangeRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleSwapShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeCard.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeCard.md index 093355d11d5..43fd359da44 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeCard.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeCard.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleTimeCard Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeCard -TeamId $teamId -TimeCardId $timeCardId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleTimeCard Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeCard Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeCard -TeamId $teamId -Top 2 -Filter "state eq 'clockedOut'" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleTimeCard Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOff.md index 093355d11d5..c68ca73e003 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOff.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleTimeOff Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOff -TeamId $teamId -Filter "sharedTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and sharedTimeOff/endDateTime le 2019-03-18T00:00:00.000Z and draftTimeOff/startDateTime ge 2019-03-11T00:00:00.000Z and draftTimeOff/endDateTime le 2019-03-18T00:00:00.000Z" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeOff Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffReason.md index 093355d11d5..0d3610ebf81 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffReason.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleTimeOffReason Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffReason -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeOffReason Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffRequest.md index 093355d11d5..64509cad0c8 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamScheduleTimeOffRequest.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamScheduleTimeOffRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamScheduleTimeOffRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamScheduleTimeOffRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamScheduleTimeOffRequest -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamScheduleTimeOffRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTag.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTag.md index 093355d11d5..96ab2f3df70 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTag.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTag.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamTag -TeamId $teamId -TeamworkTagId $teamworkTagId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamTag -TeamId $teamId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTagMember.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTagMember.md index 093355d11d5..08ea0adeac8 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTagMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamTagMember.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamTagMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamTagMember -TeamId $teamId -TeamworkTagId $teamworkTagId -TeamworkTagMemberId $teamworkTagMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamTagMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamTagMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamTagMember -TeamId $teamId -TeamworkTagId $teamworkTagId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamTagMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeletedTeam.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeletedTeam.md index 093355d11d5..cf2fb7b9be2 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeletedTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeletedTeam.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkDeletedTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDeletedTeam ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkDeletedTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDevice.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDevice.md index 093355d11d5..099b8be9ee4 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDevice.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDevice.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDevice -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamworkDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamworkDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDevice ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceActivity.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceActivity.md index 093355d11d5..2b3f04e24f2 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceActivity.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceActivity.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkDeviceActivity Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDeviceActivity -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkDeviceActivity Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceConfiguration.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceConfiguration.md index 093355d11d5..dd616a309f3 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceConfiguration.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceConfiguration.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkDeviceConfiguration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDeviceConfiguration -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkDeviceConfiguration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceHealth.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceHealth.md index 093355d11d5..fab3a7924a7 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceHealth.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceHealth.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkDeviceHealth Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDeviceHealth -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkDeviceHealth Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceOperation.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceOperation.md index 093355d11d5..a2ff59c3fd7 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceOperation.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkDeviceOperation.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkDeviceOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDeviceOperation -TeamworkDeviceId $teamworkDeviceId -TeamworkDeviceOperationId $teamworkDeviceOperationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamworkDeviceOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamworkDeviceOperation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkDeviceOperation -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkDeviceOperation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamAppSetting.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamAppSetting.md index 093355d11d5..20e4c3e33ce 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamAppSetting.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamAppSetting.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkTeamAppSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkTeamAppSetting ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkTeamAppSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplate.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplate.md index 093355d11d5..4b8a110c04f 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplate.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplate.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkTeamTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkTeamTemplate -ExpandProperty "definitions" -Filter "definitions/any(a:a/languageTag eq 'en-US')" ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamworkTeamTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamworkTeamTemplate Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkTeamTemplate ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkTeamTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgTeamworkTeamTemplate Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkTeamTemplate -ExpandProperty "definitions" -Filter "definitions/any(a:a/languageTag eq 'en-US')" -OutFile $outFileId +``` +This example shows how to use the Get-MgTeamworkTeamTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgTeamworkTeamTemplate Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkTeamTemplate -ExpandProperty "definitions" -Filter "definitions/any(a:a/languageTag eq 'en-US')" +``` +This example shows how to use the Get-MgTeamworkTeamTemplate Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplateDefinition.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplateDefinition.md index 093355d11d5..25f7ea56a4d 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplateDefinition.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkTeamTemplateDefinition.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkTeamTemplateDefinition Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkTeamTemplateDefinition -TeamTemplateId $teamTemplateId -TeamTemplateDefinitionId $teamTemplateDefinitionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkTeamTemplateDefinition Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkWorkforceIntegration.md index 093355d11d5..c68b8ea2fb2 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgTeamworkWorkforceIntegration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgTeamworkWorkforceIntegration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgTeamworkWorkforceIntegration ``` - -{{ Add description here }} - +This example shows how to use the Get-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChat.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChat.md index 093355d11d5..d1ca69b7cab 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChat.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChat.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId -ChatId $chatId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId -ExpandProperty "members" -Filter "members/any(o: o/displayname eq 'Peter Parker')" ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId -ExpandProperty "members" +``` +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgUserChat -UserId $userId +``` +This example shows how to use the Get-MgUserChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChatMember.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChatMember.md index 093355d11d5..17c02b1a7bc 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChatMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserChatMember.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserChatMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +# A UPN can also be used as -UserId. +Get-MgUserChatMember -UserId $userId -ChatId $chatId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserJoinedTeam.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserJoinedTeam.md index 093355d11d5..9abe90500f2 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserJoinedTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserJoinedTeam.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserJoinedTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +# A UPN can also be used as -UserId. +Get-MgUserJoinedTeam -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserJoinedTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkAssociatedTeam.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkAssociatedTeam.md index 093355d11d5..7e79ecbc9df 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkAssociatedTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkAssociatedTeam.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTeamworkAssociatedTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +# A UPN can also be used as -UserId. +Get-MgUserTeamworkAssociatedTeam -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTeamworkAssociatedTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledApp.md index 093355d11d5..0387a218059 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledApp.md @@ -1,18 +1,35 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTeamworkInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTeamworkInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserTeamworkInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId -ExpandProperty "teamsAppDefinition" +``` +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgUserTeamworkInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsAppDefinition(`$expand=bot)" +``` +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgUserTeamworkInstalledApp Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledApp -UserId $userId -ExpandProperty "teamsApp,teamsAppDefinition" -Filter "teamsApp/externalId eq 'cf1ba4c7-f94e-4d80-ba90-5594b641a8ee'" +``` +This example shows how to use the Get-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledAppChat.md b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledAppChat.md index 093355d11d5..8a1104237c5 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledAppChat.md +++ b/src/Teams/Teams/examples/v1.0-beta/Get-MgUserTeamworkInstalledAppChat.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTeamworkInstalledAppChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Get-MgUserTeamworkInstalledAppChat -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTeamworkInstalledAppChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Hide-MgChatForUser.md b/src/Teams/Teams/examples/v1.0-beta/Hide-MgChatForUser.md index 093355d11d5..ac8b7af1513 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Hide-MgChatForUser.md +++ b/src/Teams/Teams/examples/v1.0-beta/Hide-MgChatForUser.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Hide-MgChatForUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + User = @{ + Id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2" + } + TenantId = "2a690434-97d9-4eed-83a6-f5f13600199a" +} +Hide-MgChatForUser -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Hide-MgChatForUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgArchiveTeam.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgArchiveTeam.md index 093355d11d5..ab6c0a80cc9 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgArchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgArchiveTeam.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgArchiveTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Invoke-MgArchiveTeam -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgArchiveTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardIn.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardIn.md index 093355d11d5..ef84a63246b 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardIn.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardIn.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgClockTeamScheduleTimeCardIn Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + AtAprovedLocation = $true + Notes = @{ + ContentType = "text" + Content = "clock in notes" + } +} +Invoke-MgClockTeamScheduleTimeCardIn -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgClockTeamScheduleTimeCardIn Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardOut.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardOut.md index 093355d11d5..3758cf8a310 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardOut.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgClockTeamScheduleTimeCardOut.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgClockTeamScheduleTimeCardOut Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + AtAprovedLocation = $true + Notes = @{ + ContentType = "text" + Content = "clock out smaple notes" + } +} +Invoke-MgClockTeamScheduleTimeCardOut -TeamId $teamId -TimeCardId $timeCardId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgClockTeamScheduleTimeCardOut Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgGraphChat.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgGraphChat.md index 093355d11d5..ec959c78268 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgGraphChat.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgGraphChat.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgGraphChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + User = @{ + Id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2" + } + TenantId = "2a690434-97d9-4eed-83a6-f5f13600199a" +} +Invoke-MgGraphChat -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgGraphChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatReadForUser.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatReadForUser.md index 093355d11d5..2cf552172b6 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatReadForUser.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatReadForUser.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMarkChatReadForUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + User = @{ + Id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2" + } + TenantId = "2a690434-97d9-4eed-83a6-f5f13600199a" +} +Invoke-MgMarkChatReadForUser -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMarkChatReadForUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatUnreadForUser.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatUnreadForUser.md index 093355d11d5..a7a5a84e760 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatUnreadForUser.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgMarkChatUnreadForUser.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgMarkChatUnreadForUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + User = @{ + Id = "d864e79f-a516-4d0f-9fee-0eeb4d61fdc2" + } + TenantId = "2a690434-97d9-4eed-83a6-f5f13600199a" + LastMessageReadDateTime = [System.DateTime]::Parse("2021-05-27T22:13:01.577Z") +} +Invoke-MgMarkChatUnreadForUser -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgMarkChatUnreadForUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgShareTeamSchedule.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgShareTeamSchedule.md index 093355d11d5..c0df618453e 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgShareTeamSchedule.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgShareTeamSchedule.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgShareTeamSchedule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + NotifyTeam = $true + StartDateTime = [System.DateTime]::Parse("2018-10-08T00:00:00.000Z") + EndDateTime = [System.DateTime]::Parse("2018-10-15T00:00:00.000Z") +} +Invoke-MgShareTeamSchedule -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgShareTeamSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageDelete.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageDelete.md index 093355d11d5..210f69285eb 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageDelete.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageDelete.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSoftTeamChannelMessageDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Invoke-MgSoftTeamChannelMessageDelete -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSoftTeamChannelMessageDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageReplyDelete.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageReplyDelete.md index 093355d11d5..5e9ed60f2a6 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageReplyDelete.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgSoftTeamChannelMessageReplyDelete.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSoftTeamChannelMessageReplyDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Invoke-MgSoftTeamChannelMessageReplyDelete -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -ChatMessageId1 $chatMessageId1 ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSoftTeamChannelMessageReplyDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgUnarchiveTeam.md b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgUnarchiveTeam.md index 093355d11d5..f914c8b2ff3 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Invoke-MgUnarchiveTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Invoke-MgUnarchiveTeam.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnarchiveTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Invoke-MgUnarchiveTeam -TeamId $teamId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnarchiveTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0-beta/New-MgAppCatalogTeamApp.md index 093355d11d5..ef5f8789a92 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgAppCatalogTeamApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgAppCatalogTeamApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +New-MgAppCatalogTeamApp -Requiresreview true ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgChat.md b/src/Teams/Teams/examples/v1.0-beta/New-MgChat.md index 093355d11d5..2b12d55cd67 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgChat.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgChat.md @@ -1,18 +1,212 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "group" + Topic = "Group chat title" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('82fe7758-5bb3-4f0d-a43f-e555fd399c6f')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('3626a173-f2bc-4883-bcf7-01514c3bfb82')" + } + ) +} +New-MgChat -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "group" + Topic = "Group chat title" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('82fe7758-5bb3-4f0d-a43f-e555fd399c6f')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "guest" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8ba98gf6-7fc2-4eb2-c7f2-aef9f21fd98g')" + } + ) +} +New-MgChat -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "group" + Topic = "Group chat title" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('82fe7758-5bb3-4f0d-a43f-e555fd399c6f')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "guest" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8ba98gf6-7fc2-4eb2-c7f2-aef9f21fd98g')" + } + ) +} +New-MgChat -BodyParameter $params +``` +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('82af01c5-f7cc-4a2e-a728-3a5df21afd9d')" + TenantId = "4dc1fe35-8ac6-4f0d-904a-7ebcd364bea1" + } + ) +} +New-MgChat -BodyParameter $params +``` +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('82af01c5-f7cc-4a2e-a728-3a5df21afd9d')" + } + ) +} +New-MgChat -BodyParameter $params +``` +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('alex@contoso.com')" + } + ) +} +New-MgChat -BodyParameter $params +``` +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgChat Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + ChatType = "oneOnOne" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" + } + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('82af01c5-f7cc-4a2e-a728-3a5df21afd9d')" + } + ) + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/beta/appCatalogs/teamsApps/05F59CEC-A742-4A50-A62E-202A57E478A4" + } + ) +} +New-MgChat -BodyParameter $params +``` +This example shows how to use the New-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/New-MgChatInstalledApp.md index 093355d11d5..94990b1d063 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgChatInstalledApp.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgChatInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/beta/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" +} +New-MgChatInstalledApp -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgChatMember.md b/src/Teams/Teams/examples/v1.0-beta/New-MgChatMember.md index 093355d11d5..5750969a27e 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgChatMember.md @@ -1,18 +1,59 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgChatMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users/jacob@contoso.com" + VisibleHistoryStartDateTime = [System.DateTime]::Parse("2019-04-18T23:51:43.255Z") + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgChatMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" + VisibleHistoryStartDateTime = [System.DateTime]::Parse("0001-01-01T00:00:00Z") + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgChatMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params +``` +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgChatMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users/8b081ef6-4792-4def-b2c9-c363a1bf41d5" + VisibleHistoryStartDateTime = [System.DateTime]::Parse("2019-04-18T23:51:43.255Z") + Roles = @( + "owner" + ) +} +New-MgChatMember -ChatId $chatId -BodyParameter $params +``` +This example shows how to use the New-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgChatMessage.md b/src/Teams/Teams/examples/v1.0-beta/New-MgChatMessage.md index 093355d11d5..b63d3653478 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgChatMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgChatMessage.md @@ -1,18 +1,36 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgChatMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
+
+
+
+
" + } + HostedContents = @( + @{ + "@microsoft.graph.temporaryId" = "1" + ContentBytes = [System.Text.Encoding]::ASCII.GetBytes("iVBORw0KGgoAAAANSUhEUgAAASkAAAEpCAYAAADPmdSCAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAhr0lEQVR4Xu3d76tdV50GcP+EvJu3/QuGvJgXxSk0Y8QwzZRmCG2lQkjrkM4UjOmLgmAt0bQGLqipo1ghmIhSRBIMbV+UpmiIRSYV9IqmHaqNgRJbUGqoA30xMGe+z+1ZNyfrPuec/WN9115r7yfw6Y917zlnn+9e68ne66y9z8dms1kjTzzxxC6zxxw3h80d7Pekfti3832MfX3A7GK/J5IDbYxZJz1mbppZ5JJRBx4J7Etzar5vY8fZY0S80cZF6JxRZ41dN7vZY6Uetg8RUJvzfbrMWfZYEU+0MbBOicN+1lljOMo6zJ5Dymf7bvd8H7J9G9vDnkPEC20MrEMuO/Rf5hR7HimX7TOcyrN9ucwF9jwiXmhjYB0Sc06so66ieaoKYB+Zs/N91sYl9nwiXmhjgA4ZddCmNE9VMNs3OI1fN/+0jEJKsqKNATpk1EHb0DxVgWyfYBlJ0/knRiElWdHGAB0y6qBd6BOhQti+aDv/xCikJCvaGKBDRh20K5xaaJ5qIKi96TL/xCikJCvaGKBDRh20D5xiaJ4qM9TcdJ1/YhRSkhVtDNAhow6aguapMrFa45KWPvNPjEJKsqKNATpk1EFT0TyVM6vxuisFulJISVa0MUCHjDpoSjgF0UXKiVlNMf90YV5jDwopyYo2BuiQUQdNDaciuswiEatl6vknRiElWdHGAB0y6qBejrHXl+ashh7zT4xCSrKijQE6ZNRBPeEjci1T6MDq1vYayz4UUpIVbQzQIaMO6k3zVC1YrTD/lHsfKaQkK9oYoENGHTQHzVM1YDXC/BOukWQ19KSQkqxoY4AOGXXQnHQnyCWsNri1b475J0YhJVnRxgAdMuqgueGjdM1TLbB65Jx/YhRSkhVtDNAhow46BMxTTf5yGqvBEPNPjEJKsqKNATpk1EGHglObA2wb27hx40bnSXl7bKcjuq6PW2Tvvc3tfb0ppCQr2higQ0YddGid56ksLM6am6b1Udn8sZumVeDg9+eP63wZkL1nzD+xWgxFISVZ0cYAHTLqoCVoPU+FkDCzuVZBFT22cVDh9+a/Hx7bOqjsfaa6vUpKCinJijYG6JBRBy1F49sTIxwWgiJoFFT2O+yxa4MKP5//XvzYRkFl7w3zT96Xt3SlkJKsaGOADhl10JJgjmblbV8QClFILFoZVPazVY9dGlRon/+cPQ5WBpW9p7639/WmkJKsaGOADhl10BLRr9FCGEThwNCgsrYmj90RVPj/eTv7/UU0qOy9pLi9rzeFlGRFGwN0yKiDlgrbuR0YCIEoFFa5Lajsv9s8djuo8O/5/7PfY7aDCttuSpx/YhRSkhVtDNAhow5asq15Kgz+KAya2Aoq0+WxCKY75v9mP18FwdTn66WGoJCSrGhjgA4ZddCiPf300x9cv379f0kYFOub3/zm/7D3UrDkIXXz4393hzlrLk3IBaNrVBugjQE6ZNRBi7exsTG7du0aDYTSnDlzhr6HwiULKRukIZxmE4bAUlitQBsDdMiog1ahhqCqNKCgd0jZoFQ47aSwWoI2BuiQUQetRslBVXFAQeeQskGocFpPYRWhjQE6ZNRBq1JiUFUeUNA6pGzQKZzaU1jN0cYAHTLqoNUpKahGEFDQOKRskCmc+pt8WNHGAB0y6qBVKiGoRhJQsDakbFApnNKbbFjRxgAdMuqg1RoyqEYUULA0pGwQDRlOGMRdXDfs+UqFbZ5UWNHGAB0y6qBVu3LlCg0Rb2xbKrYjpGzQDBlOeN1eX95hjz9sFFaFoo0BOmTUQaumkEpiO6RskFQdTjF7PoVVgWhjgA4ZddCqKaSSwKAYVTjF7PkVVgWhjQE6ZNRBq6aQ6ufpo/8xe/1f/uG9aHDk4h5OMXs9hVUBaGNgHVMhlQDblpognC4f+DgbEDlkD6eYvb7CakC0MbAOqpBKgG1LDaYeTjHbHoXVAGhjYB1VIZUA25aSKZxWs+1TWGWEgrM3JJJb8eEUs+2tMayqo5CSoVUXTjHbfoWVn0sKKRlK9eEUs/ejsEpn+/RUISW5jS6cYvb+FFbd7Zg7U0hJLqMPp5i9X4VVc0sn9hVS4m1y4RSz96+wWm7tp44KKfEy+XCKWT0UVrc0XhKhkJLU3jR/zzqbfMTqM+WwahxOgUJKPNw0xw39Knr5iNVnSmHVOpwChZR4Ulg1YPUZc1h1DqdAISU5KKwasPqMKax6h1OgkJKcFFYNWH1qDqtk4RQopGQICqsGrD41hVXycAoUUjIkhVUDVp+Sw8otnAKFlJRAYdWA1aeksHIPp0AhJSVRWMkOCikpkcJKtimkpGQKK1FISRUUVhOmkJKaKKwmSCElNVJYTYhCSmqmsJoAhBR2MnXx4N3XX3zwUzPm9L/unT2w5x+r8vA9n5r9273/nB3blpI9s/+f6D6HAb/qahWEFdbtTAHu0zWpUKaNwRMrvnfvyJEjszvvvFNG6IEHHqD7HP7zyCEWEuIPizgPs3E6drQxsE6pkJoghVRRJhtOAW0MrFMqpCZIIVWEyYdTQBsD65QKqQlSSA1K4RShjYF1SoXUBCmkBqFwWoI2BtYpFVITpJDKSuG0Bm0MrFMqpCZoVUid+vfDH0aDTLpRODVEGwPrlEtDKvjc5z43e+ihh2Z33XUX7fC1uvfee2c//OEPZ7/+9a9nN27c2PLWW29ttX3605+mj6kV9h2C6bHHHqP7OIK1OmO6F3duCqeWaGOADhl10KUef/zx2f79++kgqM0XvvCF7WBa5rvf/S59bG327t279RcN26dLXAr9A4NtPujYYJTbKZw6oo0BOmTUQdeqPaiaBFSAoyr2HLVAQOEvF7YfV9gOqQCDbz4I2eCcOoVTT7QxQIeMOuha6PS1nvrhFI+F0SpHjx6lz1WDlkdQwY6QCjAY54OSDdapUTglQhsDdMiogzaCOSo2KEqHIyMWRKu89tpr9LlKd99999F918DSkAowOOeDlA3esVM4JUYbA3TIqIM2gr+h2cAoHQuhJnAExp6vZI888gjddw2sDakAg3U+aNlgHhuFkxPaGKBDRh20MTYwSoZP7FgANfHZz36WPmfJOsxFBY1DKsDgnQ9iNrhrp3ByRhsDdMiogzbGBkbJPvOZz9AAagKPZc9ZMrbPGmodUoEN5j1jw96npEUbA3TIqIM2dvfdd9PBUSocDbEAauLEiRP0OUvG9llDnUNKpAvaGKBDRh20sX379tHBUao+IfX1r3+dPmfJ2D5rSCElWdHGAB0y6qCN1bZeCkHDAqiJ2hZ24i8Qts8aUkhJVrQxQIeMOmhjuMyCDZBSdVl+ELzyyiv0OUuFv0DYPmtIISVZ0cYAHTLqoI3hI242QEqF9U4sgJpiz1kqrGNj+6whhZRkRRsDdMiogzaGj7jZACnRJz7xCRo8bdR00XHDC4mXUUhJVrQxQIeMOmgrtcxLtbleb5la5qXwqSvbVy1smj1z+iopcUcbA+uEvULq0KFDdKCUBnNKLHjawC1d2HOXZtW9onpCX4FT5rhBiO1m/UqkDdoYzDsd65CNlb5eqs9K8xiOyNhrlKTHSvM+cPR1wYTw0hGYNEYbA+tMvUOq9KOpn/zkJzRwuij9aKrHRcUerhsE1zGjIy5ZijYG1nl6hxSUejTVZwHnMqUeTeH2OQMdRTV10yi0ZAfaGFhnSRJSpd4Pve+yAwa3GManhez1htRz2cEQcKSF+a0DrG/KdNDGwDpIkpCCgwcP0sEzFHwax0ImBZxCstccSs/FmyXAUdZZo8CaINoYWKdIFlKA29WyQZRbiiUH65Ry0XHHWwSXLASW7kAwEbQxsI6QNKQwWLyDCpPDTz311Oz8+fOzzc3N2QcffLDt/Rdenr2378Gs/nLy2du2Adv08ssvzzY2Nra2lb2HVDAP1XPhZulwSohPDO9g/VfGgTYGtvOThhR4BRWCKQ4lJmdQxQHF/P73v98KrE9+8pP0fXU1gYCKYdJdR1cjRBsD2+nJQwoQVKlWoyOcMNBZACyTI6iaBNSid999d/btb387SViN8BSvDRxdHTZaizUStDGwHe0SUkGfL2zA3TCbHDkt4xlUbQNqEQL30Ucfpe+5CXxAwWo9QZi7wqmgwqpytDGwHewaUoAvbWh7gzycHrEB3pZHUPUJqEXf//736XtfBjXEUg9W44lTWFWONga2Y91DKsAAa3IKiAlxNqi7ShlUqQIqwDqudad/CCes6mc1ldsorCpFGwPbodlCKsCRFU4D2dFV6oAKUgRV6oAKcEobBxXmnHBa1/HLPadOYVUZ2hjYjsweUjEcYeEGevjYng3iVPoElVdABVevXt06WtLpXFIIK30VVQVoY2A7cfCQgnPnztHBm1qXoPIOqODnP/85rY30tnV/LNb/pQy0MbCdN3hIfe1rX6OD1kuboMoVUMHp06dpjSQJrLPSKWCBaGNgO23wkGq7BiqFJkGVO6Dgz3/+8+xLX/oSrZMkgVPAY2wsyHBoY2A7bNCQwje4sMGaw6qgGiKggpdeeonWSpJCv9ftYgpBG4P5zmI7MYt33nmHDtRcWFANGVCBjqayOc7GheRFGwPbSYOF1JBHUYsWg6qEgAIdTWWFiXVdwDwg2hjMdxDbce5++9vf0gE6BARVKQEFOMJkNRM3Wq4wINoItlNwzx62w9w988wzdHDKLfjUk9VOXOkTwAHQRtsRgwUUlHKqVzKd8g0Gd1nQpHpGOxpsBwwaUICFi2xgyi04HWa1k2x0+pfJbf9jhR88oKCk+aiSsdpJVmcXx4/42P4PFDzaAYNhA1J20lKEIuDDJc1TOdr6hxW5mIACNiBlp29961u0fpKd5qkcFRdQwAak7KSQKgqWKehCZQcIqcHWQi3DBqTspJAqkibUE0NI7TJFBRUbkLKTQqpYCqqEtv5hRS0qqNiAlJ2w6JXVT4qgT/4S2f4PKyqCqoj5qaEvLK4Fq50URUGVwI4GK+ypqNDZaZ3UerjPFqudFEdB1RNttMLiyxVZwbPAJR9sYMotup1wVRRUPdBGsMLuNvhYlRXdVe5bBtcI1zey2kmxFFQd0cbACnuHGWRCXfNSq2m1eZUUVB3QxpgVN/s81auvvkoHp3ww++Uvf0lrJlXQ3T5boo2MFfeAyXb6p3tKLaf1UdXTOqoWaOMyVlyc/mW7pbBu2bKTbtEyGgqqhmjjOlbgY1HBXeBoCl/jxAbrVOkoajRwVqKLkhugjU2gwMb9qErLEW7BPB2rkVQLQaUveViDNrZhRcZRletclRZ3fvTlC/pEb5R0P6o1aGNbVmTMVeEm9Wwn9IbBOeXTPrx3ffHCqF1g40o+Qhu7smLvMbgBGNsRvWCQTjWoTp8+TWsio6KlCUvQxr6s4LisJvkp4NSCCu9VK8snRTfNI2hjClZw3FXhuEkaVggqXFzLBrUXBAWOZnIGpE7xJkkT6QRtTMmKnjysMEeVYw0VJqsXgwJLInIEJD4o0CT5ZF1i42jKaKMHK37ysMKaIa9r/LD0YVlQnDt3zuWoSqd3Mqf5qQW00ZPtAITVyws7pDcM7BRhhZDAWqQmd7xEgCHIUoQVth3Bp6MnWaD5qTna6M12AI6o2I7pBadmCJk2gYWQwQW7CLquIYH5Kpx+tgksbCMeo0/uZAl8Sq71U4Y2erPiu4TUIgQOTgdxhIIjnhjCwWNiGkdheG72moBtanKkJmJOsfEzNbTRmxXfPaRERmLyp3200ZsVXiEl0szkT/toozcrukJKpLlJn/bRRm9W9CQh9ZWvfGX25JNP0p+JjMxkT/toozcreO+QOnPmzOzGjRtbNjc3tyal0baxsUF/X6Rym2wsTQFt9GYF7xVSiwG1zJUrV7aC6/nnn589++yzsxMnTtDnygFHe9gGbAu2Cdv25ptvKlClrWNsPI0dbfRmxe4cUk0CahUcdSEkLl68ODt//vyW5557bitEgqankIuPgfB8IYjwWmwbgmvXrimopA1crTG5SXTa6M0K3TmkMKgxuNmgrw1CTHNq0tLkvhaLNnqzQvc63RtDUCmgpIdJ3SmBNnqzIveeOK85qBRQ0tOk7pRAG71ZkXuHFNQYVAooSWQySxJoozcrcJKQgpqCSgElCU3maIo2erMCJwspqCGoFFDiYBJHU7TRmxU3aUhByUGlgBInkziaoo3erLjJQwouX75MQ2JoWMTJtlckgdEfTdFGb1bY5CGFxZksIEqBRahsu0V6Gv3RFG30ZoVNGlKlB1SgoBInu9k4Gwva6M2KmiykagmoQEElDka9Cp02erOiJgmp2gIqUFCJg9GuQqeN3qygvUOq1oAKFFSS2Gi/Bos2ekNBowK3UntABQoqSegmG2tjQBu9WUE7hxRuhcIGfK1wixf2PkU6OMzGW+1oozcrZueQwqJILI5kA742OCJk71Gko1EuR6CN3qyYvU73xhBUCihxMroJdNrozQrZe+K85qBSQImj0X2zDG30ZoXsHVJQY1ApoMTZdTbmakYbvVkhk4QU1BRUCijJZFTX89FGb1bEZCEFNQSVAkoyGtUKdNrozYqYNKSg5KBSQElmo1ozRRu9WRGThxRgzRELiaGxbRVxdoCNvRrRRm9WQIWUiK/RfMpHG71ZARVSIr5G8ykfbfRmBVRIifgbxX2maKM3K55CSsTfMTb+akMbvVnxFFIi/kZxLR9t9GbFU0iJ5LGLjcGa0EZvVjiFlEge1S9FoI3erHAKKZE8ql+KQBu9WeEUUiJ5VD8vRRu9WeEUUiKZxOOvNrTRmxVOISWST9V3RaCN3qxoCimRfKpeL0UbvVnRFFIi+Vxg47AWtNGbFU0hJZLPJhuHtaCN3qxoCimRjOIxWBPa6M2KppASyavayXPa6M0KppASyavaLw6ljd6sYAopkbyOs7FYA9roDQWLCpiEQkpkqWpXntNGb1YwhZRIXtV+wkcbvVnBFFIimcXjsBa00ZsVTCElkl+V95aijd6sWAopkfyqXIZAG71ZsRRSIvkppJqyYimkRPKrchkCbfSGYkXFS0IhJbKSQqopFCsqXhIKKZGVzrHxWDra6M2KpZASye+/2XgsHW30ZsVSSInkV+VXr9NGb1YshZRIfu+x8Vg62ujNiqWQEsnvr2w8lo42erNiKaREBhCPxRrQRm9WLIWUyADisVgD2ujNiqWQEhlAPBZrQBu9WbEUUiIDiMdiDWijNyuWQkpkAPFYrAFt9GSF2m1uLhYuFYVUGo899hhtl1Go7l7ntNGLFcgtoEAhlYZCavSqCira6MEK4xpQoJBKQyE1CdUEFW1MzQriHlCgkEpDITUZVQQVbUzJCpEloEAhlcajjz5K22WUig8q2piKFSBbQIFCKo1Dhw7RdhmtooOKNqZgbzxrQIFCKg2F1CQVG1S0MQV709ejIrhTSKVx//3303YZvSLvgU4bU7A3rCOpObatJTt48CBtl1E7y8ZxCWhjKvbGNSdl2LaW7J577qHtMlrFBhTQxpSsAPp0j2xryfbt2zd7/PHH6c9kdIoOKKCNqVkhsgSVQioNhNSRI0foz2RUig8ooI0erCDuQaWQSgMh9eCDD9KfyWhUEVBAG71YYVyDSiGVBkJq//799GcyCtUEFNBGT1Ygt6BSSKWBkLrrrrvoz6R6VQUU0EZPViSFVOEQUnfeeaeu4RsnhdQqViCd7lUghNRDDz1Efy7V0+keY4XRxHklQkjh3+znMgqaOF9kBXEPKFBIpRFCCrReatSqCCramJIVIktAgUIqjcWQ0sXGo1d8UNHGVKwA2QIKFFJpLIaUTvkmoeigoo0p2BvPGlCgkEpjMaTg6NGj9PdkVIoNKtqYgr3pS1ER3Cmk0ohDSqvPJ2Nyt2rZZTYXCuBOIZVGHFJa2DkJ07vpHdgbzxpUCqk04pACTaCP2jRvHxxYAbIF1cbGBg2JobFtLRkLqT179tDflepN+4sYAitEtqBiITE0tp0lYyEFOpoaneIDCmijBytIlqBiITE0tp0lWxZSOpoalSoCCmijFyuMe1BduXKFBsWQ2HaWbFlIgY6mRqGagALa6MkK5BpUFy9epEExJLadJVsVUjia0qUyVSsioGxc7DZ7zGFzbP7fdAnEjoYcrFDHo8Ilc+bMGRoUQ2LbWbJVIQVaN1WveCzmZGPhgLlgboaxscSmQXDtwuPok3mzYrmFVImf8LHtLNm6kMK6Ka1Cr1M8FnOwMYBwur44JhpCmB2nT+rNiuUWUvDmm2+yNzwYto0lWxdSgN9hj5WyxWPRk/X9XQZHTnRcNEWf3JsVyzWkSpuXYttYsiYhBbopXn3isejF+j0CCqdtdEy0QV/AmxXLNaSee+45+maHwraxZE1DSqd99YnHogfr88kCCuiLeLNiuYYUlHTKx7avZE1DCvbu3UufQ8oUj0UP1ucvxWOgD/oi3qxY7iF1/vx5+oaHwLavZG1CCg4ePEifR8oTj8XUrL8fj/t/X/SFvFmx3EPqxIkT9A0PgW1fydqGFGiRZx3isZiS9XWc5q1bXtAafTFvViz3kIJSJtDZtpWsS0iBvgKrfPFYTMn6evKjKKAv5s2KlSWkSjmaYttWsq4hhYl0BVXZ4rGYkvX1Lmuh1qIv5s2KlSWkoISjKbZdJesaUoCJdF02U654LKZi/RyXudD+3xd9QW9WrGwh9eSTT86uXbtG33wubLtK1iekQEFVrngspmL93OVUD+gLerNiZQspeP755+mbz4VtU8n6hhQoqMoUj8VUrJ+fjft9KvQFvVmxsoYUDHkLF7Y9JUsRUqCgKk88FlOxfp50bdQi+oLerFjZQ2rI0z62PSVLFVKgyfSyxGMxFevnCqkUhvqiBrYtJUsZUoCgOnLkCH0tySsei6lYP1dIpTLE/abYdpQsdUgFuiB5ePFYTMX6efJFnAF9QW9WrMFCCnIvS2DbUDKvkIL77rtP81QDisdiCtbHsdKc9v0U6It6s2INGlKQM6jY65fMM6QAtyDWPNUw4rGYgvVx3NSO9v0U6It6s2INHlKQK6jYa5fMO6QC3YY4v3gspmB93G35AdAX9WbFKiKkIMccFXvdkuUKKcAyBU2q5xOPxb6sf7ue6gF9YW9WrGJCCnCTPM/lCew1S5YzpALNVeURj8W+rH+7rTQP6At7s2IVFVKAi5E3Nzdpkfpir1eyIUIKsFQBp4AKKz/xWOzD+rbb9XqL6It7s2IVF1IBbpaX+qiKvU7JhgqpQGHlajcbk21Zv056i+BV6AZ4s0IVG1KAo6rLly/TgnXBXqNkQ4dUgLDCXT91H/WkjrMx2Zb1a9fJ8kV0A7yhUFHhioQV6imu+WPPXbJSQmrR/v37Z4888gjdXmnlutn60s0urD/jCCpbQAHdEG9WpCpCKkBY9VmuwJ6zZCWGVICjK0yyK7B6OcvG5TrWlzEHleUUbxHdGG9WpKpCKsBFyrjtS9ujK/ZcJSs5pBYhsHCEhfura3Foa42Dyvowjp7cP8Vbhm6UNytQlSG1CIGFpQsvvfTS2tBijy9ZLSEVQ2hh2zHpjiMtBddaOPU7zMao9VsEE1aSZz21Y3ZsXEr2AncYvFGk8CmDK6UvXb169ToGNuA0Cp+oYVHlxsYGK2QVEFqnT5/eej8/+9nPtr73LwjvFZPxeK84GsMpJHueEniGFJ7785///Ox73/vell/84hcUaoSff/WrX92aOMeCz64UVo389eTJk//1ne98Z/OnP/3p22+99dZ7NlZpaORGw6Ure0Kk72GD73/vfFU0BjQ6KT5lI8UsRjiS6vNFpFibhecoKaBTh9QXv/jF2Y9+9KPZr371K1qDJkqs09jhL14cPLzxxhtudzhogoZNW/ZEe4zLYSECC4ViRRwCghODxWOFOsIO4YzOwV47lxQhdf/9928dCfUJ8GXwnDgiHbpOU4Ijfzu6+pDtD280dJqyJ0A4ud3sahE65pBhhXDKdUEyAnDIQdgnpBBOL774In1fqQ1dp6lBnXONgUU0fNaxB2KuCad09Ek94bA/53wOdgwGAtsWbxiEQwRz15DCkZPHEeY6eE0cgbL3IumhT7L94IWG0Cr2oGNm0HNUwCmX99+gmP/wOF1pC6e8Oefn2obUww8/3Gu+KRX8BVb6POZY4C8Ftg880CBi7JezrzRdx7NT5twJTeBoARP1bFtTaxNSJ0+epNs7lKGOPqco5aVjq9BAitkvIqCyrzRtAp0y9Sc+Q5x3N5VjADYNqVxzT13gFJ29N0kHZzI5Tu9pKC2yX8JSeJfveE8pxeBF0XP97dAHQpRtfypNQqrkgAq86yR55qdoMAX2C5ggH3z+qam+p0OY+2HPWyLPAbgupGoIqEBB5c/7aIqGE9gPiz3FW6bPqV/Jp3jLeJ36rQqpmgIq0KmfL3yIxeqeyCkaUGA/zLL+KTUEVdtP/YZaYpCCx3KMZSFV2iR5G7k+dJgi9EFW8wRwkLRrWUANdsVzCjhtY8VkHAucRZdQXoeFFJYZsNevBeqk5Ql+WM17wjTT1l1EWUBluW+xtyaL+zC4S1gH1VebUG6ChVQJ66D6Sl0nucVhHG3fnYGFVFXzUMs0+ZvT+Vw6q5SnM3FIYSU5e80aaWW6j8QfOp1azKQ4oHAHA/agKq36ZAcBxh5TK/xNlvK0LwQUrsVD4LPXrJHH6bEkDakdN+NbDCh8mlfNcoOmlk0s1/hp3jqpPsX68pe/vB1SNX6at44+7UsvUUjRu4Vu/4f9wqiOogIszowLOrajqABHCfF77eIHP/jB9lEUe53a6WgqPVbnlpbeznj7P+yXil9V3lU8NzXGo6ig79qpb3zjG9shdfbsWfoaY6C5qXSwNpHVuIWV91vf+of9Eu4LxR48CouH9/gbdExzLDFcdL3Ygdp64YUXtkNqzHXCHB57/9Jez4vxb5skZ7b+Yb9Y1N0NUlvskDmuNRpan/VAf/rTn7ZCCrf8Zc89JroVcRr4i5HVdw3Mf9MvgYht/WP+APZEoxE6ZA0XEPfV9VQGyxjwByE1xgnzmCbQ++u4GBrLnBp/3TsCahSLN9cJA3fMpzAB+7Cgibffftv6xEchNYZFruv0PTWWTp/q4VujWn2DMkIKd9pkTzYqGLgJJviq0OVTPsxFhT8XLlygzztGrBbSTMu5KBw97bHuRYNoldHPRwU4MpjCfFTQZr4Fn+gt/nn11Vfpc46RxwXaU4D+1fCsBFNJx6xb0QBqAiFV5d0Ouqj5bgdtNb1MBgH14YcfWl+49ec3v/kNfc4x0lKE9hoGFMIJNypodWrHIKTYC4xSx08hqtRkUhhBFgcU/rzxxhv0OcdIk+ft4Mjzj3/84/+xWs5hvSUWhvcOp0AhNVKrBt9TTz01e+WVV2z/8z/vvPMOfc4x0p07m8H6whVnIjhqwrRR40/s2lBIjRTu8BB3NIQTJsjff/992/fL/0wppHT7ltUQTpjL/cMf/vC3qHaYCMcndZ0mw9uYVEhdvXqVto8RAhmnc4Cjpt/97ne2v5v9UUhNExYB43QOfvzjH7//+uuvv2undn+x/vCa1QqBhJUA7qF0u9nH/h+sBaOnOz4IxQAAAABJRU5ErkJggg==") + ContentType = "image/png" + } + ) +} +New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgChatMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + Content = "Hello world" + } +} +New-MgChatMessage -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgChatMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgChatPinnedMessage.md b/src/Teams/Teams/examples/v1.0-beta/New-MgChatPinnedMessage.md index 093355d11d5..5a03b468fec 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgChatPinnedMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgChatPinnedMessage.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgChatPinnedMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "Message@odata.bind" = "https://graph.microsoft.com/beta/chats/19:2da4c29f6d7041eca70b638b43d45437@thread.v2/messages/1616964509832" +} +New-MgChatPinnedMessage -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgChatPinnedMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgChatTab.md b/src/Teams/Teams/examples/v1.0-beta/New-MgChatTab.md index 093355d11d5..aef527f0a66 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgChatTab.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgChatTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "My Contoso Tab" + "TeamsApp@odata.bind" = "https://graph.microsoft.com/beta/appCatalogs/teamsApps/06805b9e-77e3-4b93-ac81-525eb87513b8" + Configuration = @{ + EntityId = "2DCA2E6C7A10415CAF6B8AB6661B3154" + ContentUrl = "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154/tabView" + WebsiteUrl = "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154" + RemoveUrl = "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154/uninstallTab" + } +} +New-MgChatTab -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeam.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeam.md index 093355d11d5..4a0770b90bd 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeam.md @@ -1,18 +1,236 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('standard')" + "Group@odata.bind" = "https://graph.microsoft.com/beta/groups('dbd8de4f-5d47-48da-87f1-594bed003375')" + Channels = @( + @{ + DisplayName = "Class Announcements 📢" + IsFavoriteByDefault = $true + } + @{ + DisplayName = "Homework " + IsFavoriteByDefault = $true + } + ) + MemberSettings = @{ + AllowCreateUpdateChannels = $false + AllowDeleteChannels = $false + AllowAddRemoveApps = $false + AllowCreateUpdateRemoveTabs = $false + AllowCreateUpdateRemoveConnectors = $false + } + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" + } + ) +} +New-MgTeam -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('educationClass')" + DisplayName = "My Class Team" + Description = "My Class Team’s Description" +} +New-MgTeam -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('educationClass')" + DisplayName = "My Class Team" + Description = "My Class Team’s Description" + Channels = @( + @{ + DisplayName = "Class Announcements 📢" + IsFavoriteByDefault = $true + } + @{ + DisplayName = "Homework " + IsFavoriteByDefault = $true + } + ) + MemberSettings = @{ + AllowCreateUpdateChannels = $false + AllowDeleteChannels = $false + AllowAddRemoveApps = $false + AllowCreateUpdateRemoveTabs = $false + AllowCreateUpdateRemoveConnectors = $false + } + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('standard')" + "Group@odata.bind" = "https://graph.microsoft.com/beta/groups('71392b2f-1765-406e-86af-5907d9bdb2ab')" +} +New-MgTeam -BodyParameter $params +``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('standard')" + Visibility = "Private" + DisplayName = "Sample Engineering Team" + Description = "This is a sample engineering team, used to showcase the range of properties supported by this API" + Channels = @( + @{ + DisplayName = "Announcements 📢" + IsFavoriteByDefault = $true + Description = "This is a sample announcements channel that is favorited by default. Use this channel to make important team, product, and service announcements." + } + @{ + DisplayName = "Training " + IsFavoriteByDefault = $true + Description = "This is a sample training channel, that is favorited by default, and contains an example of pinned website and YouTube tabs." + Tabs = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.web')" + DisplayName = "A Pinned Website" + Configuration = @{ + ContentUrl = "https://docs.microsoft.com/microsoftteams/microsoft-teams" + } + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.youtube')" + DisplayName = "A Pinned YouTube Video" + Configuration = @{ + ContentUrl = "https://tabs.teams.microsoft.com/Youtube/Home/YoutubeTab?videoId=X8krAMdGvCQ" + WebsiteUrl = "https://www.youtube.com/watch?v=X8krAMdGvCQ" + } + } + ) + } + @{ + DisplayName = "Planning 📅 " + Description = "This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu." + IsFavoriteByDefault = $false + } + @{ + DisplayName = "Issues and Feedback " + Description = "This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu." + } + ) + MemberSettings = @{ + AllowCreateUpdateChannels = $true + AllowDeleteChannels = $true + AllowAddRemoveApps = $true + AllowCreateUpdateRemoveTabs = $true + AllowCreateUpdateRemoveConnectors = $true + } + GuestSettings = @{ + AllowCreateUpdateChannels = $false + AllowDeleteChannels = $false + } + FunSettings = @{ + AllowGiphy = $true + GiphyContentRating = "Moderate" + AllowStickersAndMemes = $true + AllowCustomMemes = $true + } + MessagingSettings = @{ + AllowUserEditMessages = $true + AllowUserDeleteMessages = $true + AllowOwnerDeleteMessages = $true + AllowTeamMentions = $true + AllowChannelMentions = $true + } + DiscoverySettings = @{ + ShowInTeamsSearchAndSuggestions = $true + } + InstalledApps = @( + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" + } + @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('standard')" + DisplayName = "My Sample Team" + Description = "My Sample Team’s Description" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('0040b377-61d8-43db-94f5-81374122dc7e')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('standard')" + DisplayName = "My Sample Team" + Description = "My Sample Team’s Description" +} +New-MgTeam -BodyParameter $params +``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the New-MgTeam Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "Template@odata.bind" = "https://graph.microsoft.com/beta/teamsTemplates('standard')" + DisplayName = "My Sample Team" + Description = "My Sample Team’s Description" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" + } + ) +} +New-MgTeam -BodyParameter $params +``` +This example shows how to use the New-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannel.md index 093355d11d5..d50a1e7b9eb 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannel.md @@ -1,18 +1,108 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@microsoft.graph.channelCreationMode" = "migration" + DisplayName = "Import_150958_99z" + Description = "Import_150958_99z" + CreatedDateTime = [System.DateTime]::Parse("2020-03-14T11:22:17.067Z") +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Architecture Discussion" + Description = "This channel is where we debate all future architecture plans" + MembershipType = "standard" +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "TestChannelModeration" + Description = "Test channel moderation." + MembershipType = "standard" + ModerationSettings = @{ + UserNewMessageRestriction = "everyoneExceptGuests" + ReplyRestriction = "everyone" + AllowNewMessageFromBots = $true + AllowNewMessageFromConnectors = $true + } +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#Microsoft.Graph.channel" + MembershipType = "private" + DisplayName = "My First Private Channel" + Description = "This is my first private channels" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" + Roles = @( + "owner" + ) + } + ) +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#Microsoft.Graph.channel" + MembershipType = "private" + DisplayName = "My First Private Channel" + Description = "This is my first private channels" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users('62855810-484b-4823-9e01-60667f8b12ae')" + Roles = @( + "owner" + ) + } + ) +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeamChannel Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "My First Shared Channel" + Description = "This is my first shared channel" + MembershipType = "shared" + Members = @( + @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + "User@odata.bind" = "https://graph.microsoft.com/beta/users('7640023f-fe43-gv3f-9gg4-84a9efe4acd6')" + Roles = @( + "owner" + ) + } + ) +} +New-MgTeamChannel -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelEmail.md index 093355d11d5..9891e05aa78 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelEmail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamChannelEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +New-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamChannelEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMember.md index 093355d11d5..83d23456f5f 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMember.md @@ -1,18 +1,82 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeamChannelMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeamChannelMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users('jacob@contoso.com')" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeamChannelMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users/24b3819b-4e1d-4f3e-86bd-e42b54d0b2b4" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeamChannelMember Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + ) + "User@odata.bind" = "https://graph.microsoft.com/beta/users/bc3598dd-cce4-4742-ae15-173429951408" + TenantId = "a18103d1-a6ef-4f66-ac64-e4ef42ea8681" +} +New-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessage.md index 093355d11d5..a2b48d86c89 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessage.md @@ -1,18 +1,340 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamChannelMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + Content = "Hello World" + } +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamChannelMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + Content = "Hello World" + } +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Subject = $null + Body = @{ + ContentType = "html" + Content = "" + } + Attachments = @( + @{ + Id = "74d20c7f34aa4a7fb74e2b30004247c5" + ContentType = "application/vnd.microsoft.card.thumbnail" + ContentUrl = $null + Content = "{ + "title": "This is an example of posting a card", + "subtitle": "

This is the subtitle

", + "text": "Here is some body text.
\r\nAnd a hyperlink.
\r\nAnd below that is some buttons:", + "buttons": [ + { + "type": "messageBack", + "title": "Login to FakeBot", + "text": "login", + "displayText": "login", + "value": "login" + } + ] +}" + Name = $null + ThumbnailUrl = $null + TeamsAppId = "881b8843-fd91-49e5-9ac2-47ec497ffbe5" + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Hello World Jane Smith" + } + Mentions = @( + @{ + Id = 0 + MentionText = "Jane Smith" + Mentioned = @{ + User = @{ + DisplayName = "Jane Smith" + Id = "ef1c916a-3135-4417-ba27-8eb7bd084193" + UserIdentityType = "aadUser" + } + } + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Subject = $null + Body = @{ + ContentType = "html" + Content = "" + } + Attachments = @( + @{ + Id = "74d20c7f34aa4a7fb74e2b30004247c5" + ContentType = "application/vnd.microsoft.card.thumbnail" + ContentUrl = $null + Content = "{ + "title": "This is an example of posting a card", + "subtitle": "

This is the subtitle

", + "text": "Here is some body text.
\r\nAnd a hyperlink.
\r\nAnd below that is some buttons:", + "buttons": [ + { + "type": "messageBack", + "title": "Login to FakeBot", + "text": "login", + "displayText": "login", + "value": "login" + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Here's the latest budget. " + } + Attachments = @( + @{ + Id = "153fa47d-18c9-4179-be08-9879815a9f90" + ContentType = "reference" + ContentUrl = "https://m365x987948.sharepoint.com/sites/test/Shared%20Documents/General/test%20doc.docx" + Name = "Budget.docx" + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Subject = $null + Body = @{ + ContentType = "html" + Content = "" + } + Attachments = @( + @{ + Id = "74d20c7f34aa4a7fb74e2b30004247c5" + ContentType = "application/vnd.microsoft.card.adaptive" + ContentUrl = $null + Content = "{ + "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", + "type": "AdaptiveCard", + "version": "1.2", + "speak": "The Seattle Seahawks beat the Carolina Panthers 40-7", + "body": [ + { + "type": "Container", + "items": [ + { + "type": "ColumnSet", + "columns": [ + { + "type": "Column", + "width": "auto", + "items": [ + { + "type": "Image", + "url": "../hostedContents/1/$value", + "size": "Medium" + }, + { + "type": "TextBlock", + "text": "SHADES", + "horizontalAlignment": "Center", + "weight": "Bolder" + } + ] + }, + { + "type": "Column", + "width": "stretch", + "separator": true, + "spacing": "Medium", + "items": [ + { + "type": "TextBlock", + "text": "2019-08-31T19:30:00Z", + "horizontalAlignment": "Center" + }, + { + "type": "TextBlock", + "text": "Final", + "spacing": "None", + "horizontalAlignment": "Center" + }, + { + "type": "TextBlock", + "text": "40 - 7", + "size": "ExtraLarge", + "horizontalAlignment": "Center" + } + ] + }, + { + "type": "Column", + "width": "auto", + "separator": true, + "spacing": "Medium", + "items": [ + { + "type": "Image", + "url": "../hostedContents/2/$value", + "size": "Medium", + "horizontalAlignment": "Center" + }, + { + "type": "TextBlock", + "text": "SKINS", + "horizontalAlignment": "Center", + "weight": "Bolder" + } + ] + } + ] + } + ] + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + ) + HostedContents = @( + @{ + "@microsoft.graph.temporaryId" = "1" + ContentBytes = [System.Text.Encoding]::ASCII.GetBytes("iVBORw0KGgoAAAANSUhEUgAAASkAAAEpCAYAAADPmdSCAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAhr0lEQVR4Xu3d76tdV50GcP+EvJu3/QuGvJgXxSk0Y8QwzZRmCG2lQkjrkM4UjOmLgmAt0bQGLqipo1ghmIhSRBIMbV+UpmiIRSYV9IqmHaqNgRJbUGqoA30xMGe+z+1ZNyfrPuec/WN9115r7yfw6Y917zlnn+9e68ne66y9z8dms1kjTzzxxC6zxxw3h80d7Pekfti3832MfX3A7GK/J5IDbYxZJz1mbppZ5JJRBx4J7Etzar5vY8fZY0S80cZF6JxRZ41dN7vZY6Uetg8RUJvzfbrMWfZYEU+0MbBOicN+1lljOMo6zJ5Dymf7bvd8H7J9G9vDnkPEC20MrEMuO/Rf5hR7HimX7TOcyrN9ucwF9jwiXmhjYB0Sc06so66ieaoKYB+Zs/N91sYl9nwiXmhjgA4ZddCmNE9VMNs3OI1fN/+0jEJKsqKNATpk1EHb0DxVgWyfYBlJ0/knRiElWdHGAB0y6qBd6BOhQti+aDv/xCikJCvaGKBDRh20K5xaaJ5qIKi96TL/xCikJCvaGKBDRh20D5xiaJ4qM9TcdJ1/YhRSkhVtDNAhow6aguapMrFa45KWPvNPjEJKsqKNATpk1EFT0TyVM6vxuisFulJISVa0MUCHjDpoSjgF0UXKiVlNMf90YV5jDwopyYo2BuiQUQdNDaciuswiEatl6vknRiElWdHGAB0y6qBejrHXl+ashh7zT4xCSrKijQE6ZNRBPeEjci1T6MDq1vYayz4UUpIVbQzQIaMO6k3zVC1YrTD/lHsfKaQkK9oYoENGHTQHzVM1YDXC/BOukWQ19KSQkqxoY4AOGXXQnHQnyCWsNri1b475J0YhJVnRxgAdMuqgueGjdM1TLbB65Jx/YhRSkhVtDNAhow46BMxTTf5yGqvBEPNPjEJKsqKNATpk1EGHglObA2wb27hx40bnSXl7bKcjuq6PW2Tvvc3tfb0ppCQr2higQ0YddGid56ksLM6am6b1Udn8sZumVeDg9+eP63wZkL1nzD+xWgxFISVZ0cYAHTLqoCVoPU+FkDCzuVZBFT22cVDh9+a/Hx7bOqjsfaa6vUpKCinJijYG6JBRBy1F49sTIxwWgiJoFFT2O+yxa4MKP5//XvzYRkFl7w3zT96Xt3SlkJKsaGOADhl10JJgjmblbV8QClFILFoZVPazVY9dGlRon/+cPQ5WBpW9p7639/WmkJKsaGOADhl10BLRr9FCGEThwNCgsrYmj90RVPj/eTv7/UU0qOy9pLi9rzeFlGRFGwN0yKiDlgrbuR0YCIEoFFa5Lajsv9s8djuo8O/5/7PfY7aDCttuSpx/YhRSkhVtDNAhow5asq15Kgz+KAya2Aoq0+WxCKY75v9mP18FwdTn66WGoJCSrGhjgA4ZddCiPf300x9cv379f0kYFOub3/zm/7D3UrDkIXXz4393hzlrLk3IBaNrVBugjQE6ZNRBi7exsTG7du0aDYTSnDlzhr6HwiULKRukIZxmE4bAUlitQBsDdMiog1ahhqCqNKCgd0jZoFQ47aSwWoI2BuiQUQetRslBVXFAQeeQskGocFpPYRWhjQE6ZNRBq1JiUFUeUNA6pGzQKZzaU1jN0cYAHTLqoNUpKahGEFDQOKRskCmc+pt8WNHGAB0y6qBVKiGoRhJQsDakbFApnNKbbFjRxgAdMuqg1RoyqEYUULA0pGwQDRlOGMRdXDfs+UqFbZ5UWNHGAB0y6qBVu3LlCg0Rb2xbKrYjpGzQDBlOeN1eX95hjz9sFFaFoo0BOmTUQaumkEpiO6RskFQdTjF7PoVVgWhjgA4ZddCqKaSSwKAYVTjF7PkVVgWhjQE6ZNRBq6aQ6ufpo/8xe/1f/uG9aHDk4h5OMXs9hVUBaGNgHVMhlQDblpognC4f+DgbEDlkD6eYvb7CakC0MbAOqpBKgG1LDaYeTjHbHoXVAGhjYB1VIZUA25aSKZxWs+1TWGWEgrM3JJJb8eEUs+2tMayqo5CSoVUXTjHbfoWVn0sKKRlK9eEUs/ejsEpn+/RUISW5jS6cYvb+FFbd7Zg7U0hJLqMPp5i9X4VVc0sn9hVS4m1y4RSz96+wWm7tp44KKfEy+XCKWT0UVrc0XhKhkJLU3jR/zzqbfMTqM+WwahxOgUJKPNw0xw39Knr5iNVnSmHVOpwChZR4Ulg1YPUZc1h1DqdAISU5KKwasPqMKax6h1OgkJKcFFYNWH1qDqtk4RQopGQICqsGrD41hVXycAoUUjIkhVUDVp+Sw8otnAKFlJRAYdWA1aeksHIPp0AhJSVRWMkOCikpkcJKtimkpGQKK1FISRUUVhOmkJKaKKwmSCElNVJYTYhCSmqmsJoAhBR2MnXx4N3XX3zwUzPm9L/unT2w5x+r8vA9n5r9273/nB3blpI9s/+f6D6HAb/qahWEFdbtTAHu0zWpUKaNwRMrvnfvyJEjszvvvFNG6IEHHqD7HP7zyCEWEuIPizgPs3E6drQxsE6pkJoghVRRJhtOAW0MrFMqpCZIIVWEyYdTQBsD65QKqQlSSA1K4RShjYF1SoXUBCmkBqFwWoI2BtYpFVITpJDKSuG0Bm0MrFMqpCZoVUid+vfDH0aDTLpRODVEGwPrlEtDKvjc5z43e+ihh2Z33XUX7fC1uvfee2c//OEPZ7/+9a9nN27c2PLWW29ttX3605+mj6kV9h2C6bHHHqP7OIK1OmO6F3duCqeWaGOADhl10KUef/zx2f79++kgqM0XvvCF7WBa5rvf/S59bG327t279RcN26dLXAr9A4NtPujYYJTbKZw6oo0BOmTUQdeqPaiaBFSAoyr2HLVAQOEvF7YfV9gOqQCDbz4I2eCcOoVTT7QxQIeMOuha6PS1nvrhFI+F0SpHjx6lz1WDlkdQwY6QCjAY54OSDdapUTglQhsDdMiogzaCOSo2KEqHIyMWRKu89tpr9LlKd99999F918DSkAowOOeDlA3esVM4JUYbA3TIqIM2gr+h2cAoHQuhJnAExp6vZI888gjddw2sDakAg3U+aNlgHhuFkxPaGKBDRh20MTYwSoZP7FgANfHZz36WPmfJOsxFBY1DKsDgnQ9iNrhrp3ByRhsDdMiogzbGBkbJPvOZz9AAagKPZc9ZMrbPGmodUoEN5j1jw96npEUbA3TIqIM2dvfdd9PBUSocDbEAauLEiRP0OUvG9llDnUNKpAvaGKBDRh20sX379tHBUao+IfX1r3+dPmfJ2D5rSCElWdHGAB0y6qCN1bZeCkHDAqiJ2hZ24i8Qts8aUkhJVrQxQIeMOmhjuMyCDZBSdVl+ELzyyiv0OUuFv0DYPmtIISVZ0cYAHTLqoI3hI242QEqF9U4sgJpiz1kqrGNj+6whhZRkRRsDdMiogzaGj7jZACnRJz7xCRo8bdR00XHDC4mXUUhJVrQxQIeMOmgrtcxLtbleb5la5qXwqSvbVy1smj1z+iopcUcbA+uEvULq0KFDdKCUBnNKLHjawC1d2HOXZtW9onpCX4FT5rhBiO1m/UqkDdoYzDsd65CNlb5eqs9K8xiOyNhrlKTHSvM+cPR1wYTw0hGYNEYbA+tMvUOq9KOpn/zkJzRwuij9aKrHRcUerhsE1zGjIy5ZijYG1nl6hxSUejTVZwHnMqUeTeH2OQMdRTV10yi0ZAfaGFhnSRJSpd4Pve+yAwa3GManhez1htRz2cEQcKSF+a0DrG/KdNDGwDpIkpCCgwcP0sEzFHwax0ImBZxCstccSs/FmyXAUdZZo8CaINoYWKdIFlKA29WyQZRbiiUH65Ry0XHHWwSXLASW7kAwEbQxsI6QNKQwWLyDCpPDTz311Oz8+fOzzc3N2QcffLDt/Rdenr2378Gs/nLy2du2Adv08ssvzzY2Nra2lb2HVDAP1XPhZulwSohPDO9g/VfGgTYGtvOThhR4BRWCKQ4lJmdQxQHF/P73v98KrE9+8pP0fXU1gYCKYdJdR1cjRBsD2+nJQwoQVKlWoyOcMNBZACyTI6iaBNSid999d/btb387SViN8BSvDRxdHTZaizUStDGwHe0SUkGfL2zA3TCbHDkt4xlUbQNqEQL30Ucfpe+5CXxAwWo9QZi7wqmgwqpytDGwHewaUoAvbWh7gzycHrEB3pZHUPUJqEXf//736XtfBjXEUg9W44lTWFWONga2Y91DKsAAa3IKiAlxNqi7ShlUqQIqwDqudad/CCes6mc1ldsorCpFGwPbodlCKsCRFU4D2dFV6oAKUgRV6oAKcEobBxXmnHBa1/HLPadOYVUZ2hjYjsweUjEcYeEGevjYng3iVPoElVdABVevXt06WtLpXFIIK30VVQVoY2A7cfCQgnPnztHBm1qXoPIOqODnP/85rY30tnV/LNb/pQy0MbCdN3hIfe1rX6OD1kuboMoVUMHp06dpjSQJrLPSKWCBaGNgO23wkGq7BiqFJkGVO6Dgz3/+8+xLX/oSrZMkgVPAY2wsyHBoY2A7bNCQwje4sMGaw6qgGiKggpdeeonWSpJCv9ftYgpBG4P5zmI7MYt33nmHDtRcWFANGVCBjqayOc7GheRFGwPbSYOF1JBHUYsWg6qEgAIdTWWFiXVdwDwg2hjMdxDbce5++9vf0gE6BARVKQEFOMJkNRM3Wq4wINoItlNwzx62w9w988wzdHDKLfjUk9VOXOkTwAHQRtsRgwUUlHKqVzKd8g0Gd1nQpHpGOxpsBwwaUICFi2xgyi04HWa1k2x0+pfJbf9jhR88oKCk+aiSsdpJVmcXx4/42P4PFDzaAYNhA1J20lKEIuDDJc1TOdr6hxW5mIACNiBlp29961u0fpKd5qkcFRdQwAak7KSQKgqWKehCZQcIqcHWQi3DBqTspJAqkibUE0NI7TJFBRUbkLKTQqpYCqqEtv5hRS0qqNiAlJ2w6JXVT4qgT/4S2f4PKyqCqoj5qaEvLK4Fq50URUGVwI4GK+ypqNDZaZ3UerjPFqudFEdB1RNttMLiyxVZwbPAJR9sYMotup1wVRRUPdBGsMLuNvhYlRXdVe5bBtcI1zey2kmxFFQd0cbACnuHGWRCXfNSq2m1eZUUVB3QxpgVN/s81auvvkoHp3ww++Uvf0lrJlXQ3T5boo2MFfeAyXb6p3tKLaf1UdXTOqoWaOMyVlyc/mW7pbBu2bKTbtEyGgqqhmjjOlbgY1HBXeBoCl/jxAbrVOkoajRwVqKLkhugjU2gwMb9qErLEW7BPB2rkVQLQaUveViDNrZhRcZRletclRZ3fvTlC/pEb5R0P6o1aGNbVmTMVeEm9Wwn9IbBOeXTPrx3ffHCqF1g40o+Qhu7smLvMbgBGNsRvWCQTjWoTp8+TWsio6KlCUvQxr6s4LisJvkp4NSCCu9VK8snRTfNI2hjClZw3FXhuEkaVggqXFzLBrUXBAWOZnIGpE7xJkkT6QRtTMmKnjysMEeVYw0VJqsXgwJLInIEJD4o0CT5ZF1i42jKaKMHK37ysMKaIa9r/LD0YVlQnDt3zuWoSqd3Mqf5qQW00ZPtAITVyws7pDcM7BRhhZDAWqQmd7xEgCHIUoQVth3Bp6MnWaD5qTna6M12AI6o2I7pBadmCJk2gYWQwQW7CLquIYH5Kpx+tgksbCMeo0/uZAl8Sq71U4Y2erPiu4TUIgQOTgdxhIIjnhjCwWNiGkdheG72moBtanKkJmJOsfEzNbTRmxXfPaRERmLyp3200ZsVXiEl0szkT/toozcrukJKpLlJn/bRRm9W9CQh9ZWvfGX25JNP0p+JjMxkT/toozcreO+QOnPmzOzGjRtbNjc3tyal0baxsUF/X6Rym2wsTQFt9GYF7xVSiwG1zJUrV7aC6/nnn589++yzsxMnTtDnygFHe9gGbAu2Cdv25ptvKlClrWNsPI0dbfRmxe4cUk0CahUcdSEkLl68ODt//vyW5557bitEgqankIuPgfB8IYjwWmwbgmvXrimopA1crTG5SXTa6M0K3TmkMKgxuNmgrw1CTHNq0tLkvhaLNnqzQvc63RtDUCmgpIdJ3SmBNnqzIveeOK85qBRQ0tOk7pRAG71ZkXuHFNQYVAooSWQySxJoozcrcJKQgpqCSgElCU3maIo2erMCJwspqCGoFFDiYBJHU7TRmxU3aUhByUGlgBInkziaoo3erLjJQwouX75MQ2JoWMTJtlckgdEfTdFGb1bY5CGFxZksIEqBRahsu0V6Gv3RFG30ZoVNGlKlB1SgoBInu9k4Gwva6M2KmiykagmoQEElDka9Cp02erOiJgmp2gIqUFCJg9GuQqeN3qygvUOq1oAKFFSS2Gi/Bos2ekNBowK3UntABQoqSegmG2tjQBu9WUE7hxRuhcIGfK1wixf2PkU6OMzGW+1oozcrZueQwqJILI5kA742OCJk71Gko1EuR6CN3qyYvU73xhBUCihxMroJdNrozQrZe+K85qBSQImj0X2zDG30ZoXsHVJQY1ApoMTZdTbmakYbvVkhk4QU1BRUCijJZFTX89FGb1bEZCEFNQSVAkoyGtUKdNrozYqYNKSg5KBSQElmo1ozRRu9WRGThxRgzRELiaGxbRVxdoCNvRrRRm9WQIWUiK/RfMpHG71ZARVSIr5G8ykfbfRmBVRIifgbxX2maKM3K55CSsTfMTb+akMbvVnxFFIi/kZxLR9t9GbFU0iJ5LGLjcGa0EZvVjiFlEge1S9FoI3erHAKKZE8ql+KQBu9WeEUUiJ5VD8vRRu9WeEUUiKZxOOvNrTRmxVOISWST9V3RaCN3qxoCimRfKpeL0UbvVnRFFIi+Vxg47AWtNGbFU0hJZLPJhuHtaCN3qxoCimRjOIxWBPa6M2KppASyavayXPa6M0KppASyavaLw6ljd6sYAopkbyOs7FYA9roDQWLCpiEQkpkqWpXntNGb1YwhZRIXtV+wkcbvVnBFFIimcXjsBa00ZsVTCElkl+V95aijd6sWAopkfyqXIZAG71ZsRRSIvkppJqyYimkRPKrchkCbfSGYkXFS0IhJbKSQqopFCsqXhIKKZGVzrHxWDra6M2KpZASye+/2XgsHW30ZsVSSInkV+VXr9NGb1YshZRIfu+x8Vg62ujNiqWQEsnvr2w8lo42erNiKaREBhCPxRrQRm9WLIWUyADisVgD2ujNiqWQEhlAPBZrQBu9WbEUUiIDiMdiDWijNyuWQkpkAPFYrAFt9GSF2m1uLhYuFYVUGo899hhtl1Go7l7ntNGLFcgtoEAhlYZCavSqCira6MEK4xpQoJBKQyE1CdUEFW1MzQriHlCgkEpDITUZVQQVbUzJCpEloEAhlcajjz5K22WUig8q2piKFSBbQIFCKo1Dhw7RdhmtooOKNqZgbzxrQIFCKg2F1CQVG1S0MQV709ejIrhTSKVx//3303YZvSLvgU4bU7A3rCOpObatJTt48CBtl1E7y8ZxCWhjKvbGNSdl2LaW7J577qHtMlrFBhTQxpSsAPp0j2xryfbt2zd7/PHH6c9kdIoOKKCNqVkhsgSVQioNhNSRI0foz2RUig8ooI0erCDuQaWQSgMh9eCDD9KfyWhUEVBAG71YYVyDSiGVBkJq//799GcyCtUEFNBGT1Ygt6BSSKWBkLrrrrvoz6R6VQUU0EZPViSFVOEQUnfeeaeu4RsnhdQqViCd7lUghNRDDz1Efy7V0+keY4XRxHklQkjh3+znMgqaOF9kBXEPKFBIpRFCCrReatSqCCramJIVIktAgUIqjcWQ0sXGo1d8UNHGVKwA2QIKFFJpLIaUTvkmoeigoo0p2BvPGlCgkEpjMaTg6NGj9PdkVIoNKtqYgr3pS1ER3Cmk0ohDSqvPJ2Nyt2rZZTYXCuBOIZVGHFJa2DkJ07vpHdgbzxpUCqk04pACTaCP2jRvHxxYAbIF1cbGBg2JobFtLRkLqT179tDflepN+4sYAitEtqBiITE0tp0lYyEFOpoaneIDCmijBytIlqBiITE0tp0lWxZSOpoalSoCCmijFyuMe1BduXKFBsWQ2HaWbFlIgY6mRqGagALa6MkK5BpUFy9epEExJLadJVsVUjia0qUyVSsioGxc7DZ7zGFzbP7fdAnEjoYcrFDHo8Ilc+bMGRoUQ2LbWbJVIQVaN1WveCzmZGPhgLlgboaxscSmQXDtwuPok3mzYrmFVImf8LHtLNm6kMK6Ka1Cr1M8FnOwMYBwur44JhpCmB2nT+rNiuUWUvDmm2+yNzwYto0lWxdSgN9hj5WyxWPRk/X9XQZHTnRcNEWf3JsVyzWkSpuXYttYsiYhBbopXn3isejF+j0CCqdtdEy0QV/AmxXLNaSee+45+maHwraxZE1DSqd99YnHogfr88kCCuiLeLNiuYYUlHTKx7avZE1DCvbu3UufQ8oUj0UP1ucvxWOgD/oi3qxY7iF1/vx5+oaHwLavZG1CCg4ePEifR8oTj8XUrL8fj/t/X/SFvFmx3EPqxIkT9A0PgW1fydqGFGiRZx3isZiS9XWc5q1bXtAafTFvViz3kIJSJtDZtpWsS0iBvgKrfPFYTMn6evKjKKAv5s2KlSWkSjmaYttWsq4hhYl0BVXZ4rGYkvX1Lmuh1qIv5s2KlSWkoISjKbZdJesaUoCJdF02U654LKZi/RyXudD+3xd9QW9WrGwh9eSTT86uXbtG33wubLtK1iekQEFVrngspmL93OVUD+gLerNiZQspeP755+mbz4VtU8n6hhQoqMoUj8VUrJ+fjft9KvQFvVmxsoYUDHkLF7Y9JUsRUqCgKk88FlOxfp50bdQi+oLerFjZQ2rI0z62PSVLFVKgyfSyxGMxFevnCqkUhvqiBrYtJUsZUoCgOnLkCH0tySsei6lYP1dIpTLE/abYdpQsdUgFuiB5ePFYTMX6efJFnAF9QW9WrMFCCnIvS2DbUDKvkIL77rtP81QDisdiCtbHsdKc9v0U6It6s2INGlKQM6jY65fMM6QAtyDWPNUw4rGYgvVx3NSO9v0U6It6s2INHlKQK6jYa5fMO6QC3YY4v3gspmB93G35AdAX9WbFKiKkIMccFXvdkuUKKcAyBU2q5xOPxb6sf7ue6gF9YW9WrGJCCnCTPM/lCew1S5YzpALNVeURj8W+rH+7rTQP6At7s2IVFVKAi5E3Nzdpkfpir1eyIUIKsFQBp4AKKz/xWOzD+rbb9XqL6It7s2IVF1IBbpaX+qiKvU7JhgqpQGHlajcbk21Zv056i+BV6AZ4s0IVG1KAo6rLly/TgnXBXqNkQ4dUgLDCXT91H/WkjrMx2Zb1a9fJ8kV0A7yhUFHhioQV6imu+WPPXbJSQmrR/v37Z4888gjdXmnlutn60s0urD/jCCpbQAHdEG9WpCpCKkBY9VmuwJ6zZCWGVICjK0yyK7B6OcvG5TrWlzEHleUUbxHdGG9WpKpCKsBFyrjtS9ujK/ZcJSs5pBYhsHCEhfura3Foa42Dyvowjp7cP8Vbhm6UNytQlSG1CIGFpQsvvfTS2tBijy9ZLSEVQ2hh2zHpjiMtBddaOPU7zMao9VsEE1aSZz21Y3ZsXEr2AncYvFGk8CmDK6UvXb169ToGNuA0Cp+oYVHlxsYGK2QVEFqnT5/eej8/+9nPtr73LwjvFZPxeK84GsMpJHueEniGFJ7785///Ox73/vell/84hcUaoSff/WrX92aOMeCz64UVo389eTJk//1ne98Z/OnP/3p22+99dZ7NlZpaORGw6Ure0Kk72GD73/vfFU0BjQ6KT5lI8UsRjiS6vNFpFibhecoKaBTh9QXv/jF2Y9+9KPZr371K1qDJkqs09jhL14cPLzxxhtudzhogoZNW/ZEe4zLYSECC4ViRRwCghODxWOFOsIO4YzOwV47lxQhdf/9928dCfUJ8GXwnDgiHbpOU4Ijfzu6+pDtD280dJqyJ0A4ud3sahE65pBhhXDKdUEyAnDIQdgnpBBOL774In1fqQ1dp6lBnXONgUU0fNaxB2KuCad09Ek94bA/53wOdgwGAtsWbxiEQwRz15DCkZPHEeY6eE0cgbL3IumhT7L94IWG0Cr2oGNm0HNUwCmX99+gmP/wOF1pC6e8Oefn2obUww8/3Gu+KRX8BVb6POZY4C8Ftg880CBi7JezrzRdx7NT5twJTeBoARP1bFtTaxNSJ0+epNs7lKGOPqco5aVjq9BAitkvIqCyrzRtAp0y9Sc+Q5x3N5VjADYNqVxzT13gFJ29N0kHZzI5Tu9pKC2yX8JSeJfveE8pxeBF0XP97dAHQpRtfypNQqrkgAq86yR55qdoMAX2C5ggH3z+qam+p0OY+2HPWyLPAbgupGoIqEBB5c/7aIqGE9gPiz3FW6bPqV/Jp3jLeJ36rQqpmgIq0KmfL3yIxeqeyCkaUGA/zLL+KTUEVdtP/YZaYpCCx3KMZSFV2iR5G7k+dJgi9EFW8wRwkLRrWUANdsVzCjhtY8VkHAucRZdQXoeFFJYZsNevBeqk5Ql+WM17wjTT1l1EWUBluW+xtyaL+zC4S1gH1VebUG6ChVQJ66D6Sl0nucVhHG3fnYGFVFXzUMs0+ZvT+Vw6q5SnM3FIYSU5e80aaWW6j8QfOp1azKQ4oHAHA/agKq36ZAcBxh5TK/xNlvK0LwQUrsVD4LPXrJHH6bEkDakdN+NbDCh8mlfNcoOmlk0s1/hp3jqpPsX68pe/vB1SNX6at44+7UsvUUjRu4Vu/4f9wqiOogIszowLOrajqABHCfF77eIHP/jB9lEUe53a6WgqPVbnlpbeznj7P+yXil9V3lU8NzXGo6ig79qpb3zjG9shdfbsWfoaY6C5qXSwNpHVuIWV91vf+of9Eu4LxR48CouH9/gbdExzLDFcdL3Ygdp64YUXtkNqzHXCHB57/9Jez4vxb5skZ7b+Yb9Y1N0NUlvskDmuNRpan/VAf/rTn7ZCCrf8Zc89JroVcRr4i5HVdw3Mf9MvgYht/WP+APZEoxE6ZA0XEPfV9VQGyxjwByE1xgnzmCbQ++u4GBrLnBp/3TsCahSLN9cJA3fMpzAB+7Cgibffftv6xEchNYZFruv0PTWWTp/q4VujWn2DMkIKd9pkTzYqGLgJJviq0OVTPsxFhT8XLlygzztGrBbSTMu5KBw97bHuRYNoldHPRwU4MpjCfFTQZr4Fn+gt/nn11Vfpc46RxwXaU4D+1fCsBFNJx6xb0QBqAiFV5d0Ouqj5bgdtNb1MBgH14YcfWl+49ec3v/kNfc4x0lKE9hoGFMIJNypodWrHIKTYC4xSx08hqtRkUhhBFgcU/rzxxhv0OcdIk+ft4Mjzj3/84/+xWs5hvSUWhvcOp0AhNVKrBt9TTz01e+WVV2z/8z/vvPMOfc4x0p07m8H6whVnIjhqwrRR40/s2lBIjRTu8BB3NIQTJsjff/992/fL/0wppHT7ltUQTpjL/cMf/vC3qHaYCMcndZ0mw9uYVEhdvXqVto8RAhmnc4Cjpt/97ne2v5v9UUhNExYB43QOfvzjH7//+uuvv2undn+x/vCa1QqBhJUA7qF0u9nH/h+sBaOnOz4IxQAAAABJRU5ErkJggg==") + ContentType = "image/png" + } + @{ + "@microsoft.graph.temporaryId" = "2" + ContentBytes = [System.Text.Encoding]::ASCII.GetBytes("iVBORw0KGgoAAAANSUhEUgAAASkAAAEpCAYAAADPmdSCAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAg2UlEQVR4Xu3dz8tcVZ4G8P4TspulWfTGzZiFCxHBgDKCGTAQXgQXmhaMMy70deGq0xJbuwMBMTpCuwgmoIhIhKAuGiPdIQ7NRKF5m1YztJoOiI5gYwdnwMXA1Hyf1zpvyvM+VXV/nO+559z7BD7+OO9bVfd+7zlP7j116tZPZrNZI0888cQes98cM4fNXvZ7Uj8c2/kxxrE+aPaw3xPJgTbGrJNummtmFrlg1IFHAsfSnJwf29gx9hgRb7RxETpn1FljV80+9liphx1DBNTW/Jguc4Y9VsQTbQysU+K0n3XWGM6yDrPnkPLZsds3P4bs2Mb2s+cQ8UIbA+uQy079lznJnkfKZccMl/LsWC5zjj2PiBfaGFiHxJwT66iraJ6qAjhG5sz8mLVxgT2fiBfaGKBDRh20Kc1TFcyODS7j180/LaOQkqxoY4AOGXXQNjRPVSA7JlhG0nT+iVFISVa0MUCHjDpoF3pHqBB2LNrOPzEKKcmKNgbokFEH7QqXFpqnGghqb7rMPzEKKcmKNgbokFEH7QOXGJqnygw1N13nnxiFlGRFGwN0yKiDpqB5qkys1vhIS5/5J0YhJVnRxgAdMuqgqWieypnVeN0nBbpSSElWtDFAh4w6aEq4BNGHlBOzmmL+6dy8xh4UUpIVbQzQIaMOmhouRfQxi0SslqnnnxiFlGRFGwN0yKiDetlkry/NWQ095p8YhZRkRRsDdMiog3rCW+RaptCB1a3tZyz7UEhJVrQxQIeMOqg3zVO1YLXC/FPuY6SQkqxoY4AOGXXQHDRP1YDVCPNP+Iwkq6EnhZRkRRsDdMiog+akO0EuYbXBrX1zzD8xCinJijYG6JBRB80Nb6VrnmqB1SPn/BOjkJKsaGOADhl10CFgnmryH6exGgwx/8QopCQr2higQ0YddCi4tDnItrGNL7/8svOkvD220xld18ctsn1vc3tfbwopyYo2BuiQUQcdWud5KguLM+aaaX1WNn/slmkVOPj9+eM6fwzI9hnzT6wWQ1FISVa0MUCHjDpoCVrPUyEkzGyuVVBFj20cVPi9+e+Hx7YOKtvPVLdXSUkhJVnRxgAdMuqgpWh8e2KEw0JQBI2Cyn6HPXZtUOHn89+LH9soqGzfMP/k/fGWrhRSkhVtDNAhow5aEszRrLztC0IhColFK4PKfrbqsUuDCu3zn7PHwcqgsn3qe3tfbwopyYo2BuiQUQctEf0aLYRBFA4MDSpra/LYXUGF/5+3s99fRIPK9iXF7X29KaQkK9oYoENGHbRU2M6dwEAIRKGwyo+Cyv67zWN3ggr/nv8/+z1mJ6iw7abE+SdGISVZ0cYAHTLqoCXbnqfC4I/CoIntoDJdHotg2jv/N/v5KgimPl8vNQSFlGRFGwN0yKiDFu2ZZ5757urVq/9LwqBYL7zwwv+wfSlY8pC6dus/7DVnzIUJOWf0GdUGaGOADhl10OKdOHFiduXKFRoIpTl9+jTdh8IlCykbpCGcZhOGwFJYrUAbA3TIqINWoYagqjSgoHdI2aBUOO2msFqCNgbokFEHrUbJQVVxQEHnkLJBqHBaT2EVoY0BOmTUQatSYlBVHlDQOqRs0Cmc2lNYzdHGAB0y6qDVKSmoRhBQ0DikbJApnPqbfFjRxgAdMuqgVSohqEYSULA2pGxQKZzSm2xY0cYAHTLqoNUaMqhGFFCwNKRsEA0ZThjEXVw17PlKhW2eVFjRxgAdMuqgVbt06RINEW9sWyq2K6Rs0AwZTnjdXl/eYY8/bBRWhaKNATpk1EGrppBKYiekbJBUHU4xez6FVYFoY4AOGXXQqimkksCgGFU4xez5FVYFoY0BOmTUQaumkOrnmUf/dfbBP9/8dTQ4cnEPp5i9nsKqALQxsI6pkEqAbUtNEE4XD97KBkQO2cMpZq+vsBoQbQysgyqkEmDbUoOph1PMtkdhNQDaGFhHVUglwLalZAqn1Wz7FFYZoeBsh0RyKz6cYra9NYZVdRRSMrTqwilm26+w8nNBISVDqT6cYrY/Cqt0di5PFVKS2+jCKWb7p7DqbtfcmUJKchl9OMVsfxVWzS2d2FdIibfJhVPM9l9htdzadx0VUuJl8uEUs3oorK5rvCRCISWpXTb/yDqb/MDqM+WwahxOgUJKPFwzxwz9Knr5gdVnSmHVOpwChZR4Ulg1YPUZc1h1DqdAISU5KKwasPqMKax6h1OgkJKcFFYNWH1qDqtk4RQopGQICqsGrD41hVXycAoUUjIkhVUDVp+Sw8otnAKFlJRAYdWA1aeksHIPp0AhJSVRWMkuCikpkcJKdiikpGQKK1FISRUUVhOmkJKaKKwmSCElNVJYTYhCSmqmsJoAhBQOMnX+0O1X3773n2Zj8flTm7NvnnsyO7YttRrwq65WQVhh3c4U4D5dkwpl2hg8oe/dS4JtS63+7cj9LCTEHxZxHmbjdOxoY2CdUiGVANuWWimksptsOAW0MbBOqZBKgG1LrRRS2Uw+nALaGFinVEglwLalVgopdwqnCG0MrFMqpBJg21IrhZQbhdMStDGwTqmQSoBtS60UUskpnNagjYF1ymJC6pFHHpk98MADO/D/7PdWqSWkNjc3f7SvDz30EP29IZz8l8PfR4NMulE4NUQbA+uUg4cUBunNN988u+GGG3ZBO37OHseUHlII3ttvv53u64033jjb2Nigj8sMa3XGdC/u3BROLdHGAB0y6qBZ3XnnnXTAxjYaDt6SQwr78NOf/pTu3yKEGHt8RhdC/8Bgmw+6xUEonMKpI9oYoENGHTSbu+++mw7SZTYaBFWpIYWzQbZPywwcVDshFWDwzQdhPDBF4dQbbQzQIaMOmgUue9jgXAVnIevmqUoNKVzKsX1a5b777qPPlcGukAowGOeDkg3WqVE4JUIbA3TIqINmsWxeZh2cfbHnC0oMqQ07A2T7ss5NN91Eny+DpSEVYHDOB2k8cKdA4ZQYbQzQIaMOmkWTuRlm3cAtMaRuvfVWui9N4F1A9pzO1oZUgME6H7RsMI+NwskJbQzQIaMOmgUbkE2x5wtKDKll71w20eadzYQah1SAwTsfxGxw107h5Iw2BuiQUQfNgg3IptjzBQqpJFqHVGCDef/YsP2UtGhjgA4ZddAs2IBsij1foJBKonNIiXRBGwN0yKiDZsEGZFPs+QKFVBIKKcmKNgbokFEHzYINyKbY8wUKqSQUUpIVbQzQIaMOmgUbkE2x5wsUUkkopCQr2higQ0YdNAs2IJtizxcopJJQSElWtDFAh4w6aBZsQDbFni9QSCWhkJKsaGOADhl10CzYgGyKPV+gkEpiy+yf01dJiTvaGFgnVEglwLYlqDCklkFfgZPmmEGI7WP9SqQN2hjMOx3rkK66fOAWMODZ8wUlhlTXzykCe75C4ezrnAnhpTMwaYw2BtaZBgmppveRit1zzz30+YISQwpnQ2xf1sFn/tjzVeSqQXBtGp1xyVK0MbDOM0hI4YOzbT9kjLOvdR+4LTGkoMslX0m3FE7kmlFoyS60MbDOMkhIwUbLW5g0GbSlhhTug9UmlNedMY4EzrQwv3WQ9U2ZDtoYWAcZLKQAQbVu8OLnTSeQSw0pQMg2mYubSEDFcJZ1xiiwJog2BtYpBg0pwFkG5qjiAYz/x03u2txTqeSQAuwLQgj3xVrcVwQxJtjX3Xl0IkJg6Q4EE0EbA+sIg4dUW7/61a9mr7766uz999+fffrpp7Pvvvtux7dv/Xb29V33ZvW348//aBuwTR9++OHs7Nmz29vK9kEawyUh3jHcy/qvjANtDOzgVxNSCKY4lJicQRUHFPPFF19sB9YvfvELul/SGCbddXY1QrQxsINefEghnDDQWQAskyOomgTUom+++Wb2zjvvKKz6w9nVYaO1WCNBGwM70MWG1LPPPtvozGkZz6BqG1CLELgvvvgi3WdpBXNXuBRUWFWONgZ2gIsMKVwesQHelkdQ9QmoRe+99x7dd2lNYVU52hjYgS0upDAhzgZ1VymDKlVABX/+8591+ZeOwqpStDGwA1pUSKUOqCBFUKUOqACXtAqqpBRWlaGNgR3IYkLKK6CCPkHlFVABgorVRHpBWOmrqCpAGwM7iEWEVKo5qHW6BJV3QAUIaVYb6W37/lis/0sZaGNgB2/wkMK7eGzQemkTVLkCKjh16hStkSSBdVa6BCwQbQzsoA0eUn2WGXTVJKhyBxRgLZXmp1zhEnCTjQUZDm0M7IANGlJYqMkGaw6rgmqIgAqw4JPVSpJCv9ftYgpBG4P5wWIHMYu2K8lTY0E1ZEAFOpvK5hgbF5IXbQzsIA0WUkOeRS1aDKoSAgp0NpUVJtb1AeYB0cZgfoDYgXOHhYxsgA4BQVVKQAHOMFnNxI2WKwyINoIdFNyzhx0wd7iFCRucch3e9WS1E1d6B3AAtNEOxGABBaVc6pVMl3yDwV0WNKme0a4GOwCDBhR4ry4fA1wOs9pJNrr8y+RH/2OFHzygoKT5qJKx2klWZxbHj/jY+Q8UPDoAg2EDUnbTUoQi4M0lzVM52v6HFbmYgAI2IGU33RyvGJqnclRcQAEbkLKbQqooWKagDyo7QEgNthZqGTYgZTeFVJE0oZ4YQmqPKSqo2ICU3RRSxVJQJbT9DytqUUHFBqTspu/tK5re+Utk5z+sqAiqIuanhv5gcS1Y7aQoCqoEdjVYYU9Ghc5O66TW0y2Fq6Gg6ok2WmHx5Yqs4FngIx9sYMp1up1wVRRUPdBGsMLuM3hblRXdVe5bBtcIn29ktZNiKag6oo2BFXavGWRCXfNSq2m1eZUUVB3QxpgVN/s8Fb7Blw1O+W724Ycf0ppJFXS3z5ZoI2PFPWiyXf7pnlLLaX1U9bSOqgXauIwVF5d/2W4prFu27KZbtIyGgqoh2riOFXgzKrgLnE3ha5zYYJ0qnUWNBq5K9KHkBmhjEyiwcT+r0nKE6zBPx2ok1UJQ6Use1qCNbViRcVblOlelxZ0/fPmC3tEbJd2Pag3a2JYVGXNVuEk9Owi9YXBO+bIP+64vXhi1c2xcyQ9oY1dW7P0GNwBjB6IXDNKpBtWpU6doTWRUtDRhCdrYlxUcH6tJfgk4taDCvmpl+aTopnkEbUzBCo67KhwzScMKQYUP17JB7QVBgbOZnAGpS7xJ0kQ6QRtTsqInDyvMUeVYQ4XJ6sWgwJKIHAGJNwo0ST5ZF9g4mjLa6MGKnzyssGbI6zN+WPqwLCjOnj3rclalyzuZ0/zUAtroyQ4Awuq3CwekNwzsFGGFkMBapCZ3vESAIchShBW2HcGnsydZoPmpOdrozQ4AzqjYgekFl2YImTaBhZDBB3YRdF1DAvNVuPxsE1jYRjxG79zJEniXXOunDG30ZsV3CalFCBxcDuIMBWc8MYSDx8Q0zsLw3Ow1AdvU5ExNxJxk42dqaKM3K757SImMxOQv+2ijNyu8Qkqkmclf9tFGb1Z0hZRIc5O+7KON3qzoSULql7/85ezo0aP0ZyIjM9nLPtrozQreO6ROnz49+/LLL7dtbW1tT0qj7cSJE/T3RSq3xcbSFNBGb1bwXiG1GFDLXLp0aTu4Xnvttdnzzz8/e/rpp+lz5YCzPWwDtgXbhG27fPmyAlXa2mTjaexoozcrdueQahJQq+CsCyFx/vz52ZtvvrntpZde2g6RoOkl5OJjIDxfCCK8FtuG4MqVKwoqaQOf1pjcJDpt9GaF7hxSGNQY3GzQ1wYhpjk1aWlyX4tFG71ZoXtd7o0hqBRQ0sOk7pRAG71ZkXtPnNccVAoo6WlSd0qgjd6syL1DCmoMKgWUJDKZJQm00ZsVOElIQU1BpYCShCZzNkUbvVmBk4UU1BBUCihxMImzKdrozYqbNKSg5KBSQImTSZxN0UZvVtzkIQUXL16kITE0LOJk2yuSwOjPpmijNyts8pDC4kwWEKXAIlS23SI9jf5sijZ6s8ImDanSAypQUImTfWycjQVt9GZFTRZStQRUoKASB6NehU4bvVlRk4RUbQEVKKjEwWhXodNGb1bQ3iFVa0AFCipJbLRfg0UbvaGgUYFbqT2gAgWVJHSNjbUxoI3erKCdQwq3QmEDvla4xQvbT5EODrPxVjva6M2K2TmksCgSiyPZgK8NzgjZPop0NMrlCLTRmxWz1+XeGIJKASVORjeBThu9WSF7T5zXHFQKKHE0um+WoY3erJC9QwpqDCoFlDi7ysZczWijNytkkpCCmoJKASWZjOrzfLTRmxUxWUhBDUGlgJKMRrUCnTZ6syImDSkoOagUUJLZqNZM0UZvVsTkIQVYc8RCYmhsW0WcHWRjr0a00ZsVUCEl4ms07/LRRm9WQIWUiK/RvMtHG71ZARVSIv5GcZ8p2ujNiqeQEvG3ycZfbWijNyueQkrE3yg+y0cbvVnxFFIieexhY7AmtNGbFU4hJZJH9UsRaKM3K5xCSiSP6pci0EZvVjiFlEge1c9L0UZvVjiFlEgm8firDW30ZoVTSInkU/VdEWijNyuaQkokn6rXS9FGb1Y0hZRIPufYOKwFbfRmRVNIieSzxcZhLWijNyuaQkoko3gM1oQ2erOiKaRE8qp28pw2erOCKaRE8qr2i0NpozcrmEJKJK9jbCzWgDZ6Q8GiAiahkBJZqtqV57TRmxVMISWSV7Xv8NFGb1YwhZRIZvE4rAVt9GYFU0iJ5FflvaVoozcrlkJKJL8qlyHQRm9WLIWUSH4KqaasWAopkfyqXIZAG72hWFHxklBIiaykkGoKxYqKl4RCSmSls2w8lo42erNiKaRE8vtPNh5LRxu9WbEUUiL5VfnV67TRmxVLISWS39dsPJaONnqzYimkRPL7OxuPpaON3qxYCimRAcRjsQa00ZsVSyElMoB4LNaANnqzYimkRAYQj8Ua0EZvViyFlMgA4rFYA9rozYqlkBIZQDwWa0AbPVmh9plri4VLRSGVxiOPPELbZRSqu9c5bfRiBXILKFBIpaGQGr2qgoo2erDCuAYUKKTSUEhNQjVBRRtTs4K4BxQopNJQSE1GFUFFG1OyQmQJKFBIpfHwww/Tdhml4oOKNqZiBcgWUKCQSuP++++n7TJaRQcVbUzBdjxrQIFCKg2F1CQVG1S0MQXb6atREdwppNLY2Nig7TJ6Rd4DnTamYDusM6k5tq0lO3ToEG2XUTvDxnEJaGMqtuOakzJsW0t2991303YZrWIDCmhjSlYAvbtHtrVkd9111+zxxx+nP5PRKTqggDamZoXIElQKqTQQUkeOHKE/k1EpPqCANnqwgrgHlUIqDYTUvffeS38mo1FFQAFt9GKFcQ0qhVQaCKkDBw7Qn8koVBNQQBs9WYHcgkohlQZC6rbbbqM/k+pVFVBAGz1ZkRRShUNI3XLLLfoM3zgppFaxAulyrwIhpO677z76c6meLvcYK4wmzisRQgr/Zj+XUdDE+SIriHtAgUIqjRBSoPVSo1ZFUNHGlKwQWQIKFFJpLIaUPmw8esUHFW1MxQqQLaBAIZXGYkjpkm8Sig4q2piC7XjWgAKFVBqLIQWPPvoo/T0ZlWKDijamYDt9ISqCO4VUGnFIafX5ZEzuVi17zNZCAdwppNKIQ0oLOydheje9A9vxrEGlkEojDinQBPqoTfP2wYEVIFtQnThxgobE0Ni2loyF1P79++nvSvWm/UUMgRUiW1CxkBga286SsZACnU2NTvEBBbTRgxUkS1CxkBga286SLQspnU2NShUBBbTRixXGPaguXbpEg2JIbDtLtiykQGdTo1BNQAFt9GQFcg2q8+fP06AYEtvOkq0KKZxN6aMyVSsioGxc7DP7zWGzOf9vugRiV0MOVqhjUeGSOX36NA2KIbHtLNmqkAKtm6pXPBZzsrFw0Jwz18LYWGLLILj24HH0ybxZsdxCqsR3+Nh2lmxdSGHdlFah1ykeiznYGEA4XV0cEw0hzI7RJ/VmxXILKbh8+TLb4cGwbSzZupAC/A57rJQtHouerO/vMThzouOiKfrk3qxYriFV2rwU28aSNQkp0E3x6hOPRS/W7xFQuGyjY6IN+gLerFiuIfXSSy/RnR0K28aSNQ0pXfbVJx6LHqzPJwsooC/izYrlGlJQ0iUf276SNQ0puOOOO+hzSJnisejB+vyFeAz0QV/EmxXLPaTefPNNusNDYNtXsjYhBYcOHaLPI+WJx2Jq1t+Pxf2/L/pC3qxY7iH19NNP0x0eAtu+krUNKdAizzrEYzEl6+u4zFu3vKA1+mLerFjuIQWlTKCzbStZl5ACfQVW+eKxmJL19eRnUUBfzJsVK0tIlXI2xbatZF1DChPpCqqyxWMxJevrXdZCrUVfzJsVK0tIQQlnU2y7StY1pAAT6frYTLnisZiK9XN8zIX2/77oC3qzYmULqaNHj86uXLlCdz4Xtl0l6xNSoKAqVzwWU7F+7nKpB/QFvVmxsoUUvPbaa3Tnc2HbVLK+IQUKqjLFYzEV6+dn4n6fCn1Bb1asrCEFQ97ChW1PyVKEFCioyhOPxVSsnyddG7WIvqA3K1b2kBryso9tT8lShRRoMr0s8VhMxfq5QiqFob6ogW1LyVKGFCCojhw5Ql9L8orHYirWzxVSqQxxvym2HSVLHVKBPpA8vHgspmL9PPkizoC+oDcr1mAhBbmXJbBtKJlXSME999yjeaoBxWMxBevjWGlO+34K9EW9WbEGDSnIGVTs9UvmGVKAWxBrnmoY8VhMwfo4bmpH+34K9EW9WbEGDynIFVTstUvmHVKBbkOcXzwWU7A+7rb8AOiLerNiFRFSkGOOir1uyXKFFGCZgibV84nHYl/Wv10v9YC+sDcrVjEhBbhJnufyBPaaJcsZUoHmqvKIx2Jf1r/dVpoH9IW9WbGKCinAh5G3trZokfpir1eyIUIKsFQBl4AKKz/xWOzD+rbb5/UW0Rf3ZsUqLqQC3Cwv9VkVe52SDRVSgcLK1T42Jtuyfp30FsGr0A3wZoUqNqQAZ1UXL16kBeuCvUbJhg6pAGGFu37qPupJHWNjsi3r166T5YvoBnhDoaLCFQkr1FN85o89d8lKCalFBw4cmD344IN0e6WVq2b7Sze7sP6MM6hsAQV0Q7xZkaoIqQBh1We5AnvOkpUYUgHOrjDJrsDq5Qwbl+tYX8YcVJZLvEV0Y7xZkaoKqQAfUsZtX9qeXbHnKlnJIbUIgYUzLNxfXYtDW2scVNaHcfbk/i7eMnSjvFmBqgypRQgsLF1455131oYWe3zJagmpGEIL245Jd5xpKbjWwqXfYTZGrd8imLCSPOulHbNr41KyF9hrsKNI4ZMGn5S+8PHHH1/FwAZcRuEdNSyqPHHiBCtkFRBap06d2t6f3//+99vf+xeEfcVkPPYVZ2O4hGTPUwLPkMJzP/bYY7OXX3552x/+8AcKNcLPf/3rX29PnGPBZ1cKq0b+fvz48f/4zW9+s/W73/3u87/85S9f21iloZEbDZeu7AmRvocNvv+986eiMaDRSfEuGylmMcKZVJ8vIsXaLDxHSQGdOqR+/vOfz15//fXZH//4R1qDJkqs09jhL16cPHzyySdudzhogoZNW/ZE+43LaSECC4ViRRwCghODxWOFOsIO4YzOwV47lxQhtbGxsX0m1CfAl8Fz4ox06DpNCc787ezqe3Y8vNHQacqeAOHkdrOrReiYQ4YVwinXB5IRgEMOwj4hhXB6++236X6lNnSdpgZ1zjUGFtHwWcceiLkmXNLRJ/WE0/6c8zk4MBgIbFu8YRAOEcxdQwpnTh5nmOvgNXEGyvZF0kOfZMfBCw2hVexBm2bQa1TAJZf336CY//C4XGkLl7w55+fahtTPfvazXvNNqeAvsNLnMccCfymwY+CBBhFjv5x9pek6np0y50FoAmcLmKhn25pam5A6fvw43d6hDHX2OUUpPzq2Cg2kmP0iAir7StMm0ClTv+MzxHV3UzkGYNOQyjX31AUu0dm+STq4kslxeU9DaZH9EpbCu3zHe0opBi+Knutvhz4Qomz7U2kSUiUHVOBdJ8kzP0WDKbBfwAT54PNPTfW9HMLcD3veEnkOwHUhVUNABQoqf95nUzScwH5Y7CXeMn0u/Uq+xFvG69JvVUjVFFCBLv184U0sVvdETtKAAvthlvVPqSGo2r7rN9QSgxQ8lmMsC6nSJsnbyPWmwxShD7KaJ4CTpD3LAmqwTzyngMs2VkzGscBZdAnldVhIYZkBe/1aoE5anuCH1bwnTDNt30WUBVSW+xZ7a7K4D4O7hHVQfbUJ5SZYSJWwDqqv1HWS6xzG0c7dGVhIVTUPtUyTvzmdr6WzSnk5E4cUVpKz16yRVqb7SPym08nFTIoDCncwYA+q0qp3dhBg7DG1wt9kKS/7QkDhs3gIfPaaNfK4PJakIbXrZnyLAYV386pZbtDUsonlGt/NWyfVu1hPPfXUTkjV+G7eOnq3L71EIUXvFrrzH/YLozqLCrA4My7o2M6iApwlxPvaxSuvvLJzFsVep3Y6m0qP1bmlpbcz3vkP+6XiV5V3Fc9NjfEsKui7duq5557bCakzZ87Q1xgDzU2lg7WJrMYtrLzf+vY/7JdwXyj24FFYPL3H36BjmmOJ4UPXix2orbfeemsnpMZcJ8zhsf2X9np+GP9Hk+TM9j/sF4u6u0Fqix0yx2eNhtZnPdBXX321HVK45S977jHRrYjTwF+MrL5rYP6bfglEbPsf8wewJxqN0CFr+ABxX10vZbCMAX8QUmOcMI9pAr2/jouhscyp8de9I6BGsXhznTBwx3wJE7A3C5r4/PPPrU/8EFJjWOS6Tt9LY+n0rh6+NarVNygjpHCnTfZko4KBm2CCrwpd3uXDXFT4c+7cOfq8Y8RqIc20nIvC2dN+6140iFYZ/XxUgDODKcxHBW3mW/CO3uKf9957jz7nGHl8QHsK0L8aXpVgKmnTuhUNoCYQUlXe7aCLmu920FbTj8kgoL7//nvrC9f//OlPf6LPOUZaitBew4BCOOFGBa0u7RiEFHuBUer4LkSVmkwKI8jigMKfTz75hD7nGGnyvB2cef71r3/9P1bLOay3xMLw3uEUKKRGatXge/LJJ2fvvvuuHX/+54svvqDPOUa6c2czWF+44koEZ02YNmr8jl0bCqmRwh0e4o6GcMIE+bfffmvHfvmfKYWUbt+yGsIJc7mfffbZf0e1w0Q43qnrNBnexqRC6uOPP6btY4RAxuUc4Kzpo48+suPd7I9CapqwCBiXc/DGG298+8EHH/yXXdr9zfrDv1utEEhYCeAeSj82+8n/A1GsifSVBvjAAAAAAElFTkSuQmCC") + ContentType = "image/png" + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
General Hello there!
" + } + Mentions = @( + @{ + Id = 0 + MentionText = "General" + Mentioned = @{ + Conversation = @{ + Id = "19:0b50940236084d258c97b21bd01917b0@thread.skype" + DisplayName = "General" + ConversationIdentityType = "channel" + } + } + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 9: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
TestTag Testing Tags
" + } + Mentions = @( + @{ + Id = 0 + MentionText = "TestTag" + Mentioned = @{ + Tag = @{ + Id = "MjQzMmI1N2ItMGFiZC00M2RiLWFhN2ItMTZlYWRkMTE1ZDM0IyM2OGEzZTM2NS1mN2Q5LTRhNTYtYjQ5OS0yNDMzMmE5Y2M1NzIjI3RTMERJZ1Z1ZQ==" + DisplayName = "TestTag" + } + } + } + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 10: Using the New-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "
GraphTesting Hello team
" + } + Mentions = @( + @{ + Id = 0 + MentionText = "GraphTesting" + Mentioned = @{ + Conversation = @{ + Id = "68a3e365-f7d9-4a56-b499-24332a9cc572" + DisplayName = "GraphTesting" + ConversationIdentityType = "team" + } + } + } + ) + Reactions = @( + ) +} +New-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params +``` +This example shows how to use the New-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessageReply.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessageReply.md index 093355d11d5..0d1b2167fc3 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessageReply.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamChannelMessageReply.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamChannelMessageReply Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Body = @{ + ContentType = "html" + Content = "Hello World" + } +} +New-MgTeamChannelMessageReply -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamChannelMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamInstalledApp.md index 093355d11d5..344a1e4f6bd 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamInstalledApp.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/beta/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" +} +New-MgTeamInstalledApp -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamMember.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamMember.md index 093355d11d5..9c9e8d3623e 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamMember.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('8b081ef6-4792-4def-b2c9-c363a1bf41d5')" +} +New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) + "User@odata.bind" = "https://graph.microsoft.com/v1.0/users('jacob@contoso.com')" +} +New-MgTeamMember -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOfferShiftRequest.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOfferShiftRequest.md index 093355d11d5..5b52d6fde3c 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOfferShiftRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOfferShiftRequest.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleOfferShiftRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SenderShiftId = "SHFT_f7e484ed-fdd6-421c-92d9-0bc9e62e2c29" + SenderMessage = "Having a family emergency, could you take this shift for me?" + RecipientUserId = "fe278b61-21ac-4872-8b41-1962bbb98e3c" +} +New-MgTeamScheduleOfferShiftRequest -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleOfferShiftRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShift.md index 093355d11d5..5e48c4e3cca 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShift.md @@ -1,18 +1,40 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleOpenShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Id = "OPNSHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" + SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" + SharedOpenShift = @{ + Notes = "InventoryManagement" + OpenSlotCount = 2 + DisplayName = "Dayshift" + StartDateTime = [System.DateTime]::Parse("2018-10-04T00: 58: 45.340Z") + EndDateTime = [System.DateTime]::Parse("2018-10-04T09: 50: 45.332Z") + Theme = "white" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2018-10-04T00: 58: 45.340Z") + EndDateTime = [System.DateTime]::Parse("2018-10-04T01: 58: 45.340Z") + Code = "" + DisplayName = "Lunch" + } + ) + } + DraftOpenShift = $null + CreatedDateTime = [System.DateTime]::Parse("2019-03-14T04: 32: 51.451Z") + LastModifiedDateTime = [System.DateTime]::Parse("2019-03-14T05: 32: 51.451Z") + LastModifiedBy = @{ + Application = $null + Device = $null + Conversation = $null + User = @{ + Id = "366c0b19-49b1-41b5-a03f-9f3887bd0ed8" + DisplayName = "JohnDoe" + } + } +} +New-MgTeamScheduleOpenShift -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShiftChangeRequest.md index 093355d11d5..e49ac34efd1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleOpenShiftChangeRequest.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleOpenShiftChangeRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SenderMessage = "Can I take this shift?" + OpenShiftId = "577b75d2-a927-48c0-a5d1-dc984894e7b8" +} +New-MgTeamScheduleOpenShiftChangeRequest -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleOpenShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSchedulingGroup.md index 093355d11d5..c2fef1a223f 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSchedulingGroup.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleSchedulingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Cashiers" + IsActive = $true + UserIds = @( + "c5d0c76b-80c4-481c-be50-923cd8d680a1" + "2a4296b3-a28a-44ba-bc66-0274b9b95851" + ) +} +New-MgTeamScheduleSchedulingGroup -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleShift.md index 093355d11d5..00ae35bfce1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleShift.md @@ -1,18 +1,44 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Id = "SHFT_577b75d2-a927-48c0-a5d1-dc984894e7b8" + UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" + SchedulingGroupId = "TAG_228940ed-ff84-4e25-b129-1b395cf78be0" + SharedShift = @{ + DisplayName = "Day shift" + Notes = "Please do inventory as part of your shift." + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T00:00:00Z") + Theme = "blue" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-11T15:15:00Z") + Code = "" + DisplayName = "Lunch" + } + ) + } + DraftShift = @{ + DisplayName = "Day shift" + Notes = "Please do inventory as part of your shift." + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T00:00:00Z") + Theme = "blue" + Activities = @( + @{ + IsPaid = $true + StartDateTime = [System.DateTime]::Parse("2019-03-11T15:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-11T15:30:00Z") + Code = "" + DisplayName = "Lunch" + } + ) + } +} +New-MgTeamScheduleShift -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSwapShiftChangeRequest.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSwapShiftChangeRequest.md index 093355d11d5..6871b318d41 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSwapShiftChangeRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleSwapShiftChangeRequest.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleSwapShiftChangeRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SenderShiftId = "5ad10161-6524-4c7c-9beb-4e8677ba2f6d" + SenderMessage = "I can't make my shift, any chance we can swap?" + RecipientUserId = "567c8ea5-9e32-422a-a663-8270201699cd" + RecipientShiftId = "e73408ca-3ea5-4bbf-96a8-2e06c95f7a2c" +} +New-MgTeamScheduleSwapShiftChangeRequest -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleSwapShiftChangeRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeCard.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeCard.md index 093355d11d5..7846520be6a 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeCard.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeCard.md @@ -1,18 +1,39 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleTimeCard Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + OnBehalfOfUserId = "a3601044-a1b5-438e-b742-f78d01d68a67" + ClockInEvent = @{ + DateTime = [System.DateTime]::Parse("2019-03-18T00:00:00.000Z") + AtApprovedLocation = $true + Notes = @{ + Content = "Started late due to traffic in CA 237" + ContentType = "text" + } + } + Notes = @{ + Content = "8 To 5 Inventory management" + ContentType = "text" + } + Breaks = @( + @{ + BreakId = "string" + Notes = @{ + Content = "Lunch break" + ContentType = "text" + } + Start = @{ + DateTime = [System.DateTime]::Parse("2019-03-18T02:00:00.000Z") + AtApprovedLocation = $true + Notes = @{ + Content = "Reduced break to make up for lost time" + ContentType = "text" + } + } + } + ) +} +New-MgTeamScheduleTimeCard -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleTimeCard Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOff.md index 093355d11d5..09f871a00b9 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOff.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleTimeOff Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + UserId = "c5d0c76b-80c4-481c-be50-923cd8d680a1" + SharedTimeOff = @{ + TimeOffReasonId = "TOR_891045ca-b5d2-406b-aa06-a3c8921245d7" + StartDateTime = [System.DateTime]::Parse("2019-03-11T07:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T07:00:00Z") + Theme = "white" + } + DraftTimeOff = @{ + TimeOffReasonId = "TOR_891045ca-b5d2-406b-aa06-a3c8921245d7" + StartDateTime = [System.DateTime]::Parse("2019-03-11T07:00:00Z") + EndDateTime = [System.DateTime]::Parse("2019-03-12T07:00:00Z") + Theme = "pink" + } +} +New-MgTeamScheduleTimeOff -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOffReason.md index 093355d11d5..3452d478074 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamScheduleTimeOffReason.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamScheduleTimeOffReason Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Vacation" + IconType = "plane" + IsActive = $true +} +New-MgTeamScheduleTimeOffReason -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTag.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTag.md index 093355d11d5..dac215e85e0 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTag.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTag.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Finance" + Members = @( + @{ + UserId = "92f6952f-61ca-4a94-8910-508a240bc167" + } + @{ + UserId = "085d800c-b86b-4bfc-a857-9371ad1caf29" + } + ) +} +New-MgTeamTag -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTagMember.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTagMember.md index 093355d11d5..16c383826dd 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTagMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamTagMember.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamTagMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + UserId = "97f62344-57dc-409c-88ad-c4af14158ff5" +} +New-MgTeamTagMember -TeamId $teamId -TeamworkTagId $teamworkTagId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamTagMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamworkWorkforceIntegration.md index 093355d11d5..3d39296fb89 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgTeamworkWorkforceIntegration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "displayName-value" + ApiVersion = 99 + Encryption = @{ + Protocol = "protocol-value" + Secret = "secret-value" + } + IsActive = $true + Url = "url-value" + Supports = "supports-value" +} +New-MgTeamworkWorkforceIntegration -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/New-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/New-MgUserTeamworkInstalledApp.md index 093355d11d5..44315389fb1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/New-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/New-MgUserTeamworkInstalledApp.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTeamworkInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "TeamsApp@odata.bind" = "https://graph.microsoft.com/beta/appCatalogs/teamsApps/12345678-9abc-def0-123456789a" +} +New-MgUserTeamworkInstalledApp -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgAppCatalogTeamApp.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgAppCatalogTeamApp.md index 093355d11d5..772453c5e48 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgAppCatalogTeamApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgAppCatalogTeamApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgAppCatalogTeamApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgAppCatalogTeamApp -TeamsAppId $teamsAppId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgAppCatalogTeamApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatInstalledApp.md index 093355d11d5..c9b09294f71 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatInstalledApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgChatInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatMember.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatMember.md index 093355d11d5..f488c163441 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgChatMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatMember -ChatId $chatId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgChatMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatPinnedMessage.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatPinnedMessage.md index 093355d11d5..98f049818d3 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatPinnedMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatPinnedMessage.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgChatPinnedMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatPinnedMessage -ChatId $chatId -PinnedChatMessageInfoId $pinnedChatMessageInfoId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgChatPinnedMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatTab.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatTab.md index 093355d11d5..fd001facd28 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgChatTab.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgChatTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannel.md index 093355d11d5..8a8ef994ba2 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannel.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannel -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelEmail.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelEmail.md index 093355d11d5..bcee4a41896 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelEmail.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelEmail.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamChannelEmail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelEmail -TeamId $teamId -ChannelId $channelId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamChannelEmail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelMember.md index 093355d11d5..85c27485640 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelSharedWithTeam.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelSharedWithTeam.md index 093355d11d5..51a780db7db 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelSharedWithTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamChannelSharedWithTeam.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamChannelSharedWithTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgTeamChannelSharedWithTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamChannelSharedWithTeam -TeamId $teamId -ChannelId $channelId -SharedWithChannelTeamInfoId $sharedWithChannelTeamInfoId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamChannelSharedWithTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamInstalledApp.md index 093355d11d5..adc66855ad1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamInstalledApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamMember.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamMember.md index 093355d11d5..6b8152c9664 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleOpenShift.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleOpenShift.md index 093355d11d5..589613a7e42 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleOpenShift.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleOpenShift.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleOpenShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleOpenShift -TeamId $teamId -OpenShiftId $openShiftId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleOpenShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleSchedulingGroup.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleSchedulingGroup.md index 093355d11d5..8d6489822f4 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleSchedulingGroup.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleSchedulingGroup.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleSchedulingGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleSchedulingGroup -TeamId $teamId -SchedulingGroupId $schedulingGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleSchedulingGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleShift.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleShift.md index 093355d11d5..ae7c5ad23a8 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleShift.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleShift.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleShift Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleShift -TeamId $teamId -ShiftId $shiftId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleShift Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeCard.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeCard.md index 093355d11d5..87d3cda600d 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeCard.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeCard.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleTimeCard Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeCard -TeamId $teamId -TimeCardId $timeCardId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleTimeCard Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOff.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOff.md index 093355d11d5..f239484debf 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOff.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOff.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleTimeOff Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeOff -TeamId $teamId -TimeOffId $timeOffId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleTimeOff Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffReason.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffReason.md index 093355d11d5..ccb9258089d 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffReason.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffReason.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleTimeOffReason Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeOffReason -TeamId $teamId -TimeOffReasonId $timeOffReasonId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleTimeOffReason Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffRequest.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffRequest.md index 093355d11d5..dc587b1ac9a 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffRequest.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamScheduleTimeOffRequest.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamScheduleTimeOffRequest Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamScheduleTimeOffRequest -TeamId $teamId -TimeOffRequestId $timeOffRequestId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamScheduleTimeOffRequest Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTag.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTag.md index 093355d11d5..42b266709a9 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTag.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTag.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamTag -TeamId $teamId -TeamworkTagId $teamworkTagId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTagMember.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTagMember.md index 093355d11d5..b51074f7d08 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTagMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamTagMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamTagMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamTagMember -TeamId $teamId -TeamworkTagId $teamworkTagId -TeamworkTagMemberId $teamworkTagMemberId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamTagMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamworkWorkforceIntegration.md index 093355d11d5..f857bac3fb1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgTeamworkWorkforceIntegration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Remove-MgUserTeamworkInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Remove-MgUserTeamworkInstalledApp.md index 093355d11d5..b6fe582e58c 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Remove-MgUserTeamworkInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Remove-MgUserTeamworkInstalledApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserTeamworkInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Remove-MgUserTeamworkInstalledApp -UserId $userId -UserScopeTeamsAppInstallationId $userScopeTeamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserTeamworkInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Restart-MgTeamworkDevice.md b/src/Teams/Teams/examples/v1.0-beta/Restart-MgTeamworkDevice.md index 093355d11d5..f45fdcaa480 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Restart-MgTeamworkDevice.md +++ b/src/Teams/Teams/examples/v1.0-beta/Restart-MgTeamworkDevice.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restart-MgTeamworkDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Restart-MgTeamworkDevice -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restart-MgTeamworkDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Send-MgChatActivityNotification.md b/src/Teams/Teams/examples/v1.0-beta/Send-MgChatActivityNotification.md index 093355d11d5..ba3d6c09451 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Send-MgChatActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0-beta/Send-MgChatActivityNotification.md @@ -1,18 +1,136 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgChatActivityNotification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/chats/{chatId}" + } + ActivityType = "taskCreated" + PreviewText = @{ + Content = "New Task Created" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "taskId" + Value = "Task 12322" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgChatActivityNotification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/chats/{chatId}/messages/{messageId}" + } + ActivityType = "approvalRequired" + PreviewText = @{ + Content = "Deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "approvalTaskId" + Value = "2020AAGGTAPP" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgChatActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Send-MgChatActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/chats/19:1c3af46e9e0f4a5293343c8813c47619@thread.v2" + } + ActivityType = "taskCreated" + PreviewText = @{ + Content = "New Task Created" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.chatMembersNotificationRecipient" + ChatId = "19:1c3af46e9e0f4a5293343c8813c47619@thread.v2" + } + TemplateParameters = @( + @{ + Name = "taskId" + Value = "Task 12322" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Send-MgChatActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/chats/{chatId}/messages/{messageId}" + } + ActivityType = "approvalRequired" + PreviewText = @{ + Content = "Deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "jacob@contoso.com" + } + TemplateParameters = @( + @{ + Name = "approvalTaskId" + Value = "2020AAGGTAPP" + } + ) +} +Send-MgChatActivityNotification -ChatId $chatId -BodyParameter $params +``` +This example shows how to use the Send-MgChatActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamActivityNotification.md b/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamActivityNotification.md index 093355d11d5..5e78db96d97 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamActivityNotification.md +++ b/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamActivityNotification.md @@ -1,18 +1,258 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgTeamActivityNotification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/{teamId}" + } + ActivityType = "pendingFinanceApprovalRequests" + PreviewText = @{ + Content = "Internal spending team has a pending finance approval requests" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "pendingRequestCount" + Value = "5" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgTeamActivityNotification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/{teamId}/channels/{channelId}/tabs/{tabId}" + } + ActivityType = "reservationUpdated" + PreviewText = @{ + Content = "You have moved up the queue" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "reservationId" + Value = "TREEE433" + } + @{ + Name = "currentSlot" + Value = "23" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/e8bece96-d393-4b9b-b8da-69cedef1a7e7" + } + ActivityType = "pendingFinanceApprovalRequests" + PreviewText = @{ + Content = "Internal spending team has a pending finance approval requests" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.channelMembersNotificationRecipient" + TeamId = "e8bece96-d393-4b9b-b8da-69cedef1a7e7" + ChannelId = "19:3d61a2309f094f4a9310b20f1db37520@thread.tacv2" + } + TemplateParameters = @( + @{ + Name = "pendingRequestCount" + Value = "5" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/{teamId}/channels/{channelId}/tabs/{tabId}" + } + ActivityType = "reservationUpdated" + PreviewText = @{ + Content = "You have moved up the queue" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "reservationId" + Value = "TREEE433" + } + @{ + Name = "currentSlot" + Value = "23" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/{teamId}" + } + ActivityType = "pendingFinanceApprovalRequests" + PreviewText = @{ + Content = "Internal spending team has a pending finance approval requests" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "pendingRequestCount" + Value = "5" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/e8bece96-d393-4b9b-b8da-69cedef1a7e7" + } + ActivityType = "pendingFinanceApprovalRequests" + PreviewText = @{ + Content = "Internal spending team has a pending finance approval requests" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.teamMembersNotificationRecipient" + TeamId = "e8bece96-d393-4b9b-b8da-69cedef1a7e7" + } + TemplateParameters = @( + @{ + Name = "pendingRequestCount" + Value = "5" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 8: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 9: Using the Send-MgTeamActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/teams/{teamId}/channels/{channelId}/tabs/{tabId}" + } + ActivityType = "reservationUpdated" + PreviewText = @{ + Content = "You have moved up the queue" + } + Recipient = @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "jacob@contoso.com" + } + TemplateParameters = @( + @{ + Name = "reservationId" + Value = "TREEE433" + } + @{ + Name = "currentSlot" + Value = "23" + } + ) +} +Send-MgTeamActivityNotification -TeamId $teamId -BodyParameter $params +``` +This example shows how to use the Send-MgTeamActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamworkActivityNotificationToRecipient.md b/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamworkActivityNotificationToRecipient.md index 093355d11d5..7d9356ef34b 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamworkActivityNotificationToRecipient.md +++ b/src/Teams/Teams/examples/v1.0-beta/Send-MgTeamworkActivityNotificationToRecipient.md @@ -1,18 +1,75 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgTeamworkActivityNotificationToRecipient Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/appCatalogs/teamsApps/{teamsAppId}" + } + ActivityType = "pendingFinanceApprovalRequests" + PreviewText = @{ + Content = "Internal spending team has a pending finance approval requests" + } + Recipients = @( + @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "ab88234e-0874-477c-9638-d144296ed04f" + } + @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "01c64f53-69aa-42c7-9b7f-9f75195d6bfc" + } + ) + TemplateParameters = @( + @{ + Name = "pendingRequestCount" + Value = "5" + } + ) +} +Send-MgTeamworkActivityNotificationToRecipient -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Send-MgTeamworkActivityNotificationToRecipient Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgTeamworkActivityNotificationToRecipient Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) + Recipients = @( + @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "569363e2-4e49-4661-87f2-16f245c5d66a" + } + @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "ab88234e-0874-477c-9638-d144296ed04f" + } + @{ + "@odata.type" = "microsoft.graph.aadUserNotificationRecipient" + UserId = "01c64f53-69aa-42c7-9b7f-9f75195d6bfc" + } + ) +} +Send-MgTeamworkActivityNotificationToRecipient -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Send-MgTeamworkActivityNotificationToRecipient Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamScheduleTimeCardBreak.md b/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamScheduleTimeCardBreak.md index 093355d11d5..a47ffb9b315 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamScheduleTimeCardBreak.md +++ b/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamScheduleTimeCardBreak.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgTeamScheduleTimeCardBreak Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + AtAprovedLocation = $true + Notes = @{ + ContentType = "text" + Content = "start break smaple notes" + } +} +Start-MgTeamScheduleTimeCardBreak -TeamId $teamId -TimeCardId $timeCardId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgTeamScheduleTimeCardBreak Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamworkDeviceDiagnostic.md b/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamworkDeviceDiagnostic.md index 093355d11d5..ff5309a79a5 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamworkDeviceDiagnostic.md +++ b/src/Teams/Teams/examples/v1.0-beta/Start-MgTeamworkDeviceDiagnostic.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Start-MgTeamworkDeviceDiagnostic Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Start-MgTeamworkDeviceDiagnostic -TeamworkDeviceId $teamworkDeviceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Start-MgTeamworkDeviceDiagnostic Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Undo-MgTeamChannelMessageSoftDelete.md b/src/Teams/Teams/examples/v1.0-beta/Undo-MgTeamChannelMessageSoftDelete.md index 093355d11d5..7a2a78c3210 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Undo-MgTeamChannelMessageSoftDelete.md +++ b/src/Teams/Teams/examples/v1.0-beta/Undo-MgTeamChannelMessageSoftDelete.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Undo-MgTeamChannelMessageSoftDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Undo-MgTeamChannelMessageSoftDelete -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Undo-MgTeamChannelMessageSoftDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Undo-MgTeamChannelMessageSoftDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Undo-MgTeamChannelMessageSoftDelete -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - +This example shows how to use the Undo-MgTeamChannelMessageSoftDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgChat.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgChat.md index 093355d11d5..7d3d89e4caf 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgChat.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgChat.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgChat Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + Topic = "Group chat title update" +} +Update-MgChat -ChatId $chatId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgChat Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgChatInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgChatInstalledApp.md index 093355d11d5..02b587bcdc1 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgChatInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgChatInstalledApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgChatInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Update-MgChatInstalledApp -ChatId $chatId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgChatInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgChatTab.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgChatTab.md index 093355d11d5..81a3376c7ea 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgChatTab.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgChatTab.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgChatTab Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "My Contoso Tab - updated again" +} +Update-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgChatTab Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeam.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeam.md index 093355d11d5..a717cb3ca28 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeam.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeam.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeam Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + IsMembershipLimitedToOwners = $true + MemberSettings = @{ + AllowCreateUpdateChannels = $true + } + MessagingSettings = @{ + AllowUserEditMessages = $true + AllowUserDeleteMessages = $true + } + FunSettings = @{ + AllowGiphy = $true + GiphyContentRating = "strict" + } + DiscoverySettings = @{ + ShowInTeamsSearchAndSuggestions = $true + } +} +Update-MgTeam -TeamId $teamId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeam Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannel.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannel.md index 093355d11d5..e9df5182227 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannel.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannel.md @@ -1,18 +1,17 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamChannel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "UpdateChannelModeration" + Description = "Update channel moderation." + ModerationSettings = @{ + UserNewMessageRestriction = "moderators" + ReplyRestriction = "everyone" + AllowNewMessageFromBots = $true + AllowNewMessageFromConnectors = $true + } +} +Update-MgTeamChannel -TeamId $teamId -ChannelId $channelId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamChannel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMember.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMember.md index 093355d11d5..037e9ddb8b3 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMember.md @@ -1,18 +1,26 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) +} +Update-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgTeamChannelMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) +} +Update-MgTeamChannelMember -TeamId $teamId -ChannelId $channelId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamChannelMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMessage.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMessage.md index 093355d11d5..d7f4d21e708 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMessage.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamChannelMessage.md @@ -1,18 +1,419 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamChannelMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + PolicyViolation = @{ + PolicyTip = @{ + GeneralText = "This item has been blocked by the administrator." + ComplianceUrl = "https://contoso.com/dlp-policy-page" + MatchedConditionDescriptions = @( + "Credit Card Number" + ) + } + VerdictDetails = "AllowOverrideWithoutJustification,AllowFalsePositiveOverride" + DlpAction = "BlockAccess" + } +} +Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgTeamChannelMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + MessageType = "message" + Subject = $null + Summary = $null + Importance = "normal" + Locale = "en-us" + From = @{ + Application = $null + Device = $null + User = @{ + Id = "3b102402-813e-4e17-a6b2-f841aef1fdfc" + DisplayName = "Sumit Gupta" + UserIdentityType = "aadUser" + } + Conversation = $null + } + Body = @{ + ContentType = "text" + Content = "Edit text only" + } + Attachments = @( + ) + Mentions = @( + ) + Reactions = @( + ) +} +Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Update-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + MessageType = "message" + DeletedDateTime = $null + Subject = $null + Summary = $null + Importance = "normal" + Locale = "en-us" + From = @{ + Application = $null + Device = $null + Conversation = $null + User = @{ + Id = "6b3f3c54-d09c-4fdd-b146-9b514a8a4f40" + DisplayName = "Sumit Gupta" + UserIdentityType = "aadUser" + } + } + Body = @{ + ContentType = "html" + Content = "
+
+
+
+
RaghavTestGlobalBot YEAH" + } + Attachments = @( + ) + Mentions = @( + @{ + Id = 0 + MentionText = "Raghav" + Mentioned = @{ + Application = $null + Device = $null + Conversation = $null + User = @{ + Id = "f1b66449-b46d-49b0-9c3c-53c10234c818e" + DisplayName = "Raghav Mankad" + UserIdentityType = "aadUser" + } + } + } + @{ + Id = 1 + MentionText = "TestGlobalBot" + Mentioned = @{ + Application = @{ + Id = "03a02232-d8f5-4970-a77e-6e8c76ce7a4e" + DisplayName = "TestGlobalBot" + ApplicationIdentityType = "bot" + } + Device = $null + Conversation = $null + User = $null + } + } + ) + Reactions = @( + ) +} +Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params +``` +This example shows how to use the Update-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Update-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + MessageType = "message" + Subject = $null + Summary = $null + Importance = "normal" + Locale = "en-us" + From = @{ + Application = $null + Device = $null + User = @{ + Id = "3b102402-813e-4e17-a6b2-f841aef1fdfc" + DisplayName = "Sumit Gupta" + UserIdentityType = "aadUser" + } + Conversation = $null + } + Body = @{ + ContentType = "html" + Content = "

text

" + } + Attachments = @( + @{ + Id = "e8f78756199240b88448ae0fc6db112d" + ContentType = "application/vnd.microsoft.card.hero" + ContentUrl = $null + Content = "{ + "title": "*title*", + "subtitle": "*subtitle*", + "text": "Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.Here’s a small sample of some recipes to whet your appetite.", + "images": [ + { + "url": "https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview" + } + ], + "buttons": [ + { + "type": "openUrl", + "image": "https://urlp.asm.skype.com/v1/url/content?url=https%3a%2f%2fcdn2.iconfinder.com%2fdata%2ficons%2fsocial-icons-33%2f128%2fTrello-128.png", + "title": "😃😃 click me 😃😃", + "value": "http://microsoft.com" + }, + { + "type": "imback", + "title": "&i am back& <>= \"", + "value": "&i am back& <>= \"" + }, + { + "type": "openUrl", + "title": "Open URL", + "value": "http://google.com" + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + @{ + Id = "638464e32834471ea202007da60a5ae6" + ContentType = "application/vnd.microsoft.card.hero" + ContentUrl = $null + Content = "{ + "title": "*title*", + "subtitle": "*subtitle*", + "text": "Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.Here’s a small sample of some recipes to whet your appetite.", + "images": [ + { + "url": "https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview" + } + ], + "buttons": [ + { + "type": "messageBack", + "title": "&message back& <>= \"", + "text": "text = &message back& <>= \"", + "displayText": "displayText = &message back& <>= \"", + "value": { + "text": "some text 2" + } + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + ) + Mentions = @( + ) + Reactions = @( + ) +} +Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params +``` +This example shows how to use the Update-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Update-MgTeamChannelMessage Cmdlet +```powershell +Import-Module Microsoft.Graph.Teams +$params = @{ + MessageType = "message" + Subject = $null + Summary = $null + Importance = "normal" + Locale = "en-us" + From = @{ + Application = $null + Device = $null + User = @{ + Id = "3b102402-813e-4e17-a6b2-f841aef1fdfc" + DisplayName = "Sumit Gupta" + UserIdentityType = "aadUser" + } + Conversation = $null + } + Body = @{ + ContentType = "html" + Content = "

text

" + } + Attachments = @( + @{ + Id = "e8f78756199240b88448ae0fc6db112d" + ContentType = "application/vnd.microsoft.card.hero" + ContentUrl = $null + Content = "{ + "title": "*title*", + "subtitle": "*subtitle*", + "text": "Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.Here’s a small sample of some recipes to whet your appetite.", + "images": [ + { + "url": "https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview" + } + ], + "buttons": [ + { + "type": "openUrl", + "image": "https://urlp.asm.skype.com/v1/url/content?url=https%3a%2f%2fcdn2.iconfinder.com%2fdata%2ficons%2fsocial-icons-33%2f128%2fTrello-128.png", + "title": "😃😃 click me 😃😃", + "value": "http://microsoft.com" + }, + { + "type": "imback", + "title": "&i am back& <>= \"", + "value": "&i am back& <>= \"" + }, + { + "type": "openUrl", + "title": "Open URL", + "value": "http://google.com" + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + @{ + Id = "638464e32834471ea202007da60a5ae6" + ContentType = "application/vnd.microsoft.card.hero" + ContentUrl = $null + Content = "{ + "title": "*title*", + "subtitle": "*subtitle*", + "text": "Have you found yourself scratching your head trying to figure these questions out? Frustrated trying to access some of the goodies unique to the Microsoft Teams platform? Well, fear not, Bot Builder SDK Extension for Teams in .NET and Node flavors is here! Just head on over to Nuget or NPM to download our tasty helpers, sure to speed up your prep time so you can spend more time maximizing the flavor of the bots you're cooking up.Here’s a small sample of some recipes to whet your appetite.", + "images": [ + { + "url": "https://us-api.asm.skype.com/v1/objects/0-eus-d8-ced0c9567ee7b0b233b987bd32f9eacd/views/img_preview" + } + ], + "buttons": [ + { + "type": "messageBack", + "title": "&message back& <>= \"", + "text": "text = &message back& <>= \"", + "displayText": "displayText = &message back& <>= \"", + "value": { + "text": "some text 2" + } + } + ] +}" + Name = $null + ThumbnailUrl = $null + } + ) + Mentions = @( + ) + Reactions = @( + @{ + ReactionType = "angry" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T08:10:30.489Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "f1b66449-b46d-49b0-9c3c-53c10a5c818e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "laugh" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T08:10:32.489Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "03a02232-d8f5-4970-a77e-6e8c76ce7a4e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "like" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T02:17:14.67Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "f1b66449-b46d-49b0-9c3c-53c10a5c818e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "like" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T02:34:40.3Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "4c9041b7-449a-40f7-8855-56da239b9fd1" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "like" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T08:10:25.489Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "03a02232-d8f5-4970-a77e-6e8c76ce7a4e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "heart" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T08:10:31.489Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "03a02232-d8f5-4970-a77e-6e8c76ce7a4e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "sad" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T08:10:33.489Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "03a02232-d8f5-4970-a77e-6e8c76ce7a4e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + @{ + ReactionType = "surprised" + CreatedDateTime = [System.DateTime]::Parse("2018-10-21T08:10:34.489Z") + User = @{ + Application = $null + Device = $null + User = @{ + Id = "03a02232-d8f5-4970-a77e-6e8c76ce7a4e" + DisplayName = $null + UserIdentityType = "aadUser" + } + } + } + ) +} +Update-MgTeamChannelMessage -TeamId $teamId -ChannelId $channelId -ChatMessageId $chatMessageId -BodyParameter $params +``` +This example shows how to use the Update-MgTeamChannelMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamInstalledApp.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamInstalledApp.md index 093355d11d5..4a1d0192432 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamInstalledApp.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamInstalledApp.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamInstalledApp Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +Update-MgTeamInstalledApp -TeamId $teamId -TeamsAppInstallationId $teamsAppInstallationId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamInstalledApp Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamMember.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamMember.md index 093355d11d5..83b8cbdcd60 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamMember.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamMember.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.aadUserConversationMember" + Roles = @( + "owner" + ) +} +Update-MgTeamMember -TeamId $teamId -ConversationMemberId $conversationMemberId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamTag.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamTag.md index 093355d11d5..f9cc3b54e7c 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamTag.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamTag.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamTag Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "Finance" +} +Update-MgTeamTag -TeamId $teamId -TeamworkTagId $teamworkTagId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamTag Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkDeviceSoftware.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkDeviceSoftware.md index 093355d11d5..0d16abe3d17 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkDeviceSoftware.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkDeviceSoftware.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamworkDeviceSoftware Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + SoftwareType = "teamsClient" + SoftwareVersion = "1.0.96.22" +} +Update-MgTeamworkDeviceSoftware -TeamworkDeviceId $teamworkDeviceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamworkDeviceSoftware Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkTeamAppSetting.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkTeamAppSetting.md index 093355d11d5..dffb9f7c71f 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkTeamAppSetting.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkTeamAppSetting.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamworkTeamAppSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + "@odata.type" = "#microsoft.graph.teamsAppSettings" + IsChatResourceSpecificConsentEnabled = "true" +} +Update-MgTeamworkTeamAppSetting -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamworkTeamAppSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkWorkforceIntegration.md b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkWorkforceIntegration.md index 093355d11d5..8e95881e7fd 100644 --- a/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkWorkforceIntegration.md +++ b/src/Teams/Teams/examples/v1.0-beta/Update-MgTeamworkWorkforceIntegration.md @@ -1,18 +1,18 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgTeamworkWorkforceIntegration Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Teams +$params = @{ + DisplayName = "displayName-value" + ApiVersion = 99 + Encryption = @{ + Protocol = "protocol-value" + Secret = "secret-value" + } + IsActive = $true + Url = "url-value" + Supports = "supports-value" +} +Update-MgTeamworkWorkforceIntegration -WorkforceIntegrationId $workforceIntegrationId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgTeamworkWorkforceIntegration Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Clear-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Clear-MgUserPresence.md index 093355d11d5..fe8662d194e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Clear-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Clear-MgUserPresence.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Clear-MgUserPresence Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" +} +Clear-MgUserPresence -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Clear-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Complete-MgUserOutlookTask.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Complete-MgUserOutlookTask.md index 093355d11d5..3f1f707041e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Complete-MgUserOutlookTask.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Complete-MgUserOutlookTask.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Complete-MgUserOutlookTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Complete-MgUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Complete-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberGroup.md index 093355d11d5..51206224545 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberGroup.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgUserMemberGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + GroupIds = @( + "fee2c45b-915a-4a64-b130-f4eb9e75525e" + "4fe90ae7-065a-478b-9400-e0a0e1cbd540" + ) +} +# A UPN can also be used as -UserId. +Confirm-MgUserMemberGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgUserMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberObject.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberObject.md index 093355d11d5..c3dcebd3b87 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberObject.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Confirm-MgUserMemberObject.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Confirm-MgUserMemberObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Ids = @( + "80a963dd-84af-4eb8-b2a6-781e444d4fb0" + "62e90394-69f5-4237-9190-012177145e10" + "86a64f51-3a64-4cc6-a8c8-6b8f000c0f52" + "ac38546e-ddf3-437a-ac5c-27a94cd7a0f1" + ) +} +# A UPN can also be used as -UserId. +Confirm-MgUserMemberObject -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Confirm-MgUserMemberObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMailFolder.md index 093355d11d5..a7ab132ebe2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMailFolder.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "destinationId-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMessage.md index 093355d11d5..2bb387173c0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserMessage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "destinationId-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteNotebook.md index 093355d11d5..207cf1c94ce 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteNotebook.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgUserOnenoteNotebook Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + GroupId = "groupId-value" + RenameAs = "renameAs-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenoteNotebook -UserId $userId -NotebookId $notebookId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgUserOnenoteNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenotePageToSection.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenotePageToSection.md index 093355d11d5..ec711fd2458 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenotePageToSection.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenotePageToSection.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgUserOnenotePageToSection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Id = "id-value" + GroupId = "groupId-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenotePageToSection -UserId $userId -OnenotePageId $onenotePageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgUserOnenotePageToSection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToNotebook.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToNotebook.md index 093355d11d5..31494b93715 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToNotebook.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToNotebook.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgUserOnenoteSectionToNotebook Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Id = "id-value" + GroupId = "groupId-value" + RenameAs = "renameAs-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenoteSectionToNotebook -UserId $userId -OnenoteSectionId $onenoteSectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgUserOnenoteSectionToNotebook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToSectionGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToSectionGroup.md index 093355d11d5..a6df0ab32dc 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToSectionGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Copy-MgUserOnenoteSectionToSectionGroup.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Copy-MgUserOnenoteSectionToSectionGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Id = "id-value" + GroupId = "groupId-value" + RenameAs = "renameAs-value" +} +# A UPN can also be used as -UserId. +Copy-MgUserOnenoteSectionToSectionGroup -UserId $userId -OnenoteSectionId $onenoteSectionId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Copy-MgUserOnenoteSectionToSectionGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Export-MgUserPersonalData.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Export-MgUserPersonalData.md index 093355d11d5..4121a126eb0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Export-MgUserPersonalData.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Export-MgUserPersonalData.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Export-MgUserPersonalData Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + StorageLocation = "storageLocation-value" +} +Export-MgUserPersonalData -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Export-MgUserPersonalData Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Find-MgUserMeetingTime.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Find-MgUserMeetingTime.md index 093355d11d5..a09f8852bcd 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Find-MgUserMeetingTime.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Find-MgUserMeetingTime.md @@ -1,18 +1,48 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Find-MgUserMeetingTime Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Attendees = @( + @{ + Type = "required" + EmailAddress = @{ + Name = "Alex Wilbur" + Address = "alexw@contoso.onmicrosoft.com" + } + } + ) + LocationConstraint = @{ + IsRequired = "false" + SuggestLocation = "false" + Locations = @( + @{ + ResolveAvailability = "false" + DisplayName = "Conf room Hood" + } + ) + } + TimeConstraint = @{ + ActivityDomain = "work" + TimeSlots = @( + @{ + Start = @{ + DateTime = "2019-04-16T09:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-04-18T17:00:00" + TimeZone = "Pacific Standard Time" + } + } + ) + } + IsOrganizerOptional = "false" + MeetingDuration = "PT1H" + ReturnSuggestionReasons = "true" + MinimumAttendeePercentage = "100" +} +# A UPN can also be used as -UserId. +Find-MgUserMeetingTime -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Find-MgUserMeetingTime Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserDefaultCalendarSchedule.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserDefaultCalendarSchedule.md index 093355d11d5..aabc8af8cec 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserDefaultCalendarSchedule.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserDefaultCalendarSchedule.md @@ -1,18 +1,23 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserDefaultCalendarSchedule Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Schedules = @( + "adelev@contoso.onmicrosoft.com" + "meganb@contoso.onmicrosoft.com" + ) + StartTime = @{ + DateTime = "2019-03-15T09:00:00" + TimeZone = "Pacific Standard Time" + } + EndTime = @{ + DateTime = "2019-03-15T18:00:00" + TimeZone = "Pacific Standard Time" + } + AvailabilityViewInterval = 60 +} +# A UPN can also be used as -UserId. +Get-MgUserDefaultCalendarSchedule -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserDefaultCalendarSchedule Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMailTip.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMailTip.md index 093355d11d5..f683fd04749 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMailTip.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMailTip.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMailTip Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + EmailAddresses = @( + "danas@contoso.onmicrosoft.com" + "fannyd@contoso.onmicrosoft.com" + ) + MailTipsOptions = "automaticReplies, mailboxFullStatus" +} +# A UPN can also be used as -UserId. +Get-MgUserMailTip -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMailTip Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberGroup.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberGroup.md index 093355d11d5..33ac2fa0597 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberGroup.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMemberGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SecurityEnabledOnly = $true +} +# A UPN can also be used as -UserId. +Get-MgUserMemberGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMemberGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberObject.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberObject.md index 093355d11d5..16ca304671f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberObject.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserMemberObject.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMemberObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SecurityEnabledOnly = $true +} +# A UPN can also be used as -UserId. +Get-MgUserMemberObject -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMemberObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserOnenoteNotebookFromWebUrl.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserOnenoteNotebookFromWebUrl.md index 093355d11d5..f14c810a39b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserOnenoteNotebookFromWebUrl.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Get-MgUserOnenoteNotebookFromWebUrl.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOnenoteNotebookFromWebUrl Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + WebUrl = "webUrl value" +} +# A UPN can also be used as -UserId. +Get-MgUserOnenoteNotebookFromWebUrl -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOnenoteNotebookFromWebUrl Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Initialize-MgUserServicePlan.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Initialize-MgUserServicePlan.md index 093355d11d5..26be5725d22 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Initialize-MgUserServicePlan.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Initialize-MgUserServicePlan.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Initialize-MgUserServicePlan Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ServicePlanId = "28f42d6f-8034-4a0f-9d8a-a218a63b3299" + SkuId = "465a2a90-5e59-456d-a7b8-127b9fb2e484" +} +# A UPN can also be used as -UserId. +Initialize-MgUserServicePlan -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Initialize-MgUserServicePlan Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEvent.md index 093355d11d5..c67608fef6e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEvent.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAcceptUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "comment-value" + SendResponse = $true +} +# A UPN can also be used as -UserId. +Invoke-MgAcceptUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAcceptUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEventTentatively.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEventTentatively.md index 093355d11d5..45686d6a7d6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEventTentatively.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserEventTentatively.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAcceptUserEventTentatively Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "I may not be able to make this week. How about next week?" + SendResponse = $true + ProposedNewTime = @{ + Start = @{ + DateTime = "2019-12-02T18:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-12-02T19:00:00" + TimeZone = "Pacific Standard Time" + } + } +} +# A UPN can also be used as -UserId. +Invoke-MgAcceptUserEventTentatively -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAcceptUserEventTentatively Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation.md index 093355d11d5..b8fc52747c8 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation -UserId $userId -AccessReviewInstanceId $accessReviewInstanceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgAcceptUserPendingAccessReviewInstanceRecommendation Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision.md index 093355d11d5..a2dfcad3086 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Decision = "Approve" + Justification = "All principals with access need continued access to the resource (Marketing Group) as all the principals are on the marketing team" + ResourceId = "a5c51e59-3fcd-4a37-87a1-835c0c21488a" +} +# A UPN can also be used as -UserId. +Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision -UserId $userId -AccessReviewInstanceId $accessReviewInstanceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgBatchUserPendingAccessReviewInstanceRecordDecision Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgCreateOrGetUserOnlineMeeting.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgCreateOrGetUserOnlineMeeting.md index 093355d11d5..f47afd62c2e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgCreateOrGetUserOnlineMeeting.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgCreateOrGetUserOnlineMeeting.md @@ -1,18 +1,56 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgCreateOrGetUserOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + StartDateTime = [System.DateTime]::Parse("2020-02-06T01:49:21.3524945+00:00") + EndDateTime = [System.DateTime]::Parse("2020-02-06T02:19:21.3524945+00:00") + Subject = "Create a meeting with customId provided" + ExternalId = "7eb8263f-d0e0-4149-bb1c-1f0476083c56" + Participants = @{ + Attendees = @( + @{ + Identity = @{ + User = @{ + Id = "1f35f2e6-9cab-44ad-8d5a-b74c14720000" + } + } + Role = "presenter" + Upn = "test1@contoso.com" + } + ) + } +} +# A UPN can also be used as -UserId. +Invoke-MgCreateOrGetUserOnlineMeeting -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Invoke-MgCreateOrGetUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Invoke-MgCreateOrGetUserOnlineMeeting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ChatInfo = @{ + ThreadId = "19:7ebda77322dd4505ac4dedb5b67df076@thread.tacv2" + } + StartDateTime = [System.DateTime]::Parse("2020-02-06T01:49:21.3524945+00:00") + EndDateTime = [System.DateTime]::Parse("2020-02-06T02:19:21.3524945+00:00") + ExternalId = "7eb8263f-d0e0-4149-bb1c-1f0476083c56" + Participants = @{ + Attendees = @( + @{ + Identity = @{ + User = @{ + Id = "1f35f2e6-9cab-44ad-8d5a-b74c14720000" + } + } + Upn = "test1@contoso.com" + } + ) + } + Subject = "Create a meeting with customId provided" +} +# A UPN can also be used as -UserId. +Invoke-MgCreateOrGetUserOnlineMeeting -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgCreateOrGetUserOnlineMeeting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDeclineUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDeclineUserEvent.md index 093355d11d5..d3f053a702e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDeclineUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDeclineUserEvent.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgDeclineUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "I won't be able to make this week. How about next week?" + SendResponse = $true + ProposedNewTime = @{ + Start = @{ + DateTime = "2019-12-02T18:00:00" + TimeZone = "Pacific Standard Time" + } + End = @{ + DateTime = "2019-12-02T19:00:00" + TimeZone = "Pacific Standard Time" + } + } +} +# A UPN can also be used as -UserId. +Invoke-MgDeclineUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgDeclineUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDismissUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDismissUserEventReminder.md index 093355d11d5..96e40d71f32 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDismissUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgDismissUserEventReminder.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgDismissUserEventReminder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgDismissUserEventReminder -UserId $userId -EventId $eventId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgDismissUserEventReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel.md index 093355d11d5..ea089466182 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel.md @@ -1,18 +1,44 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ContentInfo = @{ + Format = "default" + Identifier = "MyDoc.docx" + State = "rest" + Metadata = @( + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_Enabled" + Value = "True" + } + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_Method" + Value = "Standard" + } + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_SetDate" + Value = "1/1/0001 12:00:00 AM" + } + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_SiteId" + Value = "cfa4cf1d-a337-4481-aa99-19d8f3d63f7c" + } + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_Name" + Value = "LabelScopedToBob_Tests" + } + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_ContentBits" + Value = "0" + } + @{ + Name = "MSIP_Label_0ed12617-d0ef-4053-b8e4-ecf5bcf2ffb3_ActionId" + Value = "00000000-0000-0000-0000-000000000000" + } + ) + } +} +Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgExtractUserSecurityInformationProtectionSensitivityLabelContentLabel Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserEvent.md index 093355d11d5..12c5120e046 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserEvent.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgForwardUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "danas@contoso.onmicrosoft.com" + Name = "Dana Swope" + } + } + ) + Comment = "Dana, hope you can make this meeting." +} +# A UPN can also be used as -UserId. +Invoke-MgForwardUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgForwardUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserMessage.md index 093355d11d5..c1568b4e86f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgForwardUserMessage.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgForwardUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + IsDeliveryReceiptRequested = $true + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "danas@contoso.onmicrosoft.com" + Name = "Dana Swope" + } + } + ) + } + Comment = "Dana, just want to make sure you get this." +} +# A UPN can also be used as -UserId. +Invoke-MgForwardUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgForwardUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgInvalidateUserRefreshToken.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgInvalidateUserRefreshToken.md index 093355d11d5..6a9c1504b37 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgInvalidateUserRefreshToken.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgInvalidateUserRefreshToken.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgInvalidateUserRefreshToken Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgInvalidateUserRefreshToken -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgInvalidateUserRefreshToken Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgLicenseUser.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgLicenseUser.md index 093355d11d5..4aa1d470fc0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgLicenseUser.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgLicenseUser.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgLicenseUser Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +Invoke-MgLicenseUser -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgLicenseUser Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyAllUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyAllUserMessage.md index 093355d11d5..2e639b50fe2 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyAllUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyAllUserMessage.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReplyAllUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "guidelines.txt" + ContentBytes = "bWFjIGFuZCBjaGVlc2UgdG9kYXk=" + } + ) + } + Comment = "Please take a look at the attached guidelines before you decide on the name." +} +# A UPN can also be used as -UserId. +Invoke-MgReplyAllUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReplyAllUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyUserMessage.md index 093355d11d5..d3f00ee2031 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReplyUserMessage.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReplyUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + } + @{ + EmailAddress = @{ + Address = "randiw@contoso.onmicrosoft.com" + Name = "Randi Welch" + } + } + ) + } + Comment = "Samantha, Randi, would you name the group please?" +} +# A UPN can also be used as -UserId. +Invoke-MgReplyUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReplyUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReprovisionUserCloudPc.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReprovisionUserCloudPc.md index 093355d11d5..e7bff3d959c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReprovisionUserCloudPc.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgReprovisionUserCloudPc.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgReprovisionUserCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgReprovisionUserCloudPc -UserId $userId -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgReprovisionUserCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSnoozeUserEventReminder.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSnoozeUserEventReminder.md index 093355d11d5..97ea1fc7fea 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSnoozeUserEventReminder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSnoozeUserEventReminder.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSnoozeUserEventReminder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + NewReminderTime = @{ + DateTime = "2016-10-19T10:37:00Z" + TimeZone = "timeZone-value" + } +} +# A UPN can also be used as -UserId. +Invoke-MgSnoozeUserEventReminder -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSnoozeUserEventReminder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSoftUserChatMessageDelete.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSoftUserChatMessageDelete.md index 093355d11d5..b8e9317019a 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSoftUserChatMessageDelete.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgSoftUserChatMessageDelete.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSoftUserChatMessageDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +Invoke-MgSoftUserChatMessageDelete -UserId $userId -ChatId $chatId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSoftUserChatMessageDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTranslateUserExchangeId.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTranslateUserExchangeId.md index 093355d11d5..708a092d56c 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTranslateUserExchangeId.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTranslateUserExchangeId.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgTranslateUserExchangeId Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + InputIds = @( + "{rest-formatted-id-1}" + "{rest-formatted-id-2}" + ) + SourceIdType = "restId" + TargetIdType = "restImmutableEntryId" +} +# A UPN can also be used as -UserId. +Invoke-MgTranslateUserExchangeId -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgTranslateUserExchangeId Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTroubleshootUserCloudPc.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTroubleshootUserCloudPc.md index 093355d11d5..b9de0c71c93 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTroubleshootUserCloudPc.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgTroubleshootUserCloudPc.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgTroubleshootUserCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgTroubleshootUserCloudPc -UserId $userId -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgTroubleshootUserCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgUnsubscribeUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgUnsubscribeUserMessage.md index 093355d11d5..9a3ebd9f338 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgUnsubscribeUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Invoke-MgUnsubscribeUserMessage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnsubscribeUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Invoke-MgUnsubscribeUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnsubscribeUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMailFolder.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMailFolder.md index 093355d11d5..3e00a97a0df 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMailFolder.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMailFolder.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Move-MgUserMailFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "destinationId-value" +} +# A UPN can also be used as -UserId. +Move-MgUserMailFolder -UserId $userId -MailFolderId $mailFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Move-MgUserMailFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMessage.md index 093355d11d5..e52a126588e 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserMessage.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Move-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationId = "deleteditems" +} +# A UPN can also be used as -UserId. +Move-MgUserMessage -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Move-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserTaskListTask.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserTaskListTask.md index 093355d11d5..79a9063a6e7 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserTaskListTask.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Move-MgUserTaskListTask.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Move-MgUserTaskListTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + DestinationTaskListId = "AAMkAGVjMzJmMWZjLTgyYjgtNGIyNi1hOGQ0LWRjMjNmMGRmOWNiYQAuAAAAAAAboFsPFj7gQqFxG" +} +# A UPN can also be used as -UserId. +Move-MgUserTaskListTask -UserId $userId -BaseTaskListId $baseTaskListId -BaseTaskId $baseTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Move-MgUserTaskListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageAttachmentUploadSession.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageAttachmentUploadSession.md index 093355d11d5..473e05ff164 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageAttachmentUploadSession.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageAttachmentUploadSession.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessageAttachmentUploadSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + AttachmentItem = @{ + AttachmentType = "file" + Name = "scenary" + Size = 7208534 + IsInline = $true + ContentId = "my_inline_picture" + } +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserMessageAttachmentUploadSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserMessageAttachmentUploadSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + AttachmentItem = @{ + AttachmentType = "file" + Name = "flower" + Size = 3483322 + } +} +# A UPN can also be used as -UserId. +New-MgUserMessageAttachmentUploadSession -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessageAttachmentUploadSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageForward.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageForward.md index 093355d11d5..2529ffbc678 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageForward.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageForward.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessageForward Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + IsDeliveryReceiptRequested = $true + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "danas@contoso.onmicrosoft.com" + Name = "Dana Swope" + } + } + ) + } + Comment = "Dana, just want to make sure you get this; you'll need this if the project gets approved." +} +# A UPN can also be used as -UserId. +New-MgUserMessageForward -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessageForward Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReply.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReply.md index 093355d11d5..ed1d9871e8f 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReply.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReply.md @@ -1,18 +1,27 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessageReply Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + Name = "Samantha Booth" + } + } + @{ + EmailAddress = @{ + Address = "randiw@contoso.onmicrosoft.com" + Name = "Randi Welch" + } + } + ) + } + Comment = "Samantha, Randi, would you name the group if the project is approved, please?" +} +# A UPN can also be used as -UserId. +New-MgUserMessageReply -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessageReply Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReplyAll.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReplyAll.md index 093355d11d5..e24e28f44f4 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReplyAll.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserMessageReplyAll.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserMessageReplyAll Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "guidelines.txt" + ContentBytes = "bWFjIGFuZCBjaGVlc2UgdG9kYXk=" + } + ) + } + Comment = "if the project gets approved, please take a look at the attached guidelines before you decide on the name." +} +# A UPN can also be used as -UserId. +New-MgUserMessageReplyAll -UserId $userId -MessageId $messageId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserMessageReplyAll Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserTodoListTaskAttachmentUploadSession.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserTodoListTaskAttachmentUploadSession.md index 093355d11d5..921421359e6 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserTodoListTaskAttachmentUploadSession.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/New-MgUserTodoListTaskAttachmentUploadSession.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTodoListTaskAttachmentUploadSession Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + AttachmentInfo = @{ + AttachmentType = "file" + Name = "flower" + Size = 3483322 + } +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskAttachmentUploadSession -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTodoListTaskAttachmentUploadSession Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Rename-MgUserCloudPc.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Rename-MgUserCloudPc.md index 093355d11d5..0fa975b4574 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Rename-MgUserCloudPc.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Rename-MgUserCloudPc.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Rename-MgUserCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Rename-MgUserCloudPc -UserId $userId -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Rename-MgUserCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Restart-MgUserCloudPc.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Restart-MgUserCloudPc.md index 093355d11d5..20d522635d4 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Restart-MgUserCloudPc.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Restart-MgUserCloudPc.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Restart-MgUserCloudPc Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Restart-MgUserCloudPc -UserId $userId -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Restart-MgUserCloudPc Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Revoke-MgUserSign.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Revoke-MgUserSign.md new file mode 100644 index 00000000000..7332e13350f --- /dev/null +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Revoke-MgUserSign.md @@ -0,0 +1,8 @@ +### Example 1: Using the Revoke-MgUserSign Cmdlet +```powershell +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Revoke-MgUserSign -UserId $userId +``` +This example shows how to use the Revoke-MgUserSign Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMail.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMail.md index 093355d11d5..758b1a34b20 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMail.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMail.md @@ -1,18 +1,127 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgUserMail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "Meet for lunch?" + Body = @{ + ContentType = "Text" + Content = "The new cafeteria is open." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "samanthab@contoso.onmicrosoft.com" + } + } + ) + CcRecipients = @( + @{ + EmailAddress = @{ + Address = "danas@contoso.onmicrosoft.com" + } + } + ) + } + SaveToSentItems = "false" +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgUserMail Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "Meet for lunch?" + Body = @{ + ContentType = "Text" + Content = "The new cafeteria is open." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "meganb@contoso.onmicrosoft.com" + } + } + ) + Attachments = @( + @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "attachment.txt" + ContentType = "text/plain" + ContentBytes = "SGVsbG8gV29ybGQh" + } + ) + } +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgUserMail Cmdlet +```powershell +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "9/9/2018: concert" + Body = @{ + ContentType = "HTML" + Content = "The group represents Nevada." + } + ToRecipients = @( + @{ + EmailAddress = @{ + Address = "AlexW@contoso.OnMicrosoft.com" + } + } + ) + InternetMessageHeaders = @( + @{ + Name = "x-custom-header-group-name" + Value = "Nevada" + } + @{ + Name = "x-custom-header-group-id" + Value = "NV001" + } + ) + } +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params +``` +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Send-MgUserMail Cmdlet +```powershell +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Message = @{ + Subject = "Project kickoff" + ToRecipients = @( + @{ + EmailAddress = @{ + Name = "Samantha Booth" + Address = "samanthab@contoso.onmicrosoft.com" + } + } + ) + Mentions = @( + @{ + Mentioned = @{ + Name = "Dana Swope" + Address = "danas@contoso.onmicrosoft.com" + } + } + ) + } +} +# A UPN can also be used as -UserId. +Send-MgUserMail -UserId $userId -BodyParameter $params +``` +This example shows how to use the Send-MgUserMail Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMessage.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMessage.md index 093355d11d5..e7f17dc06a8 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMessage.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserMessage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgUserMessage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +# A UPN can also be used as -UserId. +Send-MgUserMessage -UserId $userId -MessageId $messageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Send-MgUserMessage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserTeamworkActivityNotification.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserTeamworkActivityNotification.md index 093355d11d5..dfdc2327056 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserTeamworkActivityNotification.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Send-MgUserTeamworkActivityNotification.md @@ -1,18 +1,71 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Send-MgUserTeamworkActivityNotification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Send-MgUserTeamworkActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Send-MgUserTeamworkActivityNotification Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Topic = @{ + Source = "text" + Value = "Deployment Approvals Channel" + WebUrl = "https://teams.microsoft.com/l/message/19:448cfd2ac2a7490a9084a9ed14cttr78c@thread.skype/1605223780000?tenantId=c8b1bf45-3834-4ecf-971a-b4c755ee677d&groupId=d4c2a937-f097-435a-bc91-5c1683ca7245&parentMessageId=1605223771864&teamName=Approvals&channelName=Azure%20DevOps&createdTime=1605223780000" + } + ActivityType = "deploymentApprovalRequired" + PreviewText = @{ + Content = "New deployment requires your approval" + } + TemplateParameters = @( + @{ + Name = "deploymentId" + Value = "6788662" + } + ) +} +Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Send-MgUserTeamworkActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Send-MgUserTeamworkActivityNotification Cmdlet +```powershell +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Topic = @{ + Source = "entityUrl" + Value = "https://graph.microsoft.com/beta/users/{userId}/teamwork/installedApps/{installationId}" + } + ActivityType = "taskCreated" + PreviewText = @{ + Content = "New Task Created" + } + TemplateParameters = @( + @{ + Name = "taskId" + Value = "Task 12322" + } + ) +} +Send-MgUserTeamworkActivityNotification -UserId $userId -BodyParameter $params +``` +This example shows how to use the Send-MgUserTeamworkActivityNotification Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresence.md index 093355d11d5..68b1a007611 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresence.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgUserPresence Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + SessionId = "22553876-f5ab-4529-bffb-cfe50aa89f87" + Availability = "Available" + Activity = "Available" + ExpirationDuration = "PT1H" +} +Set-MgUserPresence -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgUserPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresenceUserPreferredPresence.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresenceUserPreferredPresence.md index 093355d11d5..13cbd07d8cc 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresenceUserPreferredPresence.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Set-MgUserPresenceUserPreferredPresence.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Set-MgUserPresenceUserPreferredPresence Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Availability = "DoNotDisturb" + Activity = "DoNotDisturb" + ExpirationDuration = "PT8H" +} +Set-MgUserPresenceUserPreferredPresence -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Set-MgUserPresenceUserPreferredPresence Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Stop-MgUserEvent.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Stop-MgUserEvent.md index 093355d11d5..5a299284c4d 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Stop-MgUserEvent.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Stop-MgUserEvent.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Stop-MgUserEvent Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Comment = "Cancelling for this week due to all hands" +} +# A UPN can also be used as -UserId. +Stop-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Stop-MgUserEvent Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserPassword.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserPassword.md index 093355d11d5..86c7e7e48a0 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserPassword.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserPassword.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgUserPassword Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + Password = "1234567890" +} +Test-MgUserPassword -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgUserPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelApplication.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelApplication.md index 093355d11d5..fe442358f0b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelApplication.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelApplication.md @@ -1,18 +1,70 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgUserSecurityInformationProtectionSensitivityLabelApplication Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ContentInfo = @{ + "@odata.type" = "#microsoft.graph.security.contentInfo" + "Format@odata.type" = "#microsoft.graph.security.contentFormat" + ContentFormat = "File" + Format = "default" + Identifier = $null + "State@odata.type" = "#microsoft.graph.security.contentState" + State = "rest" + "Metadata@odata.type" = "#Collection(microsoft.graph.security.keyValuePair)" + Metadata = @( + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_Enabled" + Value = "True" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_Method" + Value = "Standard" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_SetDate" + Value = "1/1/0001 12:00:00 AM" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_SiteId" + Value = "cfa4cf1d-a337-4481-aa99-19d8f3d63f7c" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_Name" + Value = "LabelScopedToBob_Tests" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_ContentBits" + Value = "0" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_3a80e051-487c-40d4-b491-73ad25d997e6_ActionId" + Value = "00000000-0000-0000-0000-000000000000" + } + ) + } + LabelingOptions = @{ + "@odata.type" = "#microsoft.graph.security.labelingOptions" + "AssignmentMethod@odata.type" = "#microsoft.graph.security.assignmentMethod" + AssignmentMethod = "standard" + "LabelId@odata.type" = "#Guid" + LabelId = "836ff34f-b604-4a62-a68c-d6be4205d569" + DowngradeJustification = @{ + JustificationMessage = "Justified" + IsDowngradeJustified = $true + } + "ExtendedProperties@odata.type" = "#Collection(microsoft.graph.security.keyValuePair)" + ExtendedProperties = @( + ) + } +} +Test-MgUserSecurityInformationProtectionSensitivityLabelApplication -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgUserSecurityInformationProtectionSensitivityLabelApplication Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval.md index 093355d11d5..60c1ccb3d3b 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval.md @@ -1,18 +1,52 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + ContentInfo = @{ + "@odata.type" = "#microsoft.graph.security.contentInfo" + Identifier = $null + State = "rest" + Metadata = @( + @{ + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_Enabled" + Value = "True" + } + @{ + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_Method" + Value = "Standard" + } + @{ + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_SetDate" + Value = "1/1/0001 12:00:00 AM" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_SiteId" + Value = "cfa4cf1d-a337-4481-aa99-19d8f3d63f7c" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_Name" + Value = "LabelScopedToBob_Tests" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_ContentBits" + Value = "0" + } + @{ + "@odata.type" = "#microsoft.graph.security.keyValuePair" + Name = "MSIP_Label_836ff34f-b604-4a62-a68c-d6be4205d569_ActionId" + Value = "00000000-0000-0000-0000-000000000000" + } + ) + } + DowngradeJustification = @{ + JustificationMessage = "The information has been declassified." + IsDowngradeJustified = $true + } +} +Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Test-MgUserSecurityInformationProtectionSensitivityLabelRemoval Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Undo-MgUserChatMessageSoftDelete.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Undo-MgUserChatMessageSoftDelete.md index 093355d11d5..efbbf7bd041 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Undo-MgUserChatMessageSoftDelete.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Undo-MgUserChatMessageSoftDelete.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Undo-MgUserChatMessageSoftDelete Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +Undo-MgUserChatMessageSoftDelete -UserId $userId -ChatId $chatId -ChatMessageId $chatMessageId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Undo-MgUserChatMessageSoftDelete Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Update-MgUserPassword.md b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Update-MgUserPassword.md index 093355d11d5..8e06e075417 100644 --- a/src/Users.Actions/Users.Actions/examples/v1.0-beta/Update-MgUserPassword.md +++ b/src/Users.Actions/Users.Actions/examples/v1.0-beta/Update-MgUserPassword.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserPassword Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Actions +$params = @{ + CurrentPassword = "xWwvJ]6NMw+bWH-d" + NewPassword = "0eM85N54wFxWwvJ]" +} +# A UPN can also be used as -UserId. +Update-MgUserPassword -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserPassword Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoom.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoom.md index 093355d11d5..875c9903178 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoom.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoom.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Find-MgUserRoom Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Find-MgUserRoom -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Find-MgUserRoom Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoomList.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoomList.md index 093355d11d5..322ce8223f5 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoomList.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Find-MgUserRoomList.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Find-MgUserRoomList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Find-MgUserRoomList -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Find-MgUserRoomList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserCloudPcLaunchInfo.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserCloudPcLaunchInfo.md index 093355d11d5..e71b6d99830 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserCloudPcLaunchInfo.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserCloudPcLaunchInfo.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserCloudPcLaunchInfo Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Get-MgUserCloudPcLaunchInfo -UserId $userId -CloudPCId $cloudPCId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserCloudPcLaunchInfo Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserDelta.md index 093355d11d5..b10fcfcdfbd 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserDelta.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +Get-MgUserDelta ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserPlannerAllDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserPlannerAllDelta.md index 093355d11d5..f7cf14a3d0b 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserPlannerAllDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserPlannerAllDelta.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserPlannerAllDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Get-MgUserPlannerAllDelta -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserPlannerAllDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListDelta.md index 093355d11d5..e0ac4a3aba3 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListDelta.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTaskListDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Get-MgUserTaskListDelta -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTaskListDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListTaskDelta.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListTaskDelta.md index 093355d11d5..407f748f3b4 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListTaskDelta.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Get-MgUserTaskListTaskDelta.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTaskListTaskDelta Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Get-MgUserTaskListTaskDelta -UserId $userId -BaseTaskListId $baseTaskListId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTaskListTaskDelta Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgSupportedUserOutlookLanguage.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgSupportedUserOutlookLanguage.md index 093355d11d5..78a637ae5b0 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgSupportedUserOutlookLanguage.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgSupportedUserOutlookLanguage.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgSupportedUserOutlookLanguage Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Invoke-MgSupportedUserOutlookLanguage -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgSupportedUserOutlookLanguage Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgTimeUserOutlook.md b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgTimeUserOutlook.md index 093355d11d5..b77a1749486 100644 --- a/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgTimeUserOutlook.md +++ b/src/Users.Functions/Users.Functions/examples/v1.0-beta/Invoke-MgTimeUserOutlook.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgTimeUserOutlook Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users.Functions +# A UPN can also be used as -UserId. +Invoke-MgTimeUserOutlook -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgTimeUserOutlook Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserMemberOf.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserMemberOf.md index 093355d11d5..3eeacbbd72b 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserMemberOf.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserMemberOf -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookMasterCategory.md index 093355d11d5..1e7da3ce532 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookMasterCategory.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookMasterCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookMasterCategory -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOutlookMasterCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTask.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTask.md index 093355d11d5..65508629e12 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTask.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTask.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOutlookTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserOutlookTask Cmdlet +```powershell +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTask -UserId $userId +``` +This example shows how to use the Get-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskAttachment.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskAttachment.md index 093355d11d5..5555475eeb7 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskAttachment.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskAttachment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserOutlookTaskAttachment -UserId $userId -OutlookTaskId $outlookTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolder.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolder.md index 093355d11d5..e9750bd6d57 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolder.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolder.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTaskFolder -UserId $userId -OutlookTaskFolderId $outlookTaskFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOutlookTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOutlookTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTaskFolder -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolderTask.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolderTask.md index 093355d11d5..3aed3aaebd9 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolderTask.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskFolderTask.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookTaskFolderTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTaskFolderTask -UserId $userId -OutlookTaskFolderId $outlookTaskFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookTaskFolderTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroup.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroup.md index 093355d11d5..c1c82b32959 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroup.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroup.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookTaskGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTaskGroup -UserId $userId -OutlookTaskGroupId $outlookTaskGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserOutlookTaskGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserOutlookTaskGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTaskGroup -UserId $userId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookTaskGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroupTaskFolder.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroupTaskFolder.md index 093355d11d5..2d14ddbec63 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroupTaskFolder.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOutlookTaskGroupTaskFolder.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOutlookTaskGroupTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOutlookTaskGroupTaskFolder -UserId $userId -OutlookTaskGroupId $outlookTaskGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOutlookTaskGroupTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedDevice.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedDevice.md index 093355d11d5..e4c8fdea8bb 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedDevice.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedDevice.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOwnedDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOwnedDevice -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOwnedDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedObject.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedObject.md index 093355d11d5..b59c6d655ba 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedObject.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserOwnedObject.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserOwnedObject Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserOwnedObject -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserOwnedObject Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserRegisteredDevice.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserRegisteredDevice.md index 093355d11d5..d86d125f429 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserRegisteredDevice.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserRegisteredDevice.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserRegisteredDevice Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserRegisteredDevice -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserRegisteredDevice Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingContactMergeSuggestion.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingContactMergeSuggestion.md index 093355d11d5..d373e64b68f 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingContactMergeSuggestion.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingContactMergeSuggestion.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserSettingContactMergeSuggestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserSettingContactMergeSuggestion -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserSettingContactMergeSuggestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingItemInsight.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingItemInsight.md index 093355d11d5..a4a70789d61 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingItemInsight.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingItemInsight.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserSettingItemInsight Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserSettingItemInsight -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserSettingItemInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingRegionalAndLanguageSetting.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingRegionalAndLanguageSetting.md index 093355d11d5..16718718b06 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingRegionalAndLanguageSetting.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingRegionalAndLanguageSetting.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserSettingRegionalAndLanguageSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserSettingRegionalAndLanguageSetting -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserSettingRegionalAndLanguageSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingShiftPreference.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingShiftPreference.md index 093355d11d5..ba6b419dae4 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingShiftPreference.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserSettingShiftPreference.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserSettingShiftPreference Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserSettingShiftPreference -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserSettingShiftPreference Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoList.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoList.md index 093355d11d5..07c42e0a05b 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoList.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTodoList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoList -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTask.md index 093355d11d5..2ccbc553c27 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTask.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTodoListTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskAttachment.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskAttachment.md index 093355d11d5..dc2baa65ced 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskAttachment.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskAttachment.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTodoListTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskAttachment -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -AttachmentBaseId $attachmentBaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserTodoListTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskAttachment -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTodoListTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskChecklistItem.md index 093355d11d5..0106e951b62 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,24 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTodoListTaskChecklistItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTaskChecklistItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgUserTodoListTaskChecklistItem Cmdlet +```powershell +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -OutFile $outFileId +``` +This example shows how to use the Get-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskLinkedResource.md index 093355d11d5..b96401fbcbf 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTodoListTaskLinkedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgUserTodoListTaskLinkedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Get-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Get-MgUserTransitiveMemberOf.md b/src/Users/Users/examples/v1.0-beta/Get-MgUserTransitiveMemberOf.md index 093355d11d5..2eb54d10f6a 100644 --- a/src/Users/Users/examples/v1.0-beta/Get-MgUserTransitiveMemberOf.md +++ b/src/Users/Users/examples/v1.0-beta/Get-MgUserTransitiveMemberOf.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgUserTransitiveMemberOf Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +Get-MgUserTransitiveMemberOf -UserId $userId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgUserTransitiveMemberOf Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookMasterCategory.md index 093355d11d5..29b84411e73 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookMasterCategory.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookMasterCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Project expenses" + Color = "preset9" +} +# A UPN can also be used as -UserId. +New-MgUserOutlookMasterCategory -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTask.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTask.md index 093355d11d5..b9c8b39cfff 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTask.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTask.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Subject = "Shop for children's weekend" + StartDateTime = @{ + DateTime = "2016-05-03T09:00:00" + TimeZone = "Eastern Standard Time" + } + DueDateTime = @{ + DateTime = "2016-05-05T16:00:00" + TimeZone = "Eastern Standard Time" + } +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTask -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskAttachment.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskAttachment.md index 093355d11d5..0c9f70b4f16 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskAttachment.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskAttachment.md @@ -1,18 +1,29 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + "@odata.type" = "#microsoft.graph.fileAttachment" + Name = "menu.txt" + ContentBytes = "bWFjIGFuZCBjaGVlc2UgdG9kYXk=" +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTaskAttachment -UserId $userId -OutlookTaskId $outlookTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserOutlookTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserOutlookTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + "@odata.type" = "#microsoft.graph.itemAttachment" + Name = "Holiday event" + Item = @{ + "@odata.type" = "microsoft.graph.event" + Subject = "Discuss gifts for children" + } +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTaskAttachment -UserId $userId -OutlookTaskId $outlookTaskId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolder.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolder.md index 093355d11d5..5b4b17a8615 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolder.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolder.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Name = "Volunteer" +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTaskFolder -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolderTask.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolderTask.md index 093355d11d5..ce01ec8b12a 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolderTask.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskFolderTask.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookTaskFolderTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Subject = "Shop for dinner" + StartDateTime = @{ + DateTime = "2016-04-23T18:00:00" + TimeZone = "Pacific Standard Time" + } + DueDateTime = @{ + DateTime = "2016-04-25T13:00:00" + TimeZone = "Pacific Standard Time" + } +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTaskFolderTask -UserId $userId -OutlookTaskFolderId $outlookTaskFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookTaskFolderTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroup.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroup.md index 093355d11d5..df49869e504 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroup.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookTaskGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Name = "Leisure tasks" +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTaskGroup -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookTaskGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroupTaskFolder.md b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroupTaskFolder.md index 093355d11d5..ef66a01d843 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroupTaskFolder.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserOutlookTaskGroupTaskFolder.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserOutlookTaskGroupTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Name = "Cooking" +} +# A UPN can also be used as -UserId. +New-MgUserOutlookTaskGroupTaskFolder -UserId $userId -OutlookTaskGroupId $outlookTaskGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserOutlookTaskGroupTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoList.md b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoList.md index 093355d11d5..968f5aca2ad 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoList.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTodoList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Travel items" +} +# A UPN can also be used as -UserId. +New-MgUserTodoList -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTask.md index 093355d11d5..2f4c7f25573 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTask.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTodoListTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Title = "A new task" + Categories = @( + "Important" + ) + LinkedResources = @( + @{ + WebUrl = "http://microsoft.com" + ApplicationName = "Microsoft" + DisplayName = "Microsoft" + } + ) +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskAttachment.md b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskAttachment.md index 093355d11d5..a6e3c0b8bd2 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskAttachment.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskAttachment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTodoListTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + "@odata.type" = "#microsoft.graph.taskFileAttachment" + Name = "smile" + ContentBytes = "a0b1c76de9f7=" + ContentType = "image/gif" +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskAttachment -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTodoListTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskChecklistItem.md index 093355d11d5..dc357f63570 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTodoListTaskChecklistItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Final sign-off from the team" +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the New-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the New-MgUserTodoListTaskChecklistItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Final sign-off from the team" +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskLinkedResource.md index 093355d11d5..aa024556e9d 100644 --- a/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0-beta/New-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgUserTodoListTaskLinkedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + WebUrl = "https://microsoft.com" + ApplicationName = "Microsoft" + DisplayName = "Microsoft" + ExternalId = "dk9cddce2-dce2-f9dd-e2dc-cdf9e2dccdf9" +} +# A UPN can also be used as -UserId. +New-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookMasterCategory.md index 093355d11d5..be11c037c74 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookMasterCategory.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOutlookMasterCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTask.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTask.md index 093355d11d5..c55788e8b49 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTask.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTask.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOutlookTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskFolder.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskFolder.md index 093355d11d5..812e7b001b8 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskFolder.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskFolder.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOutlookTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserOutlookTaskFolder -UserId $userId -OutlookTaskFolderId $outlookTaskFolderId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOutlookTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskGroup.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskGroup.md index 093355d11d5..334d18b7d02 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskGroup.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserOutlookTaskGroup.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserOutlookTaskGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserOutlookTaskGroup -UserId $userId -OutlookTaskGroupId $outlookTaskGroupId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserOutlookTaskGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoList.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoList.md index 093355d11d5..409d70e637f 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoList.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserTodoList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTask.md index 093355d11d5..d8856b7fac6 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTask.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserTodoListTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskAttachment.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskAttachment.md index 093355d11d5..69810baea92 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskAttachment.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskAttachment.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserTodoListTaskAttachment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTaskAttachment -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -AttachmentBaseId $attachmentBaseId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserTodoListTaskAttachment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskChecklistItem.md index 093355d11d5..9cc123bcd0c 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserTodoListTaskChecklistItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskLinkedResource.md index 093355d11d5..b2f28e07467 100644 --- a/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0-beta/Remove-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgUserTodoListTaskLinkedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +# A UPN can also be used as -UserId. +Remove-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookMasterCategory.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookMasterCategory.md index 093355d11d5..8b9ee3dc9aa 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookMasterCategory.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookMasterCategory.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOutlookMasterCategory Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Color = "preset15" +} +# A UPN can also be used as -UserId. +Update-MgUserOutlookMasterCategory -UserId $userId -OutlookCategoryId $outlookCategoryId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOutlookMasterCategory Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTask.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTask.md index 093355d11d5..e5e4ae2aa6e 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTask.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTask.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOutlookTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DueDateTime = @{ + DateTime = "2016-05-06T16:00:00" + TimeZone = "Eastern Standard Time" + } +} +# A UPN can also be used as -UserId. +Update-MgUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOutlookTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskFolder.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskFolder.md index 093355d11d5..9b8578e2c0a 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskFolder.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskFolder.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOutlookTaskFolder Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Name = "Charity work" +} +# A UPN can also be used as -UserId. +Update-MgUserOutlookTaskFolder -UserId $userId -OutlookTaskFolderId $outlookTaskFolderId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOutlookTaskFolder Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskGroup.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskGroup.md index 093355d11d5..273594895ed 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskGroup.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserOutlookTaskGroup.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserOutlookTaskGroup Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + Name = "Personal Tasks" +} +# A UPN can also be used as -UserId. +Update-MgUserOutlookTaskGroup -UserId $userId -OutlookTaskGroupId $outlookTaskGroupId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserOutlookTaskGroup Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingContactMergeSuggestion.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingContactMergeSuggestion.md index 093355d11d5..2de290707a0 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingContactMergeSuggestion.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingContactMergeSuggestion.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserSettingContactMergeSuggestion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + IsEnabled = $false +} +# A UPN can also be used as -UserId. +Update-MgUserSettingContactMergeSuggestion -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserSettingContactMergeSuggestion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingItemInsight.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingItemInsight.md index 093355d11d5..9bb2fcf5af7 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingItemInsight.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingItemInsight.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserSettingItemInsight Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + IsEnabled = "false" +} +Update-MgUserSettingItemInsight -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserSettingItemInsight Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingRegionalAndLanguageSetting.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingRegionalAndLanguageSetting.md index 093355d11d5..a9465f26f8a 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingRegionalAndLanguageSetting.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserSettingRegionalAndLanguageSetting.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserSettingRegionalAndLanguageSetting Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + AuthoringLanguages = @( + @{ + Locale = "en-US" + } + @{ + Locale = "es-MX" + } + ) + DefaultRegionalFormat = @{ + Locale = "en-US" + } +} +# A UPN can also be used as -UserId. +Update-MgUserSettingRegionalAndLanguageSetting -UserId $userId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserSettingRegionalAndLanguageSetting Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoList.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoList.md index 093355d11d5..ea0f86bd3da 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoList.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoList.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserTodoList Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "Vacation Plan" +} +# A UPN can also be used as -UserId. +Update-MgUserTodoList -UserId $userId -TodoTaskListId $todoTaskListId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserTodoList Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTask.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTask.md index 093355d11d5..725862a4aea 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTask.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTask.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserTodoListTask Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DueDateTime = @{ + DateTime = "2020-07-25T16:00:00" + TimeZone = "Eastern Standard Time" + } +} +# A UPN can also be used as -UserId. +Update-MgUserTodoListTask -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserTodoListTask Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskChecklistItem.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskChecklistItem.md index 093355d11d5..32fb98c75a3 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskChecklistItem.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskChecklistItem.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserTodoListTaskChecklistItem Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + DisplayName = "buy cake" +} +# A UPN can also be used as -UserId. +Update-MgUserTodoListTaskChecklistItem -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -ChecklistItemId $checklistItemId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserTodoListTaskChecklistItem Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskLinkedResource.md b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskLinkedResource.md index 093355d11d5..c98c7a11e0a 100644 --- a/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskLinkedResource.md +++ b/src/Users/Users/examples/v1.0-beta/Update-MgUserTodoListTaskLinkedResource.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgUserTodoListTaskLinkedResource Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.Users +$params = @{ + "@odata.type" = "#microsoft.graph.linkedResource" + WebUrl = "http://microsoft.com" + ApplicationName = "Microsoft" + DisplayName = "Microsoft" +} +# A UPN can also be used as -UserId. +Update-MgUserTodoListTaskLinkedResource -UserId $userId -TodoTaskListId $todoTaskListId -TodoTaskId $todoTaskId -LinkedResourceId $linkedResourceId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgUserTodoListTaskLinkedResource Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMember.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMember.md index 093355d11d5..ef5c31667b2 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMember.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMember.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgWindowsUpdatesUpdatableAssetMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + Assets = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) +} +Add-MgWindowsUpdatesUpdatableAssetMember -UpdatableAssetId $updatableAssetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgWindowsUpdatesUpdatableAssetMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMemberById.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMemberById.md index 093355d11d5..699b6404417 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMemberById.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Add-MgWindowsUpdatesUpdatableAssetMemberById.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Add-MgWindowsUpdatesUpdatableAssetMemberById Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + Ids = @( + "String" + "String" + "String" + ) + MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" +} +Add-MgWindowsUpdatesUpdatableAssetMemberById -UpdatableAssetId $updatableAssetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Add-MgWindowsUpdatesUpdatableAssetMemberById Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesCatalogEntry.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesCatalogEntry.md index 093355d11d5..b2f6aa8e04c 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesCatalogEntry.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesCatalogEntry.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgWindowsUpdatesCatalogEntry Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesCatalogEntry ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgWindowsUpdatesCatalogEntry Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeployment.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeployment.md index 093355d11d5..aa2fc568f09 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeployment.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgWindowsUpdatesDeployment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesDeployment -DeploymentId $deploymentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgWindowsUpdatesDeployment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgWindowsUpdatesDeployment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesDeployment ``` - -{{ Add description here }} - +This example shows how to use the Get-MgWindowsUpdatesDeployment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceExclusion.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceExclusion.md index 093355d11d5..89070766f42 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceExclusion.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceExclusion.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgWindowsUpdatesDeploymentAudienceExclusion Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesDeploymentAudienceExclusion -DeploymentId $deploymentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgWindowsUpdatesDeploymentAudienceExclusion Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceMember.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceMember.md index 093355d11d5..efbd87e5f40 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceMember.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesDeploymentAudienceMember.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgWindowsUpdatesDeploymentAudienceMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesDeploymentAudienceMember -DeploymentId $deploymentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Get-MgWindowsUpdatesDeploymentAudienceMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesResourceConnection.md index 093355d11d5..7e54bb3891e 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesResourceConnection.md @@ -1,18 +1,28 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgWindowsUpdatesResourceConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgWindowsUpdatesResourceConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgWindowsUpdatesResourceConnection Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId +``` +This example shows how to use the Get-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgWindowsUpdatesResourceConnection Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesResourceConnection +``` +This example shows how to use the Get-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesUpdatableAsset.md index 093355d11d5..8a4be912c19 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Get-MgWindowsUpdatesUpdatableAsset.md @@ -1,18 +1,49 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId ``` - -{{ Add description here }} - +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId +``` +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 4: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset -Filter "isof('microsoft.graph.windowsUpdates.azureADDevice')" +``` +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 5: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset +``` +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 6: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset -OutFile $outFileId +``` +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 7: Using the Get-MgWindowsUpdatesUpdatableAsset Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Get-MgWindowsUpdatesUpdatableAsset -Filter "isof('microsoft.graph.windowsUpdates.updatableAssetGroup')" +``` +This example shows how to use the Get-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAsset.md index 093355d11d5..e4de7da6a3b 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAsset.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgEnrollWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + UpdateCategory = "String" + Assets = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) +} +Invoke-MgEnrollWindowsUpdatesUpdatableAsset -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgEnrollWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAssetById.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAssetById.md index 093355d11d5..cd0c8b408a6 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAssetById.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgEnrollWindowsUpdatesUpdatableAssetById.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgEnrollWindowsUpdatesUpdatableAssetById Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + UpdateCategory = "feature" + MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" + Ids = @( + "String" + "String" + "String" + ) +} +Invoke-MgEnrollWindowsUpdatesUpdatableAssetById -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgEnrollWindowsUpdatesUpdatableAssetById Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgGraphWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgGraphWindowsUpdatesUpdatableAsset.md index 093355d11d5..b1904c31500 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgGraphWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgGraphWindowsUpdatesUpdatableAsset.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgGraphWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + UpdateCategory = "feature" + MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" + Ids = @( + "String" + "String" + "String" + ) +} +Invoke-MgGraphWindowsUpdatesUpdatableAsset -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgGraphWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgUnenrollWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgUnenrollWindowsUpdatesUpdatableAsset.md index 093355d11d5..ef12255bf3a 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgUnenrollWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Invoke-MgUnenrollWindowsUpdatesUpdatableAsset.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Invoke-MgUnenrollWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + UpdateCategory = "String" + Assets = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) +} +Invoke-MgUnenrollWindowsUpdatesUpdatableAsset -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Invoke-MgUnenrollWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesDeployment.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesDeployment.md index 093355d11d5..8b159e79b24 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesDeployment.md @@ -1,18 +1,30 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgWindowsUpdatesDeployment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.deployment" + Content = @{ + "@odata.type" = "microsoft.graph.windowsUpdates.featureUpdateReference" + Version = "20H2" + } + Settings = @{ + "@odata.type" = "microsoft.graph.windowsUpdates.windowsDeploymentSettings" + Rollout = @{ + DevicesPerOffer = 100 + } + Monitoring = @{ + MonitoringRules = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.monitoringRule" + Signal = "rollback" + Threshold = 5 + Action = "pauseDeployment" + } + ) + } + } +} +New-MgWindowsUpdatesDeployment -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgWindowsUpdatesDeployment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesResourceConnection.md index 093355d11d5..04b04d39851 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesResourceConnection.md @@ -1,18 +1,13 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgWindowsUpdatesResourceConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.operationalInsightsConnection" + AzureSubscriptionId = "322ec614-e9c2-4cd5-a55c-5711fdecf02e" + AzureResourceGroupName = "target-resource-group" + WorkspaceName = "my-workspace" +} +New-MgWindowsUpdatesResourceConnection -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesUpdatableAsset.md index 093355d11d5..cb6d8248e67 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/New-MgWindowsUpdatesUpdatableAsset.md @@ -1,18 +1,10 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the New-MgWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.updatableAssetGroup" +} +New-MgWindowsUpdatesUpdatableAsset -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the New-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesDeployment.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesDeployment.md index 093355d11d5..9e17ec440b9 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesDeployment.md @@ -1,18 +1,7 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgWindowsUpdatesDeployment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Remove-MgWindowsUpdatesDeployment -DeploymentId $deploymentId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgWindowsUpdatesDeployment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesResourceConnection.md index 093355d11d5..3001b6e0750 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesResourceConnection.md @@ -1,18 +1,14 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgWindowsUpdatesResourceConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Remove-MgWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgWindowsUpdatesResourceConnection Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Remove-MgWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgWindowsUpdatesResourceConnection Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAsset.md index 093355d11d5..7dbd6ba8fb6 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAsset.md @@ -1,18 +1,21 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Remove-MgWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Remove-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Remove-MgWindowsUpdatesUpdatableAsset Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +Remove-MgWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId ``` - -{{ Add description here }} - +This example shows how to use the Remove-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 3: Using the Remove-MgWindowsUpdatesUpdatableAsset Cmdlet +```powershell +Import-Module Microsoft.Graph.WindowsUpdates +Remove-MgWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId +``` +This example shows how to use the Remove-MgWindowsUpdatesUpdatableAsset Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMember.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMember.md index 093355d11d5..a951c560c69 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMember.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMember.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgWindowsUpdatesUpdatableAssetMember Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + Assets = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) +} +Remove-MgWindowsUpdatesUpdatableAssetMember -UpdatableAssetId $updatableAssetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgWindowsUpdatesUpdatableAssetMember Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMemberById.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMemberById.md index 093355d11d5..0b4c0f1ae5c 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMemberById.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Remove-MgWindowsUpdatesUpdatableAssetMemberById.md @@ -1,18 +1,15 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Remove-MgWindowsUpdatesUpdatableAssetMemberById Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + Ids = @( + "String" + "String" + "String" + ) + MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" +} +Remove-MgWindowsUpdatesUpdatableAssetMemberById -UpdatableAssetId $updatableAssetId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Remove-MgWindowsUpdatesUpdatableAssetMemberById Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeployment.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeployment.md index 093355d11d5..f20e2ac9206 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeployment.md @@ -1,18 +1,36 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgWindowsUpdatesDeployment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.deployment" + State = @{ + "@odata.type" = "microsoft.graph.windowsUpdates.deploymentState" + RequestedValue = "paused" + } +} +Update-MgWindowsUpdatesDeployment -DeploymentId $deploymentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} +This example shows how to use the Update-MgWindowsUpdatesDeployment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +### Example 2: Using the Update-MgWindowsUpdatesDeployment Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.deployment" + Settings = @{ + "@odata.type" = "microsoft.graph.windowsUpdates.windowsDeploymentSettings" + Monitoring = @{ + MonitoringRules = @( + @{ + Signal = "rollback" + Threshold = 5 + Action = "pauseDeployment" + } + ) + } + } +} +Update-MgWindowsUpdatesDeployment -DeploymentId $deploymentId -BodyParameter $params ``` - -{{ Add description here }} - +This example shows how to use the Update-MgWindowsUpdatesDeployment Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudience.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudience.md index 093355d11d5..9594958df28 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudience.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudience.md @@ -1,18 +1,33 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgWindowsUpdatesDeploymentAudience Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + AddMembers = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) + RemoveMembers = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) + AddExclusions = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) + RemoveExclusions = @( + @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" + Id = "String (identifier)" + } + ) +} +Update-MgWindowsUpdatesDeploymentAudience -DeploymentId $deploymentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgWindowsUpdatesDeploymentAudience Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudienceById.md b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudienceById.md index 093355d11d5..47c74f9ba66 100644 --- a/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudienceById.md +++ b/src/WindowsUpdates/WindowsUpdates/examples/v1.0-beta/Update-MgWindowsUpdatesDeploymentAudienceById.md @@ -1,18 +1,22 @@ -### Example 1: {{ Add title here }} +### Example 1: Using the Update-MgWindowsUpdatesDeploymentAudienceById Cmdlet ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Import-Module Microsoft.Graph.WindowsUpdates +$params = @{ + MemberEntityType = "String" + AddMembers = @( + "String" + ) + RemoveMembers = @( + "String" + ) + AddExclusions = @( + "String" + ) + RemoveExclusions = @( + "String" + ) +} +Update-MgWindowsUpdatesDeploymentAudienceById -DeploymentId $deploymentId -BodyParameter $params ``` - -{{ Add description here }} - -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` - -{{ Add description here }} - +This example shows how to use the Update-MgWindowsUpdatesDeploymentAudienceById Cmdlet. +To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). From cdb2e3a5b197c9c9672945848500c8ed3adc6798 Mon Sep 17 00:00:00 2001 From: Eunice Waweru <73849846+msewaweru@users.noreply.github.com> Date: Fri, 16 Sep 2022 00:37:20 +0300 Subject: [PATCH 21/30] Added examples to PermissionGrantPolicy cmdlets (#1498) * Added examples to PermissionGrantPolicy cmdlets * Added more examples * Minor edits Co-authored-by: Peter Ombwa --- .../Get-MgPolicyPermissionGrantPolicy.md | 46 +++++++++++++++---- ...et-MgPolicyPermissionGrantPolicyExclude.md | 40 ++++++++++------ ...et-MgPolicyPermissionGrantPolicyInclude.md | 28 +++++------ .../New-MgPolicyPermissionGrantPolicy.md | 24 +++++----- ...ew-MgPolicyPermissionGrantPolicyExclude.md | 27 +++++------ ...ew-MgPolicyPermissionGrantPolicyInclude.md | 27 +++++------ .../Remove-MgPolicyPermissionGrantPolicy.md | 18 ++------ ...ve-MgPolicyPermissionGrantPolicyExclude.md | 18 ++------ ...ve-MgPolicyPermissionGrantPolicyInclude.md | 18 ++------ .../Update-MgPolicyPermissionGrantPolicy.md | 18 ++------ ...te-MgPolicyPermissionGrantPolicyExclude.md | 18 ++------ ...te-MgPolicyPermissionGrantPolicyInclude.md | 18 ++------ .../v1.0/Get-MgPolicyPermissionGrantPolicy.md | 46 +++++++++++++++---- ...et-MgPolicyPermissionGrantPolicyExclude.md | 40 ++++++++++------ ...et-MgPolicyPermissionGrantPolicyInclude.md | 28 +++++------ .../v1.0/New-MgPolicyPermissionGrantPolicy.md | 24 +++++----- ...ew-MgPolicyPermissionGrantPolicyExclude.md | 27 +++++------ ...ew-MgPolicyPermissionGrantPolicyInclude.md | 27 +++++------ .../Remove-MgPolicyPermissionGrantPolicy.md | 18 ++------ ...ve-MgPolicyPermissionGrantPolicyExclude.md | 18 ++------ ...ve-MgPolicyPermissionGrantPolicyInclude.md | 18 ++------ .../Update-MgPolicyPermissionGrantPolicy.md | 18 ++------ ...te-MgPolicyPermissionGrantPolicyExclude.md | 18 ++------ ...te-MgPolicyPermissionGrantPolicyInclude.md | 18 ++------ 24 files changed, 284 insertions(+), 316 deletions(-) diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md index 093355d11d5..c7d78701138 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,46 @@ -### Example 1: {{ Add title here }} +### Example 1: List all permission grant policies + ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicy | fl + +DeletedDateTime : +Description : Includes all application permissions (app roles), for all APIs, for any client application. +DisplayName : All application permissions, for any client app +Excludes : {} +Id : microsoft-all-application-permissions +Includes : {bddda1ec-0174-44d5-84e2-47fb0ac01595} +AdditionalProperties : {[includeAllPreApprovedApplications, False], [resourceScopeType, tenant], [includes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions')/includes], [excludes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions')/excludes]} -{{ Add output here }} +DeletedDateTime : +Description : Includes all chat resoruce-specific application permissions, for all APIs, for any client application. +DisplayName : All chat resource-specific application permissions, for any client app +Excludes : {} +Id : microsoft-all-application-permissions-for-chat +Includes : {013e8de3-5e79-4b0f-a440-8f7794086460} +AdditionalProperties : {[includeAllPreApprovedApplications, False], [resourceScopeType, chat], [includes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions-for-chat')/includes], [excludes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions-for-chat')/excludes]} ``` -{{ Add description here }} +This command retrieves a list of all permission grant policies in Azure AD. + +### Example 2: Get a permission grant policy by ID -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId "microsoft-all-application-permissions" | fl -{{ Add output here }} +DeletedDateTime : +Description : Includes all application permissions (app roles), for all APIs, for any client application. +DisplayName : All application permissions, for any client app +Excludes : {} +Id : microsoft-all-application-permissions +Includes : {bddda1ec-0174-44d5-84e2-47fb0ac01595} +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies/$entity], [includeAllPreApprovedApplications, False], [resourceScopeType, tenant], + [includes@odata.context, https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions')/includes]…} ``` -{{ Add description here }} - +This command retrieves a specified permission grant policy in Azure AD. \ No newline at end of file diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..32571820719 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Get a permission grant policy exclude by ID -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId "microsoft-application-admin" | fl -{{ Add output here }} -``` +CertifiedClientApplicationsOnly : False +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : c85b029f-4abf-47d8-ae61-d2a38299033a +PermissionClassification : all +PermissionType : application +Permissions : {all} +ResourceApplication : 00000003-0000-0000-c000-000000000000 +AdditionalProperties : {[scopeSensitivityLabels, System.Collections.Generic.Dictionary`2[System.String,System.Object]]} -{{ Add description here }} +CertifiedClientApplicationsOnly : False +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : 2a1fbb36-9d9a-42d8-8804-de2aa45aca80 +PermissionClassification : all +PermissionType : application +Permissions : {all} +ResourceApplication : 00000002-0000-0000-c000-000000000000 +AdditionalProperties : {[scopeSensitivityLabels, System.Collections.Generic.Dictionary`2[System.String,System.Object]]} +``` +This command retrieves a specified permission grant policy exclude configuration in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..67d4881f36d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Get a permission grant policy include by ID -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId "microsoft-all-application-permissions" | fl -{{ Add output here }} +CertifiedClientApplicationsOnly : False +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : bddda1ec-0174-44d5-84e2-47fb0ac01595 +PermissionClassification : all +PermissionType : application +Permissions : {all} +ResourceApplication : any +AdditionalProperties : {[scopeSensitivityLabels, System.Collections.Generic.Dictionary`2[System.String,System.Object]]} ``` -{{ Add description here }} - +This command retrieves a specified permission grant policy include configuration in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md index 093355d11d5..3ed4353404f 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Create a permission grant policy -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +New-MgPolicyPermissionGrantPolicy -Id "testtenant-sampleapp-permissions" -Description "Permissions for sample app in test tenant" -DisplayName "Sample app permissions" | fl -{{ Add output here }} +DeletedDateTime : +Description : Permissions for sample app in test tenant +DisplayName : Sample app permissions +Excludes : +Id : testtenant-sampleapp-permissions +Includes : +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#policies/permissionGrantPolicies/$entity]} ``` -{{ Add description here }} - +This command creates a new permission grant policy in Azure AD. Specific include and exclude configurations can be created using the `New-MgPolicyPermissionGrantPolicyInclude` and `New-MgPolicyPermissionGrantPolicyExclude` cmdlets. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..517327b3404 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Create a permission grant policy exclude -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +New-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000" | fl -{{ Add output here }} +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : 66a94faf-9134-4f46-83d2-1aae2eaea98f +PermissionClassification : all +PermissionType : application +Permissions : {00000000-0000-0000-0000-000000000000} +ResourceApplication : 00000000-0000-0000-0000-000000000000 +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#policies/permissionGrantPolicies('testtenant-sampleapp-permissions')/excludes/$entity]} ``` -{{ Add description here }} - +This command creates a new permission grant policy exclude configuration for the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..51b8f639950 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Create a permission grant policy include -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000" | fl -{{ Add output here }} +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : 084b9abc-cf56-4d84-bdb0-5ad8f3a51038 +PermissionClassification : all +PermissionType : application +Permissions : {00000000-0000-0000-0000-000000000000} +ResourceApplication : 00000000-0000-0000-0000-000000000000 +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#policies/permissionGrantPolicies('testtenant-sampleapp-permissions')/includes/$entity]} ``` -{{ Add description here }} - +This command creates a new permission grant policy include configuration for the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md index 093355d11d5..3bd17a832e3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Remove a permission grant policy -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId "testtenant-sampleapp-permissions" ``` -{{ Add description here }} - +This command deletes the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..20bef32f0af 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Remove a permission grant policy exclude -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantConditionSetId "60ba4fac-d39e-47b3-bd99-4394cb88a2f8" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" ``` -{{ Add description here }} - +This command deletes the specified exclude configuration from the specific permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..b4ac9a24cfd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Remove a permission grant policy include -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantConditionSetId "084b9abc-cf56-4d84-bdb0-5ad8f3a51038" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" ``` -{{ Add description here }} - +This command deletes the specified include configuration from the specific permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md index 093355d11d5..1299f29dba9 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Update a permission grant policy -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Update-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -Description "Permissions for sample app in test tenant with new updates" -DisplayName "Sample app permissions with new updates" ``` -{{ Add description here }} - +This command replaces the existing values with the provided new values for the specified properties in the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..922da9adbad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Update a permission grant policy exclude -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Update-MgPolicyPermissionGrantPolicyExclude -PermissionGrantConditionSetId "33895130-8450-4a4b-a353-e2bc28d54f97" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000001" ``` -{{ Add description here }} - +This command replaces the existing values with the provided new values for the specified exclude configuration properties in the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..17b2b4f86e6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0-beta/Update-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Update a permission grant policy include -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Update-MgPolicyPermissionGrantPolicyInclude -PermissionGrantConditionSetId "084b9abc-cf56-4d84-bdb0-5ad8f3a51038" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000001" ``` -{{ Add description here }} - +This command replaces the existing values with the provided new values for the specified include configuration properties in the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md index 093355d11d5..47d4f358d03 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,46 @@ -### Example 1: {{ Add title here }} +### Example 1: List all permission grant policies + ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicy | fl + +DeletedDateTime : +Description : Includes all application permissions (app roles), for all APIs, for any client application. +DisplayName : All application permissions, for any client app +Excludes : {} +Id : microsoft-all-application-permissions +Includes : {bddda1ec-0174-44d5-84e2-47fb0ac01595} +AdditionalProperties : {[includeAllPreApprovedApplications, False], [resourceScopeType, tenant], [includes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions')/includes], [excludes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions')/excludes]} -{{ Add output here }} +DeletedDateTime : +Description : Includes all chat resoruce-specific application permissions, for all APIs, for any client application. +DisplayName : All chat resource-specific application permissions, for any client app +Excludes : {} +Id : microsoft-all-application-permissions-for-chat +Includes : {013e8de3-5e79-4b0f-a440-8f7794086460} +AdditionalProperties : {[includeAllPreApprovedApplications, False], [resourceScopeType, chat], [includes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions-for-chat')/includes], [excludes@odata.context, + https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions-for-chat')/excludes]} ``` -{{ Add description here }} +This command retrieves a list of all permission grant policies in Azure AD. + +### Example 2: Get a permission grant policy by ID -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId "microsoft-all-application-permissions" | fl -{{ Add output here }} +DeletedDateTime : +Description : Includes all application permissions (app roles), for all APIs, for any client application. +DisplayName : All application permissions, for any client app +Excludes : {} +Id : microsoft-all-application-permissions +Includes : {bddda1ec-0174-44d5-84e2-47fb0ac01595} +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies/$entity], [includeAllPreApprovedApplications, False], [resourceScopeType, tenant], + [includes@odata.context, https://graph.microsoft.com/beta/$metadata#policies/permissionGrantPolicies('microsoft-all-application-permissions')/includes]…} ``` -{{ Add description here }} - +This command retrieves a specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..32571820719 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,32 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Get a permission grant policy exclude by ID -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId "microsoft-application-admin" | fl -{{ Add output here }} -``` +CertifiedClientApplicationsOnly : False +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : c85b029f-4abf-47d8-ae61-d2a38299033a +PermissionClassification : all +PermissionType : application +Permissions : {all} +ResourceApplication : 00000003-0000-0000-c000-000000000000 +AdditionalProperties : {[scopeSensitivityLabels, System.Collections.Generic.Dictionary`2[System.String,System.Object]]} -{{ Add description here }} +CertifiedClientApplicationsOnly : False +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : 2a1fbb36-9d9a-42d8-8804-de2aa45aca80 +PermissionClassification : all +PermissionType : application +Permissions : {all} +ResourceApplication : 00000002-0000-0000-c000-000000000000 +AdditionalProperties : {[scopeSensitivityLabels, System.Collections.Generic.Dictionary`2[System.String,System.Object]]} +``` +This command retrieves a specified permission grant policy exclude configuration in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..67d4881f36d 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Get-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,20 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Get a permission grant policy include by ID -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant" +Get-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId "microsoft-all-application-permissions" | fl -{{ Add output here }} +CertifiedClientApplicationsOnly : False +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : bddda1ec-0174-44d5-84e2-47fb0ac01595 +PermissionClassification : all +PermissionType : application +Permissions : {all} +ResourceApplication : any +AdditionalProperties : {[scopeSensitivityLabels, System.Collections.Generic.Dictionary`2[System.String,System.Object]]} ``` -{{ Add description here }} - +This command retrieves a specified permission grant policy include configuration in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md index 093355d11d5..98fe1794732 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,16 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Create a permission grant policy -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +New-MgPolicyPermissionGrantPolicy -Id "testtenant-sampleapp-permissions" -Description "Permissions for sample app in test tenant" -DisplayName "Sample app permissions" | fl -{{ Add output here }} +DeletedDateTime : +Description : Permissions for sample app in test tenant +DisplayName : Sample app permissions +Excludes : +Id : testtenant-sampleapp-permissions +Includes : +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#policies/permissionGrantPolicies/$entity]} ``` -{{ Add description here }} - +This command creates a new permission grant policy in Azure AD. Specific include and exclude configurations can be created using the `New-MgPolicyPermissionGrantPolicyInclude` and `New-MgPolicyPermissionGrantPolicyExclude` cmdlets. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..517327b3404 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Create a permission grant policy exclude -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +New-MgPolicyPermissionGrantPolicyExclude -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000" | fl -{{ Add output here }} +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : 66a94faf-9134-4f46-83d2-1aae2eaea98f +PermissionClassification : all +PermissionType : application +Permissions : {00000000-0000-0000-0000-000000000000} +ResourceApplication : 00000000-0000-0000-0000-000000000000 +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#policies/permissionGrantPolicies('testtenant-sampleapp-permissions')/excludes/$entity]} ``` -{{ Add description here }} - +This command creates a new permission grant policy exclude configuration for the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..51b8f639950 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/New-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,19 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Create a permission grant policy include -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +New-MgPolicyPermissionGrantPolicyInclude -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000" | fl -{{ Add output here }} +ClientApplicationIds : {all} +ClientApplicationPublisherIds : {all} +ClientApplicationTenantIds : {all} +ClientApplicationsFromVerifiedPublisherOnly : False +Id : 084b9abc-cf56-4d84-bdb0-5ad8f3a51038 +PermissionClassification : all +PermissionType : application +Permissions : {00000000-0000-0000-0000-000000000000} +ResourceApplication : 00000000-0000-0000-0000-000000000000 +AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#policies/permissionGrantPolicies('testtenant-sampleapp-permissions')/includes/$entity]} ``` -{{ Add description here }} - +This command creates a new permission grant policy include configuration for the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md index 093355d11d5..3bd17a832e3 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Remove a permission grant policy -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Remove-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId "testtenant-sampleapp-permissions" ``` -{{ Add description here }} - +This command deletes the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..20bef32f0af 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Remove a permission grant policy exclude -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Remove-MgPolicyPermissionGrantPolicyExclude -PermissionGrantConditionSetId "60ba4fac-d39e-47b3-bd99-4394cb88a2f8" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" ``` -{{ Add description here }} - +This command deletes the specified exclude configuration from the specific permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..b4ac9a24cfd 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Remove-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Remove a permission grant policy include -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Remove-MgPolicyPermissionGrantPolicyInclude -PermissionGrantConditionSetId "084b9abc-cf56-4d84-bdb0-5ad8f3a51038" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" ``` -{{ Add description here }} - +This command deletes the specified include configuration from the specific permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md index 093355d11d5..efe44056a86 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicy.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Update a permission grant policy -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Update-MgPolicyPermissionGrantPolicy -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -Description "Permissions for sample app in test tenant with new updates" -DisplayName "Sample app permissions with new updates" ``` -{{ Add description here }} - +This command replaces the existing values with the provided new values for the specified properties in the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyExclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyExclude.md index 093355d11d5..922da9adbad 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyExclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyExclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Update a permission grant policy exclude -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Update-MgPolicyPermissionGrantPolicyExclude -PermissionGrantConditionSetId "33895130-8450-4a4b-a353-e2bc28d54f97" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000001" ``` -{{ Add description here }} - +This command replaces the existing values with the provided new values for the specified exclude configuration properties in the specified permission grant policy in Azure AD. diff --git a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyInclude.md b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyInclude.md index 093355d11d5..17b2b4f86e6 100644 --- a/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyInclude.md +++ b/src/Identity.SignIns/Identity.SignIns/examples/v1.0/Update-MgPolicyPermissionGrantPolicyInclude.md @@ -1,18 +1,8 @@ -### Example 1: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} -``` +### Example 1: Update a permission grant policy include -{{ Add description here }} - -### Example 2: {{ Add title here }} ```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} +Connect-MgGraph -Scopes "Policy.Read.PermissionGrant,Policy.ReadWrite.PermissionGrant" +Update-MgPolicyPermissionGrantPolicyInclude -PermissionGrantConditionSetId "084b9abc-cf56-4d84-bdb0-5ad8f3a51038" -PermissionGrantPolicyId "testtenant-sampleapp-permissions" -PermissionType "application" -ResourceApplication "00000000-0000-0000-0000-000000000000" -Permissions "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000001" ``` -{{ Add description here }} - +This command replaces the existing values with the provided new values for the specified include configuration properties in the specified permission grant policy in Azure AD. From 0e360f3e589a8bfc30d730fe2b2c274b2cbacd36 Mon Sep 17 00:00:00 2001 From: Peter Ombwa Date: Fri, 16 Sep 2022 12:13:32 -0700 Subject: [PATCH 22/30] Squashed commit of the following: commit 4b22a113417ef97e28b508313e2e2fc22bb8647e Author: Peter Ombwa Date: Thu Sep 15 13:21:38 2022 -0700 Clean teamDefinition paths. commit 99333ace5c1ceafa138f70f2013688dcea7f45ab Author: Peter Ombwa Date: Wed Sep 14 17:25:32 2022 -0700 Remove invalid paths. commit b1f373933f6ef4873f61105925fa74447583609c Author: Peter Ombwa Date: Wed Sep 14 13:51:14 2022 -0700 Exclude long paths. commit 19f296e37d274b74bab5f48e5496856a2bfcc6cb Author: Peter Ombwa Date: Tue Sep 13 15:47:10 2022 -0700 Exclude unsupported paths. commit feb76ffe1c2d51a9593d180b87808e270c5bd888 Author: Peter Ombwa Date: Tue Sep 13 10:47:40 2022 -0700 Inline managedTenants entities. commit 7c71615976c4dd721c8ce483c1f95c9d3e47a9d1 Author: Peter Ombwa Date: Tue Sep 13 10:01:49 2022 -0700 Refresh docs. commit fca2ea336d10029c08617584aeaf41973c0e2866 Author: Peter Ombwa Date: Mon Sep 12 15:30:44 2022 -0700 Bump version number. commit 15d7875034d79a41ce8b40ef904d0e5246141415 Author: Peter Ombwa Date: Mon Sep 12 14:43:48 2022 -0700 Update managed tenants mapping. commit dfc4495027d1e78a502638d1689aff1817651275 Author: Peter Ombwa Date: Mon Sep 12 14:31:12 2022 -0700 Refresh OpenAPI docs. --- config/ModulesMapping.jsonc | 2 +- openApiDocs/beta/Applications.yml | 1007 +- openApiDocs/beta/Bookings.yml | 110 + openApiDocs/beta/Calendar.yml | 7568 +- openApiDocs/beta/ChangeNotifications.yml | 12 + openApiDocs/beta/CloudCommunications.yml | 359 +- openApiDocs/beta/Compliance.yml | 533 +- openApiDocs/beta/CrossDeviceExperiences.yml | 173 +- openApiDocs/beta/DeviceManagement.Actions.yml | 509 +- .../beta/DeviceManagement.Administration.yml | 580 + .../beta/DeviceManagement.Enrolment.yml | 780 +- .../beta/DeviceManagement.Functions.yml | 250 + openApiDocs/beta/DeviceManagement.yml | 2193 +- openApiDocs/beta/Devices.CloudPrint.yml | 851 +- .../beta/Devices.CorporateManagement.yml | 1117 +- .../beta/Devices.ServiceAnnouncement.yml | 95 + openApiDocs/beta/DirectoryObjects.yml | 62 +- openApiDocs/beta/Education.yml | 924 +- openApiDocs/beta/Files.yml | 3196 +- openApiDocs/beta/Financials.yml | 1464 + openApiDocs/beta/Groups.yml | 2433 +- .../beta/Identity.DirectoryManagement.yml | 993 +- openApiDocs/beta/Identity.Governance.yml | 75907 +++++++++++----- openApiDocs/beta/Identity.SignIns.yml | 3459 +- openApiDocs/beta/Mail.yml | 580 +- openApiDocs/beta/ManagedTenants.yml | 9758 ++ openApiDocs/beta/Notes.yml | 1163 +- openApiDocs/beta/People.yml | 252 +- openApiDocs/beta/PersonalContacts.yml | 401 +- openApiDocs/beta/Planner.yml | 656 +- openApiDocs/beta/Reports.yml | 1060 +- openApiDocs/beta/SchemaExtensions.yml | 19 + openApiDocs/beta/Search.yml | 155 + openApiDocs/beta/Security.yml | 1162 +- openApiDocs/beta/Sites.yml | 4173 +- openApiDocs/beta/Teams.yml | 19527 +++- openApiDocs/beta/Users.Actions.yml | 2536 +- openApiDocs/beta/Users.Functions.yml | 641 +- openApiDocs/beta/Users.yml | 1093 +- openApiDocs/beta/WindowsUpdates.yml | 100 + openApiDocs/v1.0/Applications.yml | 416 +- openApiDocs/v1.0/Bookings.yml | 117 +- openApiDocs/v1.0/Calendar.yml | 2798 +- openApiDocs/v1.0/ChangeNotifications.yml | 24 +- openApiDocs/v1.0/CloudCommunications.yml | 288 +- openApiDocs/v1.0/CrossDeviceExperiences.yml | 41 + openApiDocs/v1.0/DeviceManagement.Actions.yml | 50 + .../v1.0/DeviceManagement.Administration.yml | 117 + .../v1.0/DeviceManagement.Enrolment.yml | 300 +- .../v1.0/DeviceManagement.Functions.yml | 6 + openApiDocs/v1.0/DeviceManagement.yml | 346 +- openApiDocs/v1.0/Devices.CloudPrint.yml | 575 +- .../v1.0/Devices.CorporateManagement.yml | 401 +- .../v1.0/Devices.ServiceAnnouncement.yml | 67 +- openApiDocs/v1.0/DirectoryObjects.yml | 22 + openApiDocs/v1.0/Education.yml | 1131 +- openApiDocs/v1.0/Files.yml | 2797 +- openApiDocs/v1.0/Groups.yml | 1854 +- .../v1.0/Identity.DirectoryManagement.yml | 429 +- openApiDocs/v1.0/Identity.Governance.yml | 615 +- openApiDocs/v1.0/Identity.SignIns.yml | 1169 +- openApiDocs/v1.0/Mail.yml | 496 +- openApiDocs/v1.0/Notes.yml | 1160 + openApiDocs/v1.0/People.yml | 77 +- openApiDocs/v1.0/PersonalContacts.yml | 405 +- openApiDocs/v1.0/Planner.yml | 615 +- openApiDocs/v1.0/Reports.yml | 532 +- openApiDocs/v1.0/SchemaExtensions.yml | 22 +- openApiDocs/v1.0/Search.yml | 95 +- openApiDocs/v1.0/Security.yml | 693 +- openApiDocs/v1.0/Sites.yml | 6996 +- openApiDocs/v1.0/Teams.yml | 3038 +- openApiDocs/v1.0/Users.Actions.yml | 1325 +- openApiDocs/v1.0/Users.Functions.yml | 615 +- openApiDocs/v1.0/Users.yml | 735 +- openApiDocs/v1.0/WindowsUpdates.yml | 3 + .../CloudCommunications/crawl-log-v1.0.json | 8 + .../CloudCommunications/definitions/v1.0.md | 2 + .../crawl-log-v1.0-beta.json | 24 + .../definitions/v1.0-beta.md | 6 + .../crawl-log-v1.0-beta.json | 12 + .../definitions/v1.0-beta.md | 3 + .../crawl-log-v1.0-beta.json | 12 - .../definitions/v1.0-beta.md | 3 - profiles/Files/crawl-log-v1.0-beta.json | 8 + profiles/Files/definitions/v1.0-beta.md | 2 + profiles/Groups/crawl-log-v1.0-beta.json | 8 + profiles/Groups/definitions/v1.0-beta.md | 2 + .../crawl-log-v1.0-beta.json | 432 + .../definitions/v1.0-beta.md | 159 + .../Identity.SignIns/crawl-log-v1.0-beta.json | 68 + .../Identity.SignIns/definitions/v1.0-beta.md | 21 + .../ManagedTenants/crawl-log-v1.0-beta.json | 269 + .../ManagedTenants/definitions/v1.0-beta.md | 83 + profiles/ManagedTenants/readme.md | 23 + profiles/Reports/crawl-log-v1.0-beta.json | 20 - profiles/Reports/crawl-log-v1.0.json | 8 - profiles/Reports/definitions/v1.0-beta.md | 5 - profiles/Reports/definitions/v1.0.md | 2 - profiles/Teams/crawl-log-v1.0-beta.json | 540 + profiles/Teams/crawl-log-v1.0.json | 24 + profiles/Teams/definitions/v1.0-beta.md | 221 + profiles/Teams/definitions/v1.0.md | 6 + .../Users.Actions/crawl-log-v1.0-beta.json | 20 + profiles/Users.Actions/crawl-log-v1.0.json | 8 + .../Users.Actions/definitions/v1.0-beta.md | 5 + profiles/Users.Actions/definitions/v1.0.md | 2 + .../Users.Functions/crawl-log-v1.0-beta.json | 4 + .../Users.Functions/definitions/v1.0-beta.md | 1 + .../Identity.Governance/readme.md | 2 +- src/ManagedTenants/ManagedTenants/readme.md | 49 + src/Teams/Teams/readme.md | 2 +- src/readme.graph.md | 1 + 113 files changed, 148171 insertions(+), 32117 deletions(-) create mode 100644 openApiDocs/beta/ManagedTenants.yml create mode 100644 profiles/ManagedTenants/crawl-log-v1.0-beta.json create mode 100644 profiles/ManagedTenants/definitions/v1.0-beta.md create mode 100644 profiles/ManagedTenants/readme.md create mode 100644 src/ManagedTenants/ManagedTenants/readme.md diff --git a/config/ModulesMapping.jsonc b/config/ModulesMapping.jsonc index 1aa72c1b1a0..8bc2b22e362 100644 --- a/config/ModulesMapping.jsonc +++ b/config/ModulesMapping.jsonc @@ -23,7 +23,7 @@ "Identity.Governance": "^accessReviews\\.|^businessFlowTemplates\\.|^programs\\.|^programControls\\.|^programControlTypes\\.|^privilegedRoles\\.|^privilegedRoleAssignments\\.|^privilegedRoleAssignmentRequests\\.|^privilegedApproval\\.|^privilegedOperationEvents\\.|^privilegedAccess\\.|^agreements\\.|^users.agreementAcceptance$|^identityGovernance\\.", "Identity.SignIns": "^organization.certificateBasedAuthConfiguration$|^invitations\\.|^identityProviders\\.|^oauth2PermissionGrants\\.|^identityProtection\\.|^dataPolicyOperations\\.|^identity\\.|^trustFramework\\.|^informationProtection\\.|^policies\\.|^users.authentication$|^users.informationProtection$", "Mail": "^users.inferenceClassification$|^users.mailFolder$|^users.message$", - "ManagedTenants": "^tenantRelationships.managedTenants$", + "ManagedTenants": "^tenantRelationships.managedTenant$", "Notes": "^users.onenote$|^groups.onenote$|^sites.onenote$", "People": "^users.person$|^users.profile$|^users.officeGraphInsights$|^users.userAnalytics$", "PersonalContacts": "^users.contactFolder$|^users.contact$", diff --git a/openApiDocs/beta/Applications.yml b/openApiDocs/beta/Applications.yml index 3de7c265c27..2326b384af9 100644 --- a/openApiDocs/beta/Applications.yml +++ b/openApiDocs/beta/Applications.yml @@ -11,11 +11,13 @@ paths: tags: - applications.application summary: List applications + description: Get the list of applications in this organization. operationId: applications.application_ListApplication parameters: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -23,10 +25,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -170,28 +169,6 @@ paths: - connectorGroup - synchronization type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - appManagementPolicies - - createdOnBehalfOf - - extensionProperties - - federatedIdentityCredentials - - homeRealmDiscoveryPolicies - - owners - - tokenIssuancePolicies - - tokenLifetimePolicies - - connectorGroup - - synchronization - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.applicationCollectionResponse' @@ -205,6 +182,7 @@ paths: tags: - applications.application summary: Create application + description: Create a new application object. operationId: applications.application_CreateApplication requestBody: description: New entity @@ -228,12 +206,14 @@ paths: tags: - applications.application summary: Get application + description: Get the properties and relationships of an application object. operationId: applications.application_GetApplication parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -295,28 +275,6 @@ paths: - connectorGroup - synchronization type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - appManagementPolicies - - createdOnBehalfOf - - extensionProperties - - federatedIdentityCredentials - - homeRealmDiscoveryPolicies - - owners - - tokenIssuancePolicies - - tokenLifetimePolicies - - connectorGroup - - synchronization - type: string responses: '200': description: Retrieved entity @@ -394,12 +352,14 @@ paths: tags: - applications.application summary: Update application + description: Update the properties of an application object. operationId: applications.application_UpdateApplication parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -420,18 +380,21 @@ paths: tags: - applications.application summary: Delete application + description: 'Deletes an application. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.' operationId: applications.application_DeleteApplication parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -445,12 +408,14 @@ paths: tags: - applications.appManagementPolicy summary: Get appManagementPolicies from applications + description: The appManagementPolicy applied to this application. operationId: applications_ListAppManagementPolicies parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -533,6 +498,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -540,17 +506,21 @@ paths: in: path description: 'key: id of appManagementPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: appManagementPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -564,12 +534,14 @@ paths: tags: - applications.appManagementPolicy summary: Get ref of appManagementPolicies from applications + description: The appManagementPolicy applied to this application. operationId: applications_ListAppManagementPoliciesGraphBPreRef parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -620,18 +592,12 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -643,12 +609,14 @@ paths: tags: - applications.connectorGroup summary: Get connectorGroup from applications + description: The connectorGroup the application is using with Azure AD Application Proxy. Nullable. operationId: applications_GetConnectorGroup parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -708,12 +676,14 @@ paths: tags: - applications.connectorGroup summary: Get ref of connectorGroup from applications + description: The connectorGroup the application is using with Azure AD Application Proxy. Nullable. operationId: applications_GetConnectorGroupGraphBPreRef parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -746,18 +716,12 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPutBody' responses: '204': description: Success @@ -774,12 +738,14 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -793,12 +759,14 @@ paths: tags: - applications.directoryObject summary: Get createdOnBehalfOf from applications + description: Supports $filter (eq when counting empty collections). Read-only. operationId: applications_GetCreatedOnBehalfGraphOPre parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -842,12 +810,14 @@ paths: tags: - applications.extensionProperty summary: Get extensionProperties from applications + description: Read-only. Nullable. Supports $expand and $filter (eq and ne when counting empty collections and only with advanced query parameters). operationId: applications_ListExtensionProperties parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -930,6 +900,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -955,12 +926,14 @@ paths: tags: - applications.extensionProperty summary: Get extensionProperties from applications + description: Read-only. Nullable. Supports $expand and $filter (eq and ne when counting empty collections and only with advanced query parameters). operationId: applications_GetExtensionProperties parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -968,6 +941,7 @@ paths: in: path description: 'key: id of extensionProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: extensionProperty @@ -1021,6 +995,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1028,6 +1003,7 @@ paths: in: path description: 'key: id of extensionProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: extensionProperty @@ -1054,6 +1030,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1061,12 +1038,14 @@ paths: in: path description: 'key: id of extensionProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: extensionProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1080,12 +1059,14 @@ paths: tags: - applications.federatedIdentityCredential summary: Get federatedIdentityCredentials from applications + description: 'Federated identities for applications. Supports $expand and $filter (startsWith, and eq, ne when counting empty collections and only with advanced query parameters).' operationId: applications_ListFederatedIdentityCredentials parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1165,6 +1146,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1190,12 +1172,14 @@ paths: tags: - applications.federatedIdentityCredential summary: Get federatedIdentityCredentials from applications + description: 'Federated identities for applications. Supports $expand and $filter (startsWith, and eq, ne when counting empty collections and only with advanced query parameters).' operationId: applications_GetFederatedIdentityCredentials parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1203,6 +1187,7 @@ paths: in: path description: 'key: id of federatedIdentityCredential' required: true + style: simple schema: type: string x-ms-docs-key-type: federatedIdentityCredential @@ -1255,6 +1240,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1262,6 +1248,7 @@ paths: in: path description: 'key: id of federatedIdentityCredential' required: true + style: simple schema: type: string x-ms-docs-key-type: federatedIdentityCredential @@ -1288,6 +1275,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1295,12 +1283,14 @@ paths: in: path description: 'key: id of federatedIdentityCredential' required: true + style: simple schema: type: string x-ms-docs-key-type: federatedIdentityCredential - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1320,6 +1310,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1402,6 +1393,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1409,6 +1401,7 @@ paths: in: path description: 'key: id of homeRealmDiscoveryPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: homeRealmDiscoveryPolicy @@ -1464,12 +1457,14 @@ paths: tags: - applications.application summary: Get logo for application from applications + description: The main logo for the application. Not nullable. operationId: applications.application_GetLogo parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1488,12 +1483,14 @@ paths: tags: - applications.application summary: Update logo for application in applications + description: The main logo for the application. Not nullable. operationId: applications.application_SetLogo parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1522,6 +1519,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1562,6 +1560,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1598,6 +1597,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1644,6 +1644,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1690,6 +1691,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1736,6 +1738,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1782,6 +1785,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1818,6 +1822,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1852,6 +1857,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1876,6 +1882,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1908,6 +1915,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1922,12 +1930,14 @@ paths: tags: - applications.directoryObject summary: Get owners from applications + description: Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (eq and ne when counting empty collections). operationId: applications_ListOwners parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -1996,6 +2006,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2003,17 +2014,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -2027,12 +2042,14 @@ paths: tags: - applications.directoryObject summary: Get ref of owners from applications + description: Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (eq and ne when counting empty collections). operationId: applications_ListOwnersGraphBPreRef parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2075,18 +2092,12 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -2104,6 +2115,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2169,6 +2181,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2195,12 +2208,14 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2214,12 +2229,14 @@ paths: tags: - applications.synchronization summary: Get jobs from applications + description: 'Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.' operationId: applications.synchronization_ListJobs parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2298,6 +2315,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2323,12 +2341,14 @@ paths: tags: - applications.synchronization summary: Get jobs from applications + description: 'Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.' operationId: applications.synchronization_GetJobs parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2336,6 +2356,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2407,6 +2428,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2414,6 +2436,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2440,6 +2463,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2447,12 +2471,14 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2472,6 +2498,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2479,6 +2506,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2499,6 +2527,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2506,6 +2535,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2544,6 +2574,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2551,6 +2582,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2583,6 +2615,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2590,6 +2623,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2610,6 +2644,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2617,6 +2652,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2637,6 +2673,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2644,6 +2681,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2682,12 +2720,14 @@ paths: tags: - applications.synchronization summary: Get schema from applications + description: The synchronization schema configured for the job. operationId: applications.synchronization.jobs_GetSchema parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2695,6 +2735,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2758,6 +2799,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2765,6 +2807,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2791,6 +2834,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2798,12 +2842,14 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2817,12 +2863,14 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_ListDirectories parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2830,6 +2878,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2912,6 +2961,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2919,6 +2969,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2944,12 +2995,14 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema_GetDirectories parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -2957,6 +3010,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -2964,6 +3018,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -3020,6 +3075,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3027,6 +3083,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -3034,6 +3091,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -3060,6 +3118,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3067,6 +3126,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -3074,12 +3134,14 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3099,6 +3161,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3106,6 +3169,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -3113,6 +3177,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -3137,6 +3202,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3144,6 +3210,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -3176,6 +3243,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3183,6 +3251,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -3215,6 +3284,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3222,6 +3292,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -3263,6 +3334,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3307,6 +3379,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3341,6 +3414,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3365,12 +3439,14 @@ paths: tags: - applications.synchronization summary: Get templates from applications + description: Pre-configured synchronization settings for a particular application. operationId: applications.synchronization_ListTemplates parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3455,6 +3531,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3480,12 +3557,14 @@ paths: tags: - applications.synchronization summary: Get templates from applications + description: Pre-configured synchronization settings for a particular application. operationId: applications.synchronization_GetTemplates parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3493,6 +3572,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3554,6 +3634,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3561,6 +3642,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3587,6 +3669,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3594,12 +3677,14 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3613,12 +3698,14 @@ paths: tags: - applications.synchronization summary: Get schema from applications + description: Default synchronization schema for the jobs based on this template. operationId: applications.synchronization.templates_GetSchema parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3626,6 +3713,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3689,6 +3777,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3696,6 +3785,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3722,6 +3812,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3729,12 +3820,14 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3748,12 +3841,14 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_ListDirectories parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3761,6 +3856,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3843,6 +3939,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3850,6 +3947,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3875,12 +3973,14 @@ paths: tags: - applications.synchronization summary: Get directories from applications + description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema_GetDirectories parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3888,6 +3988,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3895,6 +3996,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -3951,6 +4053,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3958,6 +4061,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -3965,6 +4069,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -3991,6 +4096,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -3998,6 +4104,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -4005,12 +4112,14 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4030,6 +4139,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4037,6 +4147,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -4044,6 +4155,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -4068,6 +4180,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4075,6 +4188,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -4107,6 +4221,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4114,6 +4229,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -4146,6 +4262,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4153,6 +4270,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -4194,6 +4312,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4276,6 +4395,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4283,17 +4403,21 @@ paths: in: path description: 'key: id of tokenIssuancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: tokenIssuancePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -4313,6 +4437,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4363,18 +4488,12 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -4386,12 +4505,14 @@ paths: tags: - applications.tokenLifetimePolicy summary: Get tokenLifetimePolicies from applications + description: The tokenLifetimePolicies assigned to this application. Supports $expand. operationId: applications_ListTokenLifetimePolicies parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4474,6 +4595,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4481,17 +4603,21 @@ paths: in: path description: 'key: id of tokenLifetimePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: tokenLifetimePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -4505,12 +4631,14 @@ paths: tags: - applications.tokenLifetimePolicy summary: Get ref of tokenLifetimePolicies from applications + description: The tokenLifetimePolicies assigned to this application. Supports $expand. operationId: applications_ListTokenLifetimePoliciesGraphBPreRef parameters: - name: application-id in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -4561,18 +4689,12 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -4719,6 +4841,7 @@ paths: tags: - applicationTemplates.applicationTemplate summary: List applicationTemplates + description: Retrieve a list of applicationTemplate objects from the Azure AD application gallery. operationId: applicationTemplates.applicationTemplate_ListApplicationTemplate parameters: - $ref: '#/components/parameters/top' @@ -4829,12 +4952,14 @@ paths: tags: - applicationTemplates.applicationTemplate summary: Get applicationTemplate + description: Retrieve the properties of an applicationTemplate object. operationId: applicationTemplates.applicationTemplate_GetApplicationTemplate parameters: - name: applicationTemplate-id in: path description: 'key: id of applicationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationTemplate @@ -4895,6 +5020,7 @@ paths: in: path description: 'key: id of applicationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationTemplate @@ -4921,12 +5047,14 @@ paths: in: path description: 'key: id of applicationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4946,6 +5074,7 @@ paths: in: path description: 'key: id of applicationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationTemplate @@ -4977,12 +5106,14 @@ paths: tags: - groups.appRoleAssignment summary: Get appRoleAssignments from groups + description: Represents the app roles a group has been granted for an application. Supports $expand. operationId: groups_ListAppRoleAssignments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5068,6 +5199,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5093,12 +5225,14 @@ paths: tags: - groups.appRoleAssignment summary: Get appRoleAssignments from groups + description: Represents the app roles a group has been granted for an application. Supports $expand. operationId: groups_GetAppRoleAssignments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5106,6 +5240,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -5160,6 +5295,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5167,6 +5303,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -5193,6 +5330,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5200,12 +5338,14 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5321,6 +5461,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5401,6 +5542,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5427,12 +5569,14 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5446,12 +5590,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5529,6 +5675,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5554,12 +5701,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of existing onPremisesAgentGroup objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetAgentGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5567,6 +5716,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5632,6 +5782,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5639,6 +5790,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5665,6 +5817,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5672,12 +5825,14 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5691,12 +5846,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_ListAgents parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5704,6 +5861,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5782,6 +5940,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5789,6 +5948,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5814,12 +5974,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agents from onPremisesPublishingProfiles + description: List of onPremisesAgent that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_GetAgents parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5827,6 +5989,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5834,6 +5997,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -5894,6 +6058,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5901,6 +6066,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5908,6 +6074,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -5934,6 +6101,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5941,6 +6109,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5948,12 +6117,14 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5967,12 +6138,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -5980,6 +6153,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -5987,6 +6161,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -6065,6 +6240,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6072,6 +6248,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6079,6 +6256,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -6086,17 +6264,21 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -6110,12 +6292,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get ref of agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.agents_ListAgentGroupsGraphBPreRef parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6123,6 +6307,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6130,6 +6315,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -6176,6 +6362,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6183,6 +6370,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6190,18 +6378,12 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -6213,12 +6395,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_ListPublishedResources parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6226,6 +6410,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6301,6 +6486,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6308,6 +6494,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6333,12 +6520,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get publishedResources from onPremisesPublishingProfiles + description: List of publishedResource that are assigned to an onPremisesAgentGroup. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups_GetPublishedResources parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6346,6 +6535,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6353,6 +6543,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -6412,6 +6603,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6419,6 +6611,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6426,6 +6619,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -6452,6 +6646,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6459,6 +6654,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6466,12 +6662,14 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6485,12 +6683,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6498,6 +6698,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6505,6 +6706,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -6582,6 +6784,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6589,6 +6792,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6596,6 +6800,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -6627,6 +6832,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6634,6 +6840,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6641,6 +6848,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -6648,17 +6856,21 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -6672,12 +6884,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgentGroup summary: Get ref of agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agentGroups.publishedResources_ListAgentGroupsGraphBPreRef parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6685,6 +6899,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6692,6 +6907,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -6738,6 +6954,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6745,6 +6962,7 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup @@ -6752,18 +6970,12 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -6775,12 +6987,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agents from onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListAgents parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6859,6 +7073,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6884,12 +7099,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agents from onPremisesPublishingProfiles + description: List of existing onPremisesAgent objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetAgents parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6897,6 +7114,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -6956,6 +7174,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6963,6 +7182,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -6989,6 +7209,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -6996,12 +7217,14 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7015,12 +7238,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7028,6 +7253,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -7106,6 +7332,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7113,6 +7340,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -7120,17 +7348,21 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -7144,12 +7376,14 @@ paths: tags: - onPremisesPublishingProfiles.onPremisesAgent summary: Get ref of agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that an onPremisesAgent is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.agents_ListAgentGroupsGraphBPreRef parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7157,6 +7391,7 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent @@ -7203,6 +7438,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7210,18 +7446,12 @@ paths: in: path description: 'key: id of onPremisesAgent' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgent requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -7233,12 +7463,14 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get connectorGroups from onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListConnectorGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7319,6 +7551,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7344,12 +7577,14 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get connectorGroups from onPremisesPublishingProfiles + description: List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetConnectorGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7357,6 +7592,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -7423,6 +7659,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7430,6 +7667,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -7456,6 +7694,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7463,12 +7702,14 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7488,6 +7729,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7495,6 +7737,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -7688,6 +7931,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7695,6 +7939,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -7702,6 +7947,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -7861,12 +8107,14 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Get logo for the navigation property applications from onPremisesPublishingProfiles + description: The main logo for the application. Not nullable. operationId: onPremisesPublishingProfiles.connectorGroups_GetApplicationsLogo parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7874,6 +8122,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -7881,6 +8130,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -7899,12 +8149,14 @@ paths: tags: - onPremisesPublishingProfiles.connectorGroup summary: Update logo for the navigation property applications in onPremisesPublishingProfiles + description: The main logo for the application. Not nullable. operationId: onPremisesPublishingProfiles.connectorGroups_SetApplicationsLogo parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7912,6 +8164,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -7919,6 +8172,7 @@ paths: in: path description: 'key: id of application' required: true + style: simple schema: type: string x-ms-docs-key-type: application @@ -7947,6 +8201,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -7954,6 +8209,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -8030,6 +8286,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8037,6 +8294,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -8044,17 +8302,21 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -8074,6 +8336,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8081,6 +8344,7 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup @@ -8127,6 +8391,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8134,18 +8399,12 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -8157,12 +8416,14 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get connectors from onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListConnectors parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8238,6 +8499,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8263,12 +8525,14 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get connectors from onPremisesPublishingProfiles + description: List of existing connector objects for applications published through Application Proxy. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetConnectors parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8276,6 +8540,7 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector @@ -8334,6 +8599,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8341,6 +8607,7 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector @@ -8367,6 +8634,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8374,12 +8642,14 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8393,12 +8663,14 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get memberOf from onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_ListMemberGraphOPre parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8406,6 +8678,7 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector @@ -8487,6 +8760,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8494,6 +8768,7 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector @@ -8501,17 +8776,21 @@ paths: in: path description: 'key: id of connectorGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: connectorGroup - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -8525,12 +8804,14 @@ paths: tags: - onPremisesPublishingProfiles.connector summary: Get ref of memberOf from onPremisesPublishingProfiles + description: The connectorGroup that the connector is a member of. Read-only. operationId: onPremisesPublishingProfiles.connectors_ListMemberGraphOPreGraphBPreRef parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8538,6 +8819,7 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector @@ -8586,6 +8868,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8593,18 +8876,12 @@ paths: in: path description: 'key: id of connector' required: true + style: simple schema: type: string x-ms-docs-key-type: connector requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -8616,12 +8893,14 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get publishedResources from onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_ListPublishedResources parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8697,6 +8976,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8722,12 +9002,14 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get publishedResources from onPremisesPublishingProfiles + description: List of existing publishedResource objects. Read-only. Nullable. operationId: onPremisesPublishingProfiles_GetPublishedResources parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8735,6 +9017,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -8793,6 +9076,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8800,6 +9084,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -8826,6 +9111,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8833,12 +9119,14 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8852,12 +9140,14 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_ListAgentGroups parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8865,6 +9155,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -8942,6 +9233,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8949,6 +9241,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -8980,6 +9273,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -8987,6 +9281,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -8994,17 +9289,21 @@ paths: in: path description: 'key: id of onPremisesAgentGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesAgentGroup - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -9018,12 +9317,14 @@ paths: tags: - onPremisesPublishingProfiles.publishedResource summary: Get ref of agentGroups from onPremisesPublishingProfiles + description: List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. operationId: onPremisesPublishingProfiles.publishedResources_ListAgentGroupsGraphBPreRef parameters: - name: onPremisesPublishingProfile-id in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -9031,6 +9332,7 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource @@ -9077,6 +9379,7 @@ paths: in: path description: 'key: id of onPremisesPublishingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: onPremisesPublishingProfile @@ -9084,18 +9387,12 @@ paths: in: path description: 'key: id of publishedResource' required: true + style: simple schema: type: string x-ms-docs-key-type: publishedResource requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -9107,11 +9404,13 @@ paths: tags: - servicePrincipals.servicePrincipal summary: List servicePrincipals + description: Retrieve a list of servicePrincipal objects. operationId: servicePrincipals.servicePrincipal_ListServicePrincipal parameters: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -9119,10 +9418,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -9211,6 +9507,8 @@ paths: - tags desc - tokenEncryptionKeyId - tokenEncryptionKeyId desc + - verifiedPublisher + - verifiedPublisher desc type: string - name: $select in: query @@ -9261,36 +9559,7 @@ paths: - signInAudience - tags - tokenEncryptionKeyId - - appManagementPolicies - - appRoleAssignedTo - - appRoleAssignments - - claimsMappingPolicies - - createdObjects - - delegatedPermissionClassifications - - endpoints - - federatedIdentityCredentials - - homeRealmDiscoveryPolicies - - licenseDetails - - memberOf - - oauth2PermissionGrants - - ownedObjects - - owners - - tokenIssuancePolicies - - tokenLifetimePolicies - - transitiveMemberOf - - synchronization - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' + - verifiedPublisher - appManagementPolicies - appRoleAssignedTo - appRoleAssignments @@ -9323,6 +9592,7 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Create servicePrincipal + description: Create a new servicePrincipal object. operationId: servicePrincipals.servicePrincipal_CreateServicePrincipal requestBody: description: New entity @@ -9346,12 +9616,14 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Get servicePrincipal + description: Retrieve the properties and relationships of a servicePrincipal object. operationId: servicePrincipals.servicePrincipal_GetServicePrincipal parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9404,36 +9676,7 @@ paths: - signInAudience - tags - tokenEncryptionKeyId - - appManagementPolicies - - appRoleAssignedTo - - appRoleAssignments - - claimsMappingPolicies - - createdObjects - - delegatedPermissionClassifications - - endpoints - - federatedIdentityCredentials - - homeRealmDiscoveryPolicies - - licenseDetails - - memberOf - - oauth2PermissionGrants - - ownedObjects - - owners - - tokenIssuancePolicies - - tokenLifetimePolicies - - transitiveMemberOf - - synchronization - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' + - verifiedPublisher - appManagementPolicies - appRoleAssignedTo - appRoleAssignments @@ -9560,12 +9803,14 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Update servicePrincipal + description: Update the properties of servicePrincipal object. operationId: servicePrincipals.servicePrincipal_UpdateServicePrincipal parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9586,18 +9831,21 @@ paths: tags: - servicePrincipals.servicePrincipal summary: Delete servicePrincipal + description: Delete a servicePrincipal object. operationId: servicePrincipals.servicePrincipal_DeleteServicePrincipal parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9611,12 +9859,14 @@ paths: tags: - servicePrincipals.appManagementPolicy summary: Get appManagementPolicies from servicePrincipals + description: The appManagementPolicy applied to this service principal. operationId: servicePrincipals_ListAppManagementPolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9693,12 +9943,14 @@ paths: tags: - servicePrincipals.appManagementPolicy summary: Get appManagementPolicies from servicePrincipals + description: The appManagementPolicy applied to this service principal. operationId: servicePrincipals_GetAppManagementPolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9706,6 +9958,7 @@ paths: in: path description: 'key: id of appManagementPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: appManagementPolicy @@ -9761,12 +10014,14 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignedTo from servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand.' operationId: servicePrincipals_ListAppRoleAssignedTo parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9852,6 +10107,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9877,12 +10133,14 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignedTo from servicePrincipals + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand.' operationId: servicePrincipals_GetAppRoleAssignedTo parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9890,6 +10148,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -9944,6 +10203,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9951,6 +10211,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -9977,6 +10238,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -9984,12 +10246,14 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10003,12 +10267,14 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignments from servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal. Supports $expand.' operationId: servicePrincipals_ListAppRoleAssignments parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10094,6 +10360,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10119,12 +10386,14 @@ paths: tags: - servicePrincipals.appRoleAssignment summary: Get appRoleAssignments from servicePrincipals + description: 'App role assignment for another app or service, granted to this service principal. Supports $expand.' operationId: servicePrincipals_GetAppRoleAssignments parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10132,6 +10401,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -10186,6 +10456,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10193,6 +10464,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -10219,6 +10491,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10226,12 +10499,14 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10245,12 +10520,14 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Get claimsMappingPolicies from servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_ListClaimsMappingPolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10333,6 +10610,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10340,17 +10618,21 @@ paths: in: path description: 'key: id of claimsMappingPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: claimsMappingPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -10364,12 +10646,14 @@ paths: tags: - servicePrincipals.claimsMappingPolicy summary: Get ref of claimsMappingPolicies from servicePrincipals + description: The claimsMappingPolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_ListClaimsMappingPoliciesGraphBPreRef parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10420,18 +10704,12 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -10443,12 +10721,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get createdObjects from servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_ListCreatedObjects parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10511,12 +10791,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get createdObjects from servicePrincipals + description: Directory objects created by this service principal. Read-only. Nullable. operationId: servicePrincipals_GetCreatedObjects parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10524,6 +10806,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -10567,12 +10850,14 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Get delegatedPermissionClassifications from servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. operationId: servicePrincipals_ListDelegatedPermissionClassifications parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10646,6 +10931,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10671,12 +10957,14 @@ paths: tags: - servicePrincipals.delegatedPermissionClassification summary: Get delegatedPermissionClassifications from servicePrincipals + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. operationId: servicePrincipals_GetDelegatedPermissionClassifications parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10684,6 +10972,7 @@ paths: in: path description: 'key: id of delegatedPermissionClassification' required: true + style: simple schema: type: string x-ms-docs-key-type: delegatedPermissionClassification @@ -10734,6 +11023,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10741,6 +11031,7 @@ paths: in: path description: 'key: id of delegatedPermissionClassification' required: true + style: simple schema: type: string x-ms-docs-key-type: delegatedPermissionClassification @@ -10767,6 +11058,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10774,12 +11066,14 @@ paths: in: path description: 'key: id of delegatedPermissionClassification' required: true + style: simple schema: type: string x-ms-docs-key-type: delegatedPermissionClassification - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10793,12 +11087,14 @@ paths: tags: - servicePrincipals.endpoint summary: Get endpoints from servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_ListEndpoints parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10881,6 +11177,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10906,12 +11203,14 @@ paths: tags: - servicePrincipals.endpoint summary: Get endpoints from servicePrincipals + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. operationId: servicePrincipals_GetEndpoints parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10919,6 +11218,7 @@ paths: in: path description: 'key: id of endpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: endpoint @@ -10972,6 +11272,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -10979,6 +11280,7 @@ paths: in: path description: 'key: id of endpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: endpoint @@ -11005,6 +11307,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11012,12 +11315,14 @@ paths: in: path description: 'key: id of endpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: endpoint - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11037,6 +11342,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11116,6 +11422,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11147,6 +11454,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11154,6 +11462,7 @@ paths: in: path description: 'key: id of federatedIdentityCredential' required: true + style: simple schema: type: string x-ms-docs-key-type: federatedIdentityCredential @@ -11206,6 +11515,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11213,6 +11523,7 @@ paths: in: path description: 'key: id of federatedIdentityCredential' required: true + style: simple schema: type: string x-ms-docs-key-type: federatedIdentityCredential @@ -11239,6 +11550,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11246,12 +11558,14 @@ paths: in: path description: 'key: id of federatedIdentityCredential' required: true + style: simple schema: type: string x-ms-docs-key-type: federatedIdentityCredential - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11265,12 +11579,14 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Get homeRealmDiscoveryPolicies from servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_ListHomeRealmDiscoveryPolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11353,6 +11669,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11360,17 +11677,21 @@ paths: in: path description: 'key: id of homeRealmDiscoveryPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: homeRealmDiscoveryPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -11384,12 +11705,14 @@ paths: tags: - servicePrincipals.homeRealmDiscoveryPolicy summary: Get ref of homeRealmDiscoveryPolicies from servicePrincipals + description: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_ListHomeRealmDiscoveryPoliciesGraphBPreRef parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11440,18 +11763,12 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -11469,6 +11786,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11542,6 +11860,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11573,6 +11892,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11580,6 +11900,7 @@ paths: in: path description: 'key: id of licenseDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: licenseDetails @@ -11630,6 +11951,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11637,6 +11959,7 @@ paths: in: path description: 'key: id of licenseDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: licenseDetails @@ -11663,6 +11986,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11670,12 +11994,14 @@ paths: in: path description: 'key: id of licenseDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: licenseDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11689,12 +12015,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get memberOf from servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable. Supports $expand.' operationId: servicePrincipals_ListMemberGraphOPre parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11757,12 +12085,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get memberOf from servicePrincipals + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable. Supports $expand.' operationId: servicePrincipals_GetMemberGraphOPre parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11770,6 +12100,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -11819,6 +12150,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11861,6 +12193,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11907,6 +12240,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11953,6 +12287,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -11993,6 +12328,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12025,6 +12361,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12071,6 +12408,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12117,6 +12455,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12153,6 +12492,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12177,6 +12517,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12207,12 +12548,14 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Get oauth2PermissionGrants from servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_ListOauth2PermissionGrants parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12293,12 +12636,14 @@ paths: tags: - servicePrincipals.oAuth2PermissionGrant summary: Get oauth2PermissionGrants from servicePrincipals + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. operationId: servicePrincipals_GetOauth2PermissionGrants parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12306,6 +12651,7 @@ paths: in: path description: 'key: id of oAuth2PermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: oAuth2PermissionGrant @@ -12355,12 +12701,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ownedObjects from servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. Supports $expand. operationId: servicePrincipals_ListOwnedObjects parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12423,12 +12771,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ownedObjects from servicePrincipals + description: Directory objects that are owned by this service principal. Read-only. Nullable. Supports $expand. operationId: servicePrincipals_GetOwnedObjects parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12436,6 +12786,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -12479,12 +12830,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get owners from servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. Supports $expand. operationId: servicePrincipals_ListOwners parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12553,6 +12906,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12560,17 +12914,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -12584,12 +12942,14 @@ paths: tags: - servicePrincipals.directoryObject summary: Get ref of owners from servicePrincipals + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. Supports $expand. operationId: servicePrincipals_ListOwnersGraphBPreRef parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12632,18 +12992,12 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -12661,6 +13015,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12726,6 +13081,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12752,12 +13108,14 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12771,12 +13129,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get jobs from servicePrincipals + description: 'Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.' operationId: servicePrincipals.synchronization_ListJobs parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12855,6 +13215,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12880,12 +13241,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get jobs from servicePrincipals + description: 'Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.' operationId: servicePrincipals.synchronization_GetJobs parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12893,6 +13256,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -12964,6 +13328,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -12971,6 +13336,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -12997,6 +13363,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13004,12 +13371,14 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13029,6 +13398,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13036,6 +13406,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13056,6 +13427,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13063,6 +13435,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13101,6 +13474,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13108,6 +13482,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13140,6 +13515,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13147,6 +13523,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13167,6 +13544,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13174,6 +13552,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13194,6 +13573,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13201,6 +13581,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13239,12 +13620,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get schema from servicePrincipals + description: The synchronization schema configured for the job. operationId: servicePrincipals.synchronization.jobs_GetSchema parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13252,6 +13635,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13315,6 +13699,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13322,6 +13707,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13348,6 +13734,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13355,12 +13742,14 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13374,12 +13763,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_ListDirectories parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13387,6 +13778,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13469,6 +13861,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13476,6 +13869,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13501,12 +13895,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.jobs.schema_GetDirectories parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13514,6 +13910,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13521,6 +13918,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -13577,6 +13975,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13584,6 +13983,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13591,6 +13991,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -13617,6 +14018,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13624,6 +14026,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13631,12 +14034,14 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13656,6 +14061,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13663,6 +14069,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13670,6 +14077,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -13694,6 +14102,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13701,6 +14110,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13733,6 +14143,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13740,6 +14151,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13772,6 +14184,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13779,6 +14192,7 @@ paths: in: path description: 'key: id of synchronizationJob' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationJob @@ -13820,6 +14234,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13864,6 +14279,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13898,6 +14314,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -13922,12 +14339,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get templates from servicePrincipals + description: Pre-configured synchronization settings for a particular application. operationId: servicePrincipals.synchronization_ListTemplates parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14012,6 +14431,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14037,12 +14457,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get templates from servicePrincipals + description: Pre-configured synchronization settings for a particular application. operationId: servicePrincipals.synchronization_GetTemplates parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14050,6 +14472,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14111,6 +14534,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14118,6 +14542,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14144,6 +14569,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14151,12 +14577,14 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14170,12 +14598,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get schema from servicePrincipals + description: Default synchronization schema for the jobs based on this template. operationId: servicePrincipals.synchronization.templates_GetSchema parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14183,6 +14613,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14246,6 +14677,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14253,6 +14685,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14279,6 +14712,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14286,12 +14720,14 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14305,12 +14741,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_ListDirectories parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14318,6 +14756,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14400,6 +14839,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14407,6 +14847,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14432,12 +14873,14 @@ paths: tags: - servicePrincipals.synchronization summary: Get directories from servicePrincipals + description: Contains the collection of directories and all of their objects. operationId: servicePrincipals.synchronization.templates.schema_GetDirectories parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14445,6 +14888,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14452,6 +14896,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -14508,6 +14953,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14515,6 +14961,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14522,6 +14969,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -14548,6 +14996,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14555,6 +15004,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14562,12 +15012,14 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14587,6 +15039,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14594,6 +15047,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14601,6 +15055,7 @@ paths: in: path description: 'key: id of directoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryDefinition @@ -14625,6 +15080,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14632,6 +15088,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14664,6 +15121,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14671,6 +15129,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14703,6 +15162,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14710,6 +15170,7 @@ paths: in: path description: 'key: id of synchronizationTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: synchronizationTemplate @@ -14745,12 +15206,14 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Get tokenIssuancePolicies from servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_ListTokenIssuancePolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14827,12 +15290,14 @@ paths: tags: - servicePrincipals.tokenIssuancePolicy summary: Get tokenIssuancePolicies from servicePrincipals + description: The tokenIssuancePolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_GetTokenIssuancePolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14840,6 +15305,7 @@ paths: in: path description: 'key: id of tokenIssuancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: tokenIssuancePolicy @@ -14895,12 +15361,14 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Get tokenLifetimePolicies from servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_ListTokenLifetimePolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14977,12 +15445,14 @@ paths: tags: - servicePrincipals.tokenLifetimePolicy summary: Get tokenLifetimePolicies from servicePrincipals + description: The tokenLifetimePolicies assigned to this service principal. Supports $expand. operationId: servicePrincipals_GetTokenLifetimePolicies parameters: - name: servicePrincipal-id in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -14990,6 +15460,7 @@ paths: in: path description: 'key: id of tokenLifetimePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: tokenLifetimePolicy @@ -15051,6 +15522,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -15119,6 +15591,7 @@ paths: in: path description: 'key: id of servicePrincipal' required: true + style: simple schema: type: string x-ms-docs-key-type: servicePrincipal @@ -15126,6 +15599,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -15304,12 +15778,14 @@ paths: tags: - users.appRoleAssignment summary: Get appRoleAssignments from users + description: Represents the app roles a user has been granted for an application. Supports $expand. operationId: users_ListAppRoleAssignments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -15395,6 +15871,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -15420,12 +15897,14 @@ paths: tags: - users.appRoleAssignment summary: Get appRoleAssignments from users + description: Represents the app roles a user has been granted for an application. Supports $expand. operationId: users_GetAppRoleAssignments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -15433,6 +15912,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -15487,6 +15967,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -15494,6 +15975,7 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment @@ -15520,6 +16002,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -15527,12 +16010,14 @@ paths: in: path description: 'key: id of appRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15691,7 +16176,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). + description: 'Federated identities for applications. Supports $expand and $filter (startsWith, and eq, ne when counting empty collections and only with advanced query parameters).' homeRealmDiscoveryPolicies: type: array items: @@ -15700,7 +16185,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (eq when counting empty collections). + description: Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (eq and ne when counting empty collections). tokenIssuancePolicies: type: array items: @@ -16593,6 +17078,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -16632,7 +17119,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -17079,6 +17565,7 @@ components: $ref: '#/components/schemas/microsoft.graph.weakAlgorithms' isSignedRequestRequired: type: boolean + description: Specifies whether signed authentication requests for this application should be required. additionalProperties: type: object microsoft.graph.requiredResourceAccess: @@ -17232,6 +17719,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.onPremisesApplicationSegment' + description: Represents the application segment collection for an on-premises wildcard application. singleSignOnSettings: $ref: '#/components/schemas/microsoft.graph.onPremisesPublishingSingleSignOn' useAlternateUrlForTranslationAndRedirect: @@ -17302,7 +17790,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -17859,6 +18347,23 @@ components: nullable: true additionalProperties: type: object + ReferenceCreate: + type: object + properties: + '@odata.id': + type: string + additionalProperties: + type: object + ReferenceUpdate: + type: object + properties: + '@odata.id': + type: string + '@odata.type': + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.applicationCollectionResponse: title: Collection of application type: object @@ -18281,16 +18786,20 @@ components: properties: alternateUrl: type: string + description: 'If you''re configuring a traffic manager in front of multiple App Proxy application segments, contains the user-friendly URL that will point to the traffic manager.' nullable: true corsConfigurations: type: array items: $ref: '#/components/schemas/microsoft.graph.corsConfiguration' + description: CORS Rule definition for a particular application segment. externalUrl: type: string + description: 'The published external URL for the application segment; for example, https://intranet.contoso.com./' nullable: true internalUrl: type: string + description: 'The internal URL of the application segment; for example, https://intranet/.' nullable: true additionalProperties: type: object @@ -18634,11 +19143,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -18710,24 +19219,29 @@ components: items: type: string nullable: true + description: The request headers that the origin domain may specify on the CORS request. The wildcard character * indicates that any header beginning with the specified prefix is allowed. allowedMethods: type: array items: type: string nullable: true + description: The HTTP request methods that the origin domain may use for a CORS request. allowedOrigins: type: array items: type: string nullable: true + description: The origin domains that are permitted to make a request against the service via CORS. The origin domain is the domain from which the request originates. The origin must be an exact case-sensitive match with the origin that the user age sends to the service. maxAgeInSeconds: maximum: 2147483647 minimum: -2147483648 type: integer + description: The maximum amount of time that a browser should cache the response to the preflight OPTIONS request. format: int32 nullable: true resource: type: string + description: Resource within the application segment for which CORS permissions are granted. / grants permission for whole app segment. nullable: true additionalProperties: type: object @@ -19115,35 +19629,60 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer example: 50 + search: + name: $search + in: query + description: Search items by search phrases + style: form + explode: false + schema: + type: string skip: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer - search: - name: $search - in: query - description: Search items by search phrases - schema: - type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean + requestBodies: + refPostBody: + description: New navigation property ref value + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceCreate' + required: true + refPutBody: + description: New navigation property ref values + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceUpdate' + required: true securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/Bookings.yml b/openApiDocs/beta/Bookings.yml index 7c3b936af90..f691a55b247 100644 --- a/openApiDocs/beta/Bookings.yml +++ b/openApiDocs/beta/Bookings.yml @@ -11,6 +11,7 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: List bookingBusinesses + description: 'Get a collection of bookingBusiness objects that has been created for the tenant. This operation returns only the **id** and **displayName** of each Microsoft Bookings business in the collection. For performance considerations, it does not return other properties. You can get the other properties of a Bookings business by specifying its **id** in a GET operation. You can also query for Bookings businesses by specifying a string in a `query` parameter to do substring matching among the businesses of a tenant. See an example below.' operationId: bookingBusinesses.bookingBusiness_ListBookingBusiness parameters: - $ref: '#/components/parameters/top' @@ -116,6 +117,7 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Create bookingBusiness + description: 'Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the **bookingBusiness**.' operationId: bookingBusinesses.bookingBusiness_CreateBookingBusiness requestBody: description: New entity @@ -139,12 +141,14 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Get bookingBusiness + description: Get the properties and relationships of a bookingBusiness object. operationId: bookingBusinesses.bookingBusiness_GetBookingBusiness parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -241,12 +245,14 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Update bookingbusiness + description: Update the properties of a bookingBusiness object. operationId: bookingBusinesses.bookingBusiness_UpdateBookingBusiness parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -267,18 +273,21 @@ paths: tags: - bookingBusinesses.bookingBusiness summary: Delete bookingBusiness + description: Delete a bookingBusiness object. operationId: bookingBusinesses.bookingBusiness_DeleteBookingBusiness parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -292,12 +301,14 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get appointments from bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_ListAppointments parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -470,6 +481,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -495,12 +507,14 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get appointments from bookingBusinesses + description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses_GetAppointments parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -508,6 +522,7 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment @@ -594,6 +609,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -601,6 +617,7 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment @@ -627,6 +644,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -634,12 +652,14 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -653,12 +673,14 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action cancel + description: 'Cancels the giving booking appointment, sending a message to the involved parties.' operationId: bookingBusinesses.appointments_cancel parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -666,6 +688,7 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment @@ -693,12 +716,14 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get calendarView from bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_ListCalendarView parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -706,12 +731,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: end in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - $ref: '#/components/parameters/top' @@ -883,6 +912,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -908,12 +938,14 @@ paths: tags: - bookingBusinesses.bookingAppointment summary: Get calendarView from bookingBusinesses + description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses_GetCalendarView parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -921,6 +953,7 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment @@ -928,12 +961,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: end in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: $select @@ -1019,6 +1056,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1026,6 +1064,7 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment @@ -1052,6 +1091,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1059,12 +1099,14 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1078,12 +1120,14 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action cancel + description: 'Cancels the giving booking appointment, sending a message to the involved parties.' operationId: bookingBusinesses.calendarView_cancel parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1091,6 +1135,7 @@ paths: in: path description: 'key: id of bookingAppointment' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingAppointment @@ -1118,12 +1163,14 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Get customers from bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_ListCustomers parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1200,6 +1247,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1225,12 +1273,14 @@ paths: tags: - bookingBusinesses.bookingCustomer summary: Get customers from bookingBusinesses + description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses_GetCustomers parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1238,6 +1288,7 @@ paths: in: path description: 'key: id of bookingCustomer' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCustomer @@ -1289,6 +1340,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1296,6 +1348,7 @@ paths: in: path description: 'key: id of bookingCustomer' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCustomer @@ -1322,6 +1375,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1329,12 +1383,14 @@ paths: in: path description: 'key: id of bookingCustomer' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCustomer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1348,12 +1404,14 @@ paths: tags: - bookingBusinesses.bookingCustomQuestion summary: Get customQuestions from bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. operationId: bookingBusinesses_ListCustomQuestions parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1427,6 +1485,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1452,12 +1511,14 @@ paths: tags: - bookingBusinesses.bookingCustomQuestion summary: Get customQuestions from bookingBusinesses + description: All the custom questions of this business. Read-only. Nullable. operationId: bookingBusinesses_GetCustomQuestions parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1465,6 +1526,7 @@ paths: in: path description: 'key: id of bookingCustomQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCustomQuestion @@ -1515,6 +1577,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1522,6 +1585,7 @@ paths: in: path description: 'key: id of bookingCustomQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCustomQuestion @@ -1548,6 +1612,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1555,12 +1620,14 @@ paths: in: path description: 'key: id of bookingCustomQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCustomQuestion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1580,6 +1647,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1624,12 +1692,14 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action publish + description: Makes the scheduling page of this business available to the general public. operationId: bookingBusinesses_publish parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1644,12 +1714,14 @@ paths: tags: - bookingBusinesses.Actions summary: Invoke action unpublish + description: Prevents the general public from seeing the scheduling page of this business. operationId: bookingBusinesses_unpublish parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1664,12 +1736,14 @@ paths: tags: - bookingBusinesses.bookingService summary: Get services from bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_ListServices parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1797,6 +1871,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1822,12 +1897,14 @@ paths: tags: - bookingBusinesses.bookingService summary: Get services from bookingBusinesses + description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses_GetServices parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1835,6 +1912,7 @@ paths: in: path description: 'key: id of bookingService' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingService @@ -1903,6 +1981,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1910,6 +1989,7 @@ paths: in: path description: 'key: id of bookingService' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingService @@ -1936,6 +2016,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -1943,12 +2024,14 @@ paths: in: path description: 'key: id of bookingService' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingService - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1962,12 +2045,14 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Get staffMembers from bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_ListStaffMembers parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -2059,6 +2144,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -2084,12 +2170,14 @@ paths: tags: - bookingBusinesses.bookingStaffMember summary: Get staffMembers from bookingBusinesses + description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses_GetStaffMembers parameters: - name: bookingBusiness-id in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -2097,6 +2185,7 @@ paths: in: path description: 'key: id of bookingStaffMember' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingStaffMember @@ -2153,6 +2242,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -2160,6 +2250,7 @@ paths: in: path description: 'key: id of bookingStaffMember' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingStaffMember @@ -2186,6 +2277,7 @@ paths: in: path description: 'key: id of bookingBusiness' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingBusiness @@ -2193,12 +2285,14 @@ paths: in: path description: 'key: id of bookingStaffMember' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingStaffMember - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2212,6 +2306,7 @@ paths: tags: - bookingCurrencies.bookingCurrency summary: List bookingCurrencies + description: Get a list of bookingCurrency objects available to a Microsoft Bookings business. operationId: bookingCurrencies.bookingCurrency_ListBookingCurrency parameters: - $ref: '#/components/parameters/top' @@ -2295,12 +2390,14 @@ paths: tags: - bookingCurrencies.bookingCurrency summary: Get bookingCurrency + description: 'Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the **id** property, which is the currency code, to specify the currency.' operationId: bookingCurrencies.bookingCurrency_GetBookingCurrency parameters: - name: bookingCurrency-id in: path description: 'key: id of bookingCurrency' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCurrency @@ -2349,6 +2446,7 @@ paths: in: path description: 'key: id of bookingCurrency' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCurrency @@ -2375,12 +2473,14 @@ paths: in: path description: 'key: id of bookingCurrency' required: true + style: simple schema: type: string x-ms-docs-key-type: bookingCurrency - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3454,6 +3554,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -3462,6 +3564,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -3469,18 +3573,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/Calendar.yml b/openApiDocs/beta/Calendar.yml index 6a53a544c92..731e256db7f 100644 --- a/openApiDocs/beta/Calendar.yml +++ b/openApiDocs/beta/Calendar.yml @@ -11,12 +11,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The group's calendar. Read-only. operationId: groups_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -98,6 +100,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -124,12 +127,14 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -143,12 +148,14 @@ paths: tags: - groups.calendar summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_ListCalendarPermissions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -215,6 +222,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -240,12 +248,14 @@ paths: tags: - groups.calendar summary: Get calendarPermissions from groups + description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar_GetCalendarPermissions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -253,6 +263,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -293,6 +304,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -300,6 +312,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -326,6 +339,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -333,12 +347,14 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -352,12 +368,14 @@ paths: tags: - groups.calendar summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_ListCalendarView parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -365,12 +383,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - $ref: '#/components/parameters/top' @@ -554,6 +576,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -579,12 +602,14 @@ paths: tags: - groups.calendar summary: Get calendarView from groups + description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar_GetCalendarView parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -592,6 +617,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -599,12 +625,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: $select @@ -738,6 +768,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -745,6 +776,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -771,6 +803,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -778,12 +811,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -797,12 +832,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -810,6 +847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -888,6 +926,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -895,6 +934,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -920,12 +960,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -933,6 +975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -940,6 +983,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -992,6 +1036,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -999,6 +1044,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1006,6 +1052,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -1032,6 +1079,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1039,6 +1087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1046,12 +1095,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1065,12 +1116,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1078,6 +1131,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1161,6 +1215,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1168,6 +1223,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1371,6 +1427,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1378,6 +1435,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1409,6 +1467,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1416,6 +1475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1423,6 +1483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1583,6 +1644,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1590,6 +1652,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1597,6 +1660,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1623,6 +1687,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1630,6 +1695,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1637,12 +1703,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1656,12 +1724,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1669,6 +1739,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1676,6 +1747,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1754,6 +1826,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1761,6 +1834,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1768,6 +1842,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1793,12 +1868,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1806,6 +1883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1813,6 +1891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1820,6 +1899,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -1872,6 +1952,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1879,6 +1960,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1886,6 +1968,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1893,6 +1976,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -1919,6 +2003,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1926,6 +2011,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1933,6 +2019,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1940,12 +2027,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1959,12 +2048,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1972,6 +2063,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1979,6 +2071,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2061,12 +2154,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2074,6 +2169,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2081,6 +2177,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2144,6 +2241,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2151,6 +2249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2158,6 +2257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2183,12 +2283,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2196,6 +2298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2203,6 +2306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2210,6 +2314,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -2257,6 +2362,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2264,6 +2370,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2271,6 +2378,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2278,6 +2386,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -2304,6 +2413,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2311,6 +2421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2318,6 +2429,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2325,12 +2437,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2344,12 +2458,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.exceptionOccurrences_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2357,6 +2473,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2364,6 +2481,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2548,6 +2666,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2555,6 +2674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2562,6 +2682,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2587,12 +2708,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.exceptionOccurrences_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2600,6 +2723,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2607,6 +2731,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2614,6 +2739,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2762,6 +2888,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2769,6 +2896,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2776,6 +2904,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2783,6 +2912,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2809,6 +2939,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2816,6 +2947,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2823,6 +2955,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2830,12 +2963,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2849,12 +2984,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.exceptionOccurrences.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2862,6 +2999,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2869,6 +3007,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2876,6 +3015,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2954,6 +3094,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2961,6 +3102,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2968,6 +3110,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2975,6 +3118,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3000,12 +3144,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.exceptionOccurrences.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3013,6 +3159,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3020,6 +3167,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3027,6 +3175,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3034,6 +3183,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -3086,6 +3236,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3093,6 +3244,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3100,6 +3252,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3107,6 +3260,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3114,6 +3268,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -3140,6 +3295,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3147,6 +3303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3154,6 +3311,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3161,6 +3319,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3168,12 +3327,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3187,12 +3348,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3200,6 +3363,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3207,6 +3371,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3214,6 +3379,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3301,12 +3467,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3314,6 +3482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3321,6 +3490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3328,6 +3498,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3391,6 +3562,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3398,6 +3570,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3405,6 +3578,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3412,6 +3586,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3437,12 +3612,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3450,6 +3627,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3457,6 +3635,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3464,6 +3643,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3471,6 +3651,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -3518,6 +3699,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3525,6 +3707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3532,6 +3715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3539,6 +3723,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3546,6 +3731,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -3572,6 +3758,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3579,6 +3766,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3586,6 +3774,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3593,6 +3782,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3600,12 +3790,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3619,12 +3811,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3632,6 +3826,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3639,6 +3834,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3646,6 +3842,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3713,6 +3910,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3720,6 +3918,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3727,6 +3926,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3734,6 +3934,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3759,12 +3960,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3772,6 +3975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3779,6 +3983,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3786,6 +3991,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3793,6 +3999,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -3841,6 +4048,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3848,6 +4056,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3855,6 +4064,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3862,6 +4072,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3869,6 +4080,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -3895,6 +4107,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3902,6 +4115,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3909,6 +4123,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3916,6 +4131,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3923,12 +4139,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3942,12 +4160,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3955,6 +4175,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3962,6 +4183,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3969,6 +4191,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4036,6 +4259,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4043,6 +4267,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4050,6 +4275,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4057,6 +4283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4082,12 +4309,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4095,6 +4324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4102,6 +4332,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4109,6 +4340,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4116,6 +4348,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -4164,6 +4397,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4171,6 +4405,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4178,6 +4413,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4185,6 +4421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4192,6 +4429,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -4218,6 +4456,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4225,6 +4464,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4232,6 +4472,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4239,6 +4480,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4246,12 +4488,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4265,12 +4509,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4278,6 +4524,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4285,6 +4532,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4352,6 +4600,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4359,6 +4608,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4366,6 +4616,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4391,12 +4642,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4404,6 +4657,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4411,6 +4665,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4418,6 +4673,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -4466,6 +4722,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4473,6 +4730,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4480,6 +4738,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4487,6 +4746,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -4513,6 +4773,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4520,6 +4781,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4527,6 +4789,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4534,12 +4797,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4553,12 +4818,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4566,6 +4833,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4573,6 +4841,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4640,6 +4909,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4647,6 +4917,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4654,6 +4925,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4679,12 +4951,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4692,6 +4966,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4699,6 +4974,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4706,6 +4982,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -4754,6 +5031,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4761,6 +5039,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4768,6 +5047,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4775,6 +5055,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -4801,6 +5082,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4808,6 +5090,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4815,6 +5098,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4822,12 +5106,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4841,12 +5127,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4854,6 +5142,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4917,6 +5206,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4924,6 +5214,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4949,12 +5240,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4962,6 +5255,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4969,6 +5263,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -5016,6 +5311,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5023,6 +5319,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5030,6 +5327,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -5056,6 +5354,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5063,6 +5362,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5070,12 +5370,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5089,12 +5391,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5102,6 +5406,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5286,6 +5591,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5293,6 +5599,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5318,12 +5625,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5331,6 +5640,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5338,6 +5648,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5479,6 +5790,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5486,6 +5798,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5493,6 +5806,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5519,6 +5833,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5526,6 +5841,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5533,12 +5849,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5552,12 +5870,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5565,6 +5885,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5572,6 +5893,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5650,6 +5972,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5657,6 +5980,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5664,6 +5988,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5689,12 +6014,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5702,6 +6029,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5709,6 +6037,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5716,6 +6045,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -5768,6 +6098,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5775,6 +6106,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5782,6 +6114,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5789,6 +6122,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -5815,6 +6149,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5822,6 +6157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5829,6 +6165,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5836,12 +6173,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5855,12 +6194,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5868,6 +6209,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5875,6 +6217,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5963,6 +6306,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5970,6 +6314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5977,6 +6322,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6180,6 +6526,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6187,6 +6534,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6194,6 +6542,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6225,6 +6574,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6232,6 +6582,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6239,6 +6590,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6246,6 +6598,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6413,6 +6766,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6420,6 +6774,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6427,6 +6782,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6434,6 +6790,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6460,6 +6817,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6467,6 +6825,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6474,6 +6833,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6481,12 +6841,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6500,12 +6862,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.instances.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6513,6 +6877,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6520,6 +6885,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6527,6 +6893,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6605,6 +6972,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6612,6 +6980,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6619,6 +6988,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6626,6 +6996,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6651,12 +7022,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.calendarView.instances.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6664,6 +7037,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6671,6 +7045,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6678,6 +7053,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6685,6 +7061,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -6737,6 +7114,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6744,6 +7122,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6751,6 +7130,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6758,6 +7138,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6765,6 +7146,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -6791,6 +7173,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6798,6 +7181,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6805,6 +7189,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6812,6 +7197,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6819,12 +7205,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6838,12 +7226,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6851,6 +7241,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6858,6 +7249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6865,6 +7257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6952,12 +7345,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6965,6 +7360,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6972,6 +7368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6979,6 +7376,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7042,6 +7440,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7049,6 +7448,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7056,6 +7456,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7063,6 +7464,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7088,12 +7490,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7101,6 +7505,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7108,6 +7513,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7115,6 +7521,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7122,6 +7529,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -7169,6 +7577,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7176,6 +7585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7183,6 +7593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7190,6 +7601,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7197,6 +7609,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -7223,6 +7636,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7230,6 +7644,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7237,6 +7652,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7244,6 +7660,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7251,12 +7668,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7270,12 +7689,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7283,6 +7704,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7290,6 +7712,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7297,6 +7720,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7364,6 +7788,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7371,6 +7796,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7378,6 +7804,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7385,6 +7812,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7410,12 +7838,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7423,6 +7853,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7430,6 +7861,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7437,6 +7869,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7444,6 +7877,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -7492,6 +7926,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7499,6 +7934,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7506,6 +7942,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7513,6 +7950,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7520,6 +7958,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -7546,6 +7985,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7553,6 +7993,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7560,6 +8001,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7567,6 +8009,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7574,12 +8017,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7593,12 +8038,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7606,6 +8053,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7613,6 +8061,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7620,6 +8069,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7687,6 +8137,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7694,6 +8145,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7701,6 +8153,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7708,6 +8161,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7733,12 +8187,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7746,6 +8202,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7753,6 +8210,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7760,6 +8218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7767,6 +8226,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -7815,6 +8275,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7822,6 +8283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7829,6 +8291,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7836,6 +8299,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7843,6 +8307,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -7869,6 +8334,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7876,6 +8342,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7883,6 +8350,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7890,6 +8358,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7897,12 +8366,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7916,12 +8387,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7929,6 +8402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7936,6 +8410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7999,6 +8474,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8006,6 +8482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8013,6 +8490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8038,12 +8516,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.calendarView.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8051,6 +8531,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8058,6 +8539,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8065,6 +8547,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -8112,6 +8595,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8119,6 +8603,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8126,6 +8611,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8133,6 +8619,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -8159,6 +8646,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8166,6 +8654,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8173,6 +8662,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8180,12 +8670,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8199,12 +8691,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8212,6 +8706,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8219,6 +8714,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8286,6 +8782,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8293,6 +8790,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8300,6 +8798,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8325,12 +8824,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8338,6 +8839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8345,6 +8847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8352,6 +8855,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -8400,6 +8904,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8407,6 +8912,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8414,6 +8920,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8421,6 +8928,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -8447,6 +8955,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8454,6 +8963,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8461,6 +8971,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8468,12 +8979,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8487,12 +9000,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8500,6 +9015,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8507,6 +9023,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8574,6 +9091,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8581,6 +9099,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8588,6 +9107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8613,12 +9133,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8626,6 +9148,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8633,6 +9156,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8640,6 +9164,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -8688,6 +9213,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8695,6 +9221,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8702,6 +9229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8709,6 +9237,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -8735,6 +9264,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8742,6 +9272,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8749,6 +9280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8756,12 +9288,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8775,12 +9309,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8788,6 +9324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8855,6 +9392,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8862,6 +9400,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8887,12 +9426,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8900,6 +9441,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8907,6 +9449,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -8955,6 +9498,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8962,6 +9506,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -8969,6 +9514,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -8995,6 +9541,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9002,6 +9549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9009,12 +9557,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9028,12 +9578,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9041,6 +9593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9108,6 +9661,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9115,6 +9669,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9140,12 +9695,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.calendarView_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9153,6 +9710,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9160,6 +9718,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -9208,6 +9767,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9215,6 +9775,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9222,6 +9783,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -9248,6 +9810,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9255,6 +9818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9262,12 +9826,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9281,12 +9847,14 @@ paths: tags: - groups.calendar summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_ListEvents parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9471,6 +10039,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9496,12 +10065,14 @@ paths: tags: - groups.calendar summary: Get events from groups + description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar_GetEvents parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9509,6 +10080,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9643,6 +10215,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9650,6 +10223,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9676,6 +10250,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9683,12 +10258,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9702,12 +10279,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9715,6 +10294,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9793,6 +10373,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9800,6 +10381,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9825,12 +10407,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9838,6 +10422,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9845,6 +10430,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -9897,6 +10483,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9904,6 +10491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9911,6 +10499,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -9937,6 +10526,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9944,6 +10534,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -9951,12 +10542,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9970,12 +10563,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9983,6 +10578,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10066,6 +10662,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10073,6 +10670,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10276,6 +10874,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10283,6 +10882,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10314,6 +10914,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10321,6 +10922,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10328,6 +10930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10488,6 +11091,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10495,6 +11099,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10502,6 +11107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10528,6 +11134,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10535,6 +11142,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10542,12 +11150,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10561,12 +11171,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10574,6 +11186,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10581,6 +11194,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10659,6 +11273,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10666,6 +11281,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10673,6 +11289,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10698,12 +11315,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10711,6 +11330,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10718,6 +11338,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10725,6 +11346,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -10777,6 +11399,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10784,6 +11407,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10791,6 +11415,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10798,6 +11423,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -10824,6 +11450,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10831,6 +11458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10838,6 +11466,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10845,12 +11474,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10864,12 +11495,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10877,6 +11510,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10884,6 +11518,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10966,12 +11601,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10979,6 +11616,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -10986,6 +11624,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11049,6 +11688,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11056,6 +11696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11063,6 +11704,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11088,12 +11730,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11101,6 +11745,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11108,6 +11753,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11115,6 +11761,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -11162,6 +11809,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11169,6 +11817,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11176,6 +11825,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11183,6 +11833,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -11209,6 +11860,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11216,6 +11868,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11223,6 +11876,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11230,12 +11884,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11249,12 +11905,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.exceptionOccurrences_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11262,6 +11920,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11269,6 +11928,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11453,6 +12113,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11460,6 +12121,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11467,6 +12129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11492,12 +12155,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.exceptionOccurrences_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11505,6 +12170,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11512,6 +12178,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11519,6 +12186,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11667,6 +12335,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11674,6 +12343,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11681,6 +12351,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11688,6 +12359,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11714,6 +12386,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11721,6 +12394,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11728,6 +12402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11735,12 +12410,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11754,12 +12431,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.exceptionOccurrences.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11767,6 +12446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11774,6 +12454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11781,6 +12462,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11859,6 +12541,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11866,6 +12549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11873,6 +12557,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11880,6 +12565,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11905,12 +12591,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.exceptionOccurrences.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11918,6 +12606,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11925,6 +12614,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11932,6 +12622,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -11939,6 +12630,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -11991,6 +12683,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11998,6 +12691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12005,6 +12699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12012,6 +12707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12019,6 +12715,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -12045,6 +12742,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12052,6 +12750,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12059,6 +12758,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12066,6 +12766,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12073,12 +12774,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12092,12 +12795,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events.exceptionOccurrences.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12105,6 +12810,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12112,6 +12818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12119,6 +12826,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12206,12 +12914,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.exceptionOccurrences.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12219,6 +12929,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12226,6 +12937,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12233,6 +12945,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12296,6 +13009,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12303,6 +13017,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12310,6 +13025,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12317,6 +13033,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12342,12 +13059,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.exceptionOccurrences.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12355,6 +13074,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12362,6 +13082,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12369,6 +13090,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12376,6 +13098,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -12423,6 +13146,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12430,6 +13154,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12437,6 +13162,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12444,6 +13170,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12451,6 +13178,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -12477,6 +13205,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12484,6 +13213,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12491,6 +13221,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12498,6 +13229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12505,12 +13237,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12524,12 +13258,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12537,6 +13273,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12544,6 +13281,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12551,6 +13289,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12618,6 +13357,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12625,6 +13365,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12632,6 +13373,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12639,6 +13381,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12664,12 +13407,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12677,6 +13422,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12684,6 +13430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12691,6 +13438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12698,6 +13446,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -12746,6 +13495,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12753,6 +13503,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12760,6 +13511,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12767,6 +13519,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12774,6 +13527,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -12800,6 +13554,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12807,6 +13562,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12814,6 +13570,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12821,6 +13578,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12828,12 +13586,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12847,12 +13607,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12860,6 +13622,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12867,6 +13630,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12874,6 +13638,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12941,6 +13706,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12948,6 +13714,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12955,6 +13722,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12962,6 +13730,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -12987,12 +13756,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13000,6 +13771,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13007,6 +13779,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13014,6 +13787,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13021,6 +13795,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -13069,6 +13844,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13076,6 +13852,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13083,6 +13860,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13090,6 +13868,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13097,6 +13876,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -13123,6 +13903,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13130,6 +13911,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13137,6 +13919,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13144,6 +13927,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13151,12 +13935,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13170,12 +13956,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13183,6 +13971,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13190,6 +13979,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13257,6 +14047,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13264,6 +14055,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13271,6 +14063,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13296,12 +14089,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13309,6 +14104,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13316,6 +14112,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13323,6 +14120,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -13371,6 +14169,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13378,6 +14177,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13385,6 +14185,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13392,6 +14193,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -13418,6 +14220,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13425,6 +14228,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13432,6 +14236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13439,12 +14244,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13458,12 +14265,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13471,6 +14280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13478,6 +14288,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13545,6 +14356,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13552,6 +14364,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13559,6 +14372,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13584,12 +14398,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13597,6 +14413,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13604,6 +14421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13611,6 +14429,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -13659,6 +14478,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13666,6 +14486,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13673,6 +14494,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13680,6 +14502,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -13706,6 +14529,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13713,6 +14537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13720,6 +14545,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13727,12 +14553,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13746,12 +14574,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13759,6 +14589,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13822,6 +14653,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13829,6 +14661,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13854,12 +14687,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13867,6 +14702,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13874,6 +14710,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -13921,6 +14758,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13928,6 +14766,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13935,6 +14774,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -13961,6 +14801,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13968,6 +14809,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -13975,12 +14817,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13994,12 +14838,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14007,6 +14853,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14191,6 +15038,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14198,6 +15046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14223,12 +15072,14 @@ paths: tags: - groups.calendar summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14236,6 +15087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14243,6 +15095,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14384,6 +15237,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14391,6 +15245,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14398,6 +15253,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14424,6 +15280,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14431,6 +15288,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14438,12 +15296,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14457,12 +15317,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14470,6 +15332,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14477,6 +15340,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14555,6 +15419,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14562,6 +15427,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14569,6 +15435,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14594,12 +15461,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14607,6 +15476,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14614,6 +15484,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14621,6 +15492,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -14673,6 +15545,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14680,6 +15553,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14687,6 +15561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14694,6 +15569,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -14720,6 +15596,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14727,6 +15604,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14734,6 +15612,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14741,12 +15620,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14760,12 +15641,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14773,6 +15656,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14780,6 +15664,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14868,6 +15753,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14875,6 +15761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -14882,6 +15769,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15085,6 +15973,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15092,6 +15981,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15099,6 +15989,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15130,6 +16021,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15137,6 +16029,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15144,6 +16037,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15151,6 +16045,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15318,6 +16213,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15325,6 +16221,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15332,6 +16229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15339,6 +16237,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15365,6 +16264,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15372,6 +16272,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15379,6 +16280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15386,12 +16288,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15405,12 +16309,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.instances.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15418,6 +16324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15425,6 +16332,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15432,6 +16340,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15510,6 +16419,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15517,6 +16427,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15524,6 +16435,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15531,6 +16443,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15556,12 +16469,14 @@ paths: tags: - groups.calendar summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendar.events.instances.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15569,6 +16484,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15576,6 +16492,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15583,6 +16500,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15590,6 +16508,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -15642,6 +16561,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15649,6 +16569,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15656,6 +16577,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15663,6 +16585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15670,6 +16593,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -15696,6 +16620,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15703,6 +16628,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15710,6 +16636,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15717,6 +16644,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15724,12 +16652,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15743,12 +16673,14 @@ paths: tags: - groups.calendar summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events.instances.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15756,6 +16688,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15763,6 +16696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15770,6 +16704,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15857,12 +16792,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.instances.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15870,6 +16807,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15877,6 +16815,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15884,6 +16823,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15947,6 +16887,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15954,6 +16895,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15961,6 +16903,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15968,6 +16911,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -15993,12 +16937,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.instances.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16006,6 +16952,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16013,6 +16960,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16020,6 +16968,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16027,6 +16976,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -16074,6 +17024,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16081,6 +17032,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16088,6 +17040,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16095,6 +17048,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16102,6 +17056,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -16128,6 +17083,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16135,6 +17091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16142,6 +17099,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16149,6 +17107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16156,12 +17115,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16175,12 +17136,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16188,6 +17151,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16195,6 +17159,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16202,6 +17167,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16269,6 +17235,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16276,6 +17243,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16283,6 +17251,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16290,6 +17259,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16315,12 +17285,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16328,6 +17300,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16335,6 +17308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16342,6 +17316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16349,6 +17324,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -16397,6 +17373,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16404,6 +17381,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16411,6 +17389,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16418,6 +17397,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16425,6 +17405,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -16451,6 +17432,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16458,6 +17440,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16465,6 +17448,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16472,6 +17456,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16479,12 +17464,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16498,12 +17485,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16511,6 +17500,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16518,6 +17508,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16525,6 +17516,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16592,6 +17584,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16599,6 +17592,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16606,6 +17600,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16613,6 +17608,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16638,12 +17634,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16651,6 +17649,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16658,6 +17657,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16665,6 +17665,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16672,6 +17673,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -16720,6 +17722,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16727,6 +17730,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16734,6 +17738,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16741,6 +17746,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16748,6 +17754,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -16774,6 +17781,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16781,6 +17789,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16788,6 +17797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16795,6 +17805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16802,12 +17813,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16821,12 +17834,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16834,6 +17849,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16841,6 +17857,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16904,6 +17921,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16911,6 +17929,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16918,6 +17937,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16943,12 +17963,14 @@ paths: tags: - groups.calendar summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16956,6 +17978,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16963,6 +17986,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16970,6 +17994,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -17017,6 +18042,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17024,6 +18050,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17031,6 +18058,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17038,6 +18066,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -17064,6 +18093,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17071,6 +18101,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17078,6 +18109,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17085,12 +18117,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17104,12 +18138,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17117,6 +18153,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17124,6 +18161,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17191,6 +18229,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17198,6 +18237,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17205,6 +18245,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17230,12 +18271,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17243,6 +18286,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17250,6 +18294,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17257,6 +18302,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -17305,6 +18351,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17312,6 +18359,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17319,6 +18367,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17326,6 +18375,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -17352,6 +18402,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17359,6 +18410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17366,6 +18418,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17373,12 +18426,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17392,12 +18447,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17405,6 +18462,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17412,6 +18470,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17479,6 +18538,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17486,6 +18546,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17493,6 +18554,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17518,12 +18580,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17531,6 +18595,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17538,6 +18603,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17545,6 +18611,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -17593,6 +18660,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17600,6 +18668,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17607,6 +18676,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17614,6 +18684,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -17640,6 +18711,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17647,6 +18719,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17654,6 +18727,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17661,12 +18735,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17680,12 +18756,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17693,6 +18771,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17760,6 +18839,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17767,6 +18847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17792,12 +18873,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17805,6 +18888,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17812,6 +18896,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -17860,6 +18945,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17867,6 +18953,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17874,6 +18961,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -17900,6 +18988,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17907,6 +18996,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17914,12 +19004,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17933,12 +19025,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17946,6 +19040,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18013,6 +19108,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18020,6 +19116,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18045,12 +19142,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendar.events_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18058,6 +19157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18065,6 +19165,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -18113,6 +19214,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18120,6 +19222,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18127,6 +19230,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -18153,6 +19257,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18160,6 +19265,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18167,12 +19273,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18186,12 +19294,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18259,6 +19369,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18284,12 +19395,14 @@ paths: tags: - groups.calendar summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18297,6 +19410,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -18345,6 +19459,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18352,6 +19467,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -18378,6 +19494,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18385,12 +19502,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18404,12 +19523,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18477,6 +19598,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18502,12 +19624,14 @@ paths: tags: - groups.calendar summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: groups.calendar_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18515,6 +19639,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -18563,6 +19688,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18570,6 +19696,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -18596,6 +19723,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18603,12 +19731,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18622,12 +19752,14 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Read-only. operationId: groups_ListCalendarView parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18635,12 +19767,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - $ref: '#/components/parameters/top' @@ -18824,6 +19960,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18849,12 +19986,14 @@ paths: tags: - groups.event summary: Get calendarView from groups + description: The calendar view for the calendar. Read-only. operationId: groups_GetCalendarView parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18862,6 +20001,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18869,12 +20009,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: $select @@ -19008,6 +20152,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19015,6 +20160,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19041,6 +20187,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19048,12 +20195,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19067,12 +20216,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19080,6 +20231,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19158,6 +20310,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19165,6 +20318,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19190,12 +20344,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19203,6 +20359,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19210,6 +20367,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -19262,6 +20420,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19269,6 +20428,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19276,6 +20436,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -19302,6 +20463,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19309,6 +20471,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19316,12 +20479,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19335,12 +20500,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19348,6 +20515,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19431,6 +20599,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19438,6 +20607,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19641,6 +20811,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19648,6 +20819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19679,6 +20851,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19686,6 +20859,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19693,6 +20867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19853,6 +21028,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19860,6 +21036,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19867,6 +21044,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19893,6 +21071,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19900,6 +21079,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19907,12 +21087,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19926,12 +21108,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19939,6 +21123,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -19946,6 +21131,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20024,6 +21210,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20031,6 +21218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20038,6 +21226,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20063,12 +21252,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20076,6 +21267,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20083,6 +21275,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20090,6 +21283,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -20142,6 +21336,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20149,6 +21344,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20156,6 +21352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20163,6 +21360,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -20189,6 +21387,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20196,6 +21395,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20203,6 +21403,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20210,12 +21411,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20229,12 +21432,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20242,6 +21447,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20249,6 +21455,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20331,12 +21538,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20344,6 +21553,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20351,6 +21561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20414,6 +21625,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20421,6 +21633,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20428,6 +21641,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20453,12 +21667,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20466,6 +21682,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20473,6 +21690,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20480,6 +21698,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -20527,6 +21746,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20534,6 +21754,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20541,6 +21762,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20548,6 +21770,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -20574,6 +21797,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20581,6 +21805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20588,6 +21813,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20595,12 +21821,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20614,12 +21842,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.exceptionOccurrences_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20627,6 +21857,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20634,6 +21865,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20818,6 +22050,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20825,6 +22058,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20832,6 +22066,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20857,12 +22092,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.exceptionOccurrences_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20870,6 +22107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20877,6 +22115,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -20884,6 +22123,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21032,6 +22272,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21039,6 +22280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21046,6 +22288,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21053,6 +22296,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21079,6 +22323,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21086,6 +22331,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21093,6 +22339,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21100,12 +22347,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21119,12 +22368,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.exceptionOccurrences.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21132,6 +22383,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21139,6 +22391,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21146,6 +22399,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21224,6 +22478,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21231,6 +22486,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21238,6 +22494,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21245,6 +22502,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21270,12 +22528,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.exceptionOccurrences.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21283,6 +22543,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21290,6 +22551,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21297,6 +22559,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21304,6 +22567,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -21356,6 +22620,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21363,6 +22628,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21370,6 +22636,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21377,6 +22644,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21384,6 +22652,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -21410,6 +22679,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21417,6 +22687,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21424,6 +22695,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21431,6 +22703,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21438,12 +22711,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21457,12 +22732,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView.exceptionOccurrences.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21470,6 +22747,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21477,6 +22755,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21484,6 +22763,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21571,12 +22851,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.exceptionOccurrences.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21584,6 +22866,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21591,6 +22874,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21598,6 +22882,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21661,6 +22946,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21668,6 +22954,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21675,6 +22962,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21682,6 +22970,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21707,12 +22996,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.exceptionOccurrences.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21720,6 +23011,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21727,6 +23019,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21734,6 +23027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21741,6 +23035,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -21788,6 +23083,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21795,6 +23091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21802,6 +23099,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21809,6 +23107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21816,6 +23115,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -21842,6 +23142,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21849,6 +23150,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21856,6 +23158,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21863,6 +23166,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21870,12 +23174,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21889,12 +23195,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21902,6 +23210,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21909,6 +23218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21916,6 +23226,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21983,6 +23294,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21990,6 +23302,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -21997,6 +23310,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22004,6 +23318,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22029,12 +23344,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22042,6 +23359,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22049,6 +23367,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22056,6 +23375,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22063,6 +23383,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -22111,6 +23432,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22118,6 +23440,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22125,6 +23448,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22132,6 +23456,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22139,6 +23464,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -22165,6 +23491,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22172,6 +23499,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22179,6 +23507,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22186,6 +23515,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22193,12 +23523,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22212,12 +23544,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22225,6 +23559,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22232,6 +23567,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22239,6 +23575,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22306,6 +23643,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22313,6 +23651,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22320,6 +23659,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22327,6 +23667,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22352,12 +23693,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22365,6 +23708,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22372,6 +23716,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22379,6 +23724,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22386,6 +23732,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -22434,6 +23781,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22441,6 +23789,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22448,6 +23797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22455,6 +23805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22462,6 +23813,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -22488,6 +23840,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22495,6 +23848,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22502,6 +23856,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22509,6 +23864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22516,12 +23872,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22535,12 +23893,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22548,6 +23908,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22555,6 +23916,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22622,6 +23984,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22629,6 +23992,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22636,6 +24000,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22661,12 +24026,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22674,6 +24041,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22681,6 +24049,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22688,6 +24057,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -22736,6 +24106,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22743,6 +24114,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22750,6 +24122,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22757,6 +24130,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -22783,6 +24157,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22790,6 +24165,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22797,6 +24173,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22804,12 +24181,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22823,12 +24202,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22836,6 +24217,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22843,6 +24225,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22910,6 +24293,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22917,6 +24301,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22924,6 +24309,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22949,12 +24335,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22962,6 +24350,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22969,6 +24358,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -22976,6 +24366,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -23024,6 +24415,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23031,6 +24423,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23038,6 +24431,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23045,6 +24439,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -23071,6 +24466,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23078,6 +24474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23085,6 +24482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23092,12 +24490,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23111,12 +24511,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23124,6 +24526,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23187,6 +24590,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23194,6 +24598,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23219,12 +24624,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23232,6 +24639,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23239,6 +24647,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -23286,6 +24695,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23293,6 +24703,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23300,6 +24711,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -23326,6 +24738,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23333,6 +24746,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23340,12 +24754,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23359,12 +24775,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23372,6 +24790,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23556,6 +24975,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23563,6 +24983,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23588,12 +25009,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.calendarView_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23601,6 +25024,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23608,6 +25032,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23749,6 +25174,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23756,6 +25182,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23763,6 +25190,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23789,6 +25217,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23796,6 +25225,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23803,12 +25233,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23822,12 +25254,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23835,6 +25269,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23842,6 +25277,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23920,6 +25356,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23927,6 +25364,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23934,6 +25372,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23959,12 +25398,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23972,6 +25413,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23979,6 +25421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -23986,6 +25429,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -24038,6 +25482,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24045,6 +25490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24052,6 +25498,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24059,6 +25506,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -24085,6 +25533,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24092,6 +25541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24099,6 +25549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24106,12 +25557,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24125,12 +25578,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24138,6 +25593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24145,6 +25601,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24233,6 +25690,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24240,6 +25698,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24247,6 +25706,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24450,6 +25910,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24457,6 +25918,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24464,6 +25926,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24495,6 +25958,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24502,6 +25966,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24509,6 +25974,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24516,6 +25982,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24683,6 +26150,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24690,6 +26158,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24697,6 +26166,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24704,6 +26174,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24730,6 +26201,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24737,6 +26209,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24744,6 +26217,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24751,12 +26225,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24770,12 +26246,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.instances.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24783,6 +26261,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24790,6 +26269,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24797,6 +26277,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24875,6 +26356,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24882,6 +26364,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24889,6 +26372,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24896,6 +26380,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24921,12 +26406,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.calendarView.instances.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24934,6 +26421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24941,6 +26429,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24948,6 +26437,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -24955,6 +26445,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -25007,6 +26498,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25014,6 +26506,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25021,6 +26514,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25028,6 +26522,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25035,6 +26530,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -25061,6 +26557,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25068,6 +26565,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25075,6 +26573,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25082,6 +26581,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25089,12 +26589,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25108,12 +26610,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendarView.instances.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25121,6 +26625,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25128,6 +26633,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25135,6 +26641,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25222,12 +26729,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.instances.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25235,6 +26744,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25242,6 +26752,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25249,6 +26760,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25312,6 +26824,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25319,6 +26832,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25326,6 +26840,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25333,6 +26848,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25358,12 +26874,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.instances.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25371,6 +26889,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25378,6 +26897,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25385,6 +26905,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25392,6 +26913,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -25439,6 +26961,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25446,6 +26969,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25453,6 +26977,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25460,6 +26985,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25467,6 +26993,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -25493,6 +27020,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25500,6 +27028,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25507,6 +27036,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25514,6 +27044,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25521,12 +27052,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25540,12 +27073,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25553,6 +27088,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25560,6 +27096,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25567,6 +27104,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25634,6 +27172,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25641,6 +27180,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25648,6 +27188,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25655,6 +27196,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25680,12 +27222,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25693,6 +27237,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25700,6 +27245,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25707,6 +27253,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25714,6 +27261,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -25762,6 +27310,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25769,6 +27318,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25776,6 +27326,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25783,6 +27334,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25790,6 +27342,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -25816,6 +27369,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25823,6 +27377,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25830,6 +27385,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25837,6 +27393,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25844,12 +27401,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25863,12 +27422,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25876,6 +27437,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25883,6 +27445,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25890,6 +27453,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25957,6 +27521,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25964,6 +27529,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25971,6 +27537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -25978,6 +27545,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26003,12 +27571,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26016,6 +27586,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26023,6 +27594,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26030,6 +27602,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26037,6 +27610,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -26085,6 +27659,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26092,6 +27667,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26099,6 +27675,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26106,6 +27683,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26113,6 +27691,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -26139,6 +27718,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26146,6 +27726,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26153,6 +27734,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26160,6 +27742,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26167,12 +27750,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26186,12 +27771,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26199,6 +27786,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26206,6 +27794,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26269,6 +27858,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26276,6 +27866,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26283,6 +27874,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26308,12 +27900,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendarView.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26321,6 +27915,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26328,6 +27923,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26335,6 +27931,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -26382,6 +27979,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26389,6 +27987,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26396,6 +27995,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26403,6 +28003,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -26429,6 +28030,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26436,6 +28038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26443,6 +28046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26450,12 +28054,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26469,12 +28075,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26482,6 +28090,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26489,6 +28098,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26556,6 +28166,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26563,6 +28174,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26570,6 +28182,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26595,12 +28208,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26608,6 +28223,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26615,6 +28231,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26622,6 +28239,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -26670,6 +28288,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26677,6 +28296,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26684,6 +28304,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26691,6 +28312,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -26717,6 +28339,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26724,6 +28347,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26731,6 +28355,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26738,12 +28363,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26757,12 +28384,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26770,6 +28399,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26777,6 +28407,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26844,6 +28475,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26851,6 +28483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26858,6 +28491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26883,12 +28517,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26896,6 +28532,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26903,6 +28540,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26910,6 +28548,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -26958,6 +28597,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26965,6 +28605,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26972,6 +28613,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -26979,6 +28621,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -27005,6 +28648,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27012,6 +28656,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27019,6 +28664,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27026,12 +28672,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27045,12 +28693,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27058,6 +28708,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27125,6 +28776,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27132,6 +28784,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27157,12 +28810,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27170,6 +28825,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27177,6 +28833,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -27225,6 +28882,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27232,6 +28890,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27239,6 +28898,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -27265,6 +28925,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27272,6 +28933,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27279,12 +28941,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27298,12 +28962,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27311,6 +28977,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27378,6 +29045,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27385,6 +29053,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27410,12 +29079,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.calendarView_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27423,6 +29094,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27430,6 +29102,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -27478,6 +29151,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27485,6 +29159,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27492,6 +29167,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -27518,6 +29194,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27525,6 +29202,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27532,12 +29210,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27551,12 +29231,14 @@ paths: tags: - groups.event summary: Get events from groups + description: The group's events. operationId: groups_ListEvents parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27741,6 +29423,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27766,12 +29449,14 @@ paths: tags: - groups.event summary: Get events from groups + description: The group's events. operationId: groups_GetEvents parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27779,6 +29464,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27913,6 +29599,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27920,6 +29607,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -27946,6 +29634,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27953,12 +29642,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27972,12 +29663,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27985,6 +29678,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28063,6 +29757,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28070,6 +29765,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28095,12 +29791,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28108,6 +29806,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28115,6 +29814,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -28167,6 +29867,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28174,6 +29875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28181,6 +29883,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -28207,6 +29910,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28214,6 +29918,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28221,12 +29926,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28240,12 +29947,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28253,6 +29962,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28336,6 +30046,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28343,6 +30054,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28546,6 +30258,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28553,6 +30266,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28584,6 +30298,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28591,6 +30306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28598,6 +30314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28758,6 +30475,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28765,6 +30483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28772,6 +30491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28798,6 +30518,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28805,6 +30526,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28812,12 +30534,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28831,12 +30555,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28844,6 +30570,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28851,6 +30578,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28929,6 +30657,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28936,6 +30665,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28943,6 +30673,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28968,12 +30699,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28981,6 +30714,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28988,6 +30722,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -28995,6 +30730,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -29047,6 +30783,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29054,6 +30791,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29061,6 +30799,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29068,6 +30807,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -29094,6 +30834,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29101,6 +30842,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29108,6 +30850,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29115,12 +30858,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29134,12 +30879,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29147,6 +30894,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29154,6 +30902,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29236,12 +30985,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29249,6 +31000,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29256,6 +31008,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29319,6 +31072,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29326,6 +31080,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29333,6 +31088,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29358,12 +31114,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29371,6 +31129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29378,6 +31137,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29385,6 +31145,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -29432,6 +31193,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29439,6 +31201,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29446,6 +31209,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29453,6 +31217,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -29479,6 +31244,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29486,6 +31252,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29493,6 +31260,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29500,12 +31268,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29519,12 +31289,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events.exceptionOccurrences_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29532,6 +31304,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29539,6 +31312,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29723,6 +31497,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29730,6 +31505,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29737,6 +31513,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29762,12 +31539,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events.exceptionOccurrences_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29775,6 +31554,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29782,6 +31562,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29789,6 +31570,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29937,6 +31719,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29944,6 +31727,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29951,6 +31735,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29958,6 +31743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29984,6 +31770,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29991,6 +31778,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -29998,6 +31786,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30005,12 +31794,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30024,12 +31815,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.exceptionOccurrences.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30037,6 +31830,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30044,6 +31838,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30051,6 +31846,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30129,6 +31925,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30136,6 +31933,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30143,6 +31941,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30150,6 +31949,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30175,12 +31975,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.exceptionOccurrences.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30188,6 +31990,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30195,6 +31998,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30202,6 +32006,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30209,6 +32014,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -30261,6 +32067,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30268,6 +32075,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30275,6 +32083,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30282,6 +32091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30289,6 +32099,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -30315,6 +32126,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30322,6 +32134,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30329,6 +32142,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30336,6 +32150,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30343,12 +32158,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30362,12 +32179,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events.exceptionOccurrences.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30375,6 +32194,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30382,6 +32202,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30389,6 +32210,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30476,12 +32298,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.exceptionOccurrences.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30489,6 +32313,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30496,6 +32321,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30503,6 +32329,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30566,6 +32393,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30573,6 +32401,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30580,6 +32409,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30587,6 +32417,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30612,12 +32443,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.exceptionOccurrences.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30625,6 +32458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30632,6 +32466,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30639,6 +32474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30646,6 +32482,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -30693,6 +32530,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30700,6 +32538,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30707,6 +32546,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30714,6 +32554,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30721,6 +32562,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -30747,6 +32589,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30754,6 +32597,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30761,6 +32605,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30768,6 +32613,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30775,12 +32621,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30794,12 +32642,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30807,6 +32657,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30814,6 +32665,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30821,6 +32673,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30888,6 +32741,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30895,6 +32749,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30902,6 +32757,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30909,6 +32765,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30934,12 +32791,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30947,6 +32806,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30954,6 +32814,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30961,6 +32822,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -30968,6 +32830,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -31016,6 +32879,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31023,6 +32887,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31030,6 +32895,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31037,6 +32903,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31044,6 +32911,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -31070,6 +32938,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31077,6 +32946,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31084,6 +32954,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31091,6 +32962,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31098,12 +32970,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31117,12 +32991,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31130,6 +33006,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31137,6 +33014,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31144,6 +33022,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31211,6 +33090,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31218,6 +33098,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31225,6 +33106,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31232,6 +33114,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31257,12 +33140,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31270,6 +33155,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31277,6 +33163,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31284,6 +33171,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31291,6 +33179,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -31339,6 +33228,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31346,6 +33236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31353,6 +33244,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31360,6 +33252,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31367,6 +33260,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -31393,6 +33287,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31400,6 +33295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31407,6 +33303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31414,6 +33311,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31421,12 +33319,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31440,12 +33340,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31453,6 +33355,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31460,6 +33363,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31527,6 +33431,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31534,6 +33439,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31541,6 +33447,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31566,12 +33473,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31579,6 +33488,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31586,6 +33496,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31593,6 +33504,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -31641,6 +33553,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31648,6 +33561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31655,6 +33569,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31662,6 +33577,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -31688,6 +33604,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31695,6 +33612,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31702,6 +33620,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31709,12 +33628,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31728,12 +33649,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31741,6 +33664,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31748,6 +33672,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31815,6 +33740,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31822,6 +33748,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31829,6 +33756,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31854,12 +33782,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31867,6 +33797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31874,6 +33805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31881,6 +33813,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -31929,6 +33862,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31936,6 +33870,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31943,6 +33878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31950,6 +33886,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -31976,6 +33913,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31983,6 +33921,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31990,6 +33929,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -31997,12 +33937,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32016,12 +33958,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32029,6 +33973,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32092,6 +34037,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32099,6 +34045,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32124,12 +34071,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32137,6 +34086,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32144,6 +34094,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -32191,6 +34142,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32198,6 +34150,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32205,6 +34158,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -32231,6 +34185,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32238,6 +34193,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32245,12 +34201,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32264,12 +34222,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_ListInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32277,6 +34237,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32461,6 +34422,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32468,6 +34430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32493,12 +34456,14 @@ paths: tags: - groups.event summary: Get instances from groups + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: groups.events_GetInstances parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32506,6 +34471,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32513,6 +34479,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32654,6 +34621,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32661,6 +34629,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32668,6 +34637,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32694,6 +34664,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32701,6 +34672,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32708,12 +34680,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32727,12 +34701,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.instances_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32740,6 +34716,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32747,6 +34724,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32825,6 +34803,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32832,6 +34811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32839,6 +34819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32864,12 +34845,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.instances_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32877,6 +34860,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32884,6 +34868,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32891,6 +34876,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -32943,6 +34929,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32950,6 +34937,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32957,6 +34945,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -32964,6 +34953,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -32990,6 +34980,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32997,6 +34988,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33004,6 +34996,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33011,12 +35004,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33030,12 +35025,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events.instances_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33043,6 +35040,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33050,6 +35048,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33138,6 +35137,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33145,6 +35145,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33152,6 +35153,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33355,6 +35357,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33362,6 +35365,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33369,6 +35373,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33400,6 +35405,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33407,6 +35413,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33414,6 +35421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33421,6 +35429,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33588,6 +35597,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33595,6 +35605,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33602,6 +35613,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33609,6 +35621,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33635,6 +35648,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33642,6 +35656,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33649,6 +35664,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33656,12 +35672,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33675,12 +35693,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.instances.exceptionOccurrences_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33688,6 +35708,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33695,6 +35716,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33702,6 +35724,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33780,6 +35803,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33787,6 +35811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33794,6 +35819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33801,6 +35827,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33826,12 +35853,14 @@ paths: tags: - groups.event summary: Get attachments from groups + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: groups.events.instances.exceptionOccurrences_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33839,6 +35868,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33846,6 +35876,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33853,6 +35884,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33860,6 +35892,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -33912,6 +35945,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33919,6 +35953,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33926,6 +35961,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33933,6 +35969,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33940,6 +35977,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -33966,6 +36004,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33973,6 +36012,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33980,6 +36020,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33987,6 +36028,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -33994,12 +36036,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34013,12 +36057,14 @@ paths: tags: - groups.event summary: Get calendar from groups + description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events.instances.exceptionOccurrences_GetCalendar parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34026,6 +36072,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34033,6 +36080,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34040,6 +36088,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34127,12 +36176,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.instances.exceptionOccurrences_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34140,6 +36191,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34147,6 +36199,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34154,6 +36207,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34217,6 +36271,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34224,6 +36279,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34231,6 +36287,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34238,6 +36295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34263,12 +36321,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.instances.exceptionOccurrences_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34276,6 +36336,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34283,6 +36344,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34290,6 +36352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34297,6 +36360,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -34344,6 +36408,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34351,6 +36416,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34358,6 +36424,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34365,6 +36432,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34372,6 +36440,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -34398,6 +36467,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34405,6 +36475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34412,6 +36483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34419,6 +36491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34426,12 +36499,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34445,12 +36520,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34458,6 +36535,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34465,6 +36543,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34472,6 +36551,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34539,6 +36619,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34546,6 +36627,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34553,6 +36635,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34560,6 +36643,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34585,12 +36669,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34598,6 +36684,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34605,6 +36692,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34612,6 +36700,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34619,6 +36708,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -34667,6 +36757,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34674,6 +36765,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34681,6 +36773,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34688,6 +36781,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34695,6 +36789,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -34721,6 +36816,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34728,6 +36824,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34735,6 +36832,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34742,6 +36840,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34749,12 +36848,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34768,12 +36869,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34781,6 +36884,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34788,6 +36892,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34795,6 +36900,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34862,6 +36968,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34869,6 +36976,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34876,6 +36984,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34883,6 +36992,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34908,12 +37018,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34921,6 +37033,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34928,6 +37041,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34935,6 +37049,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -34942,6 +37057,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -34990,6 +37106,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34997,6 +37114,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35004,6 +37122,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35011,6 +37130,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35018,6 +37138,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -35044,6 +37165,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35051,6 +37173,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35058,6 +37181,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35065,6 +37189,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35072,12 +37197,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35091,12 +37218,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.instances_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35104,6 +37233,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35111,6 +37241,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35174,6 +37305,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35181,6 +37313,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35188,6 +37321,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35213,12 +37347,14 @@ paths: tags: - groups.event summary: Get extensions from groups + description: The collection of open extensions defined for the event. Nullable. operationId: groups.events.instances_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35226,6 +37362,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35233,6 +37370,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35240,6 +37378,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -35287,6 +37426,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35294,6 +37434,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35301,6 +37442,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35308,6 +37450,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -35334,6 +37477,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35341,6 +37485,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35348,6 +37493,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35355,12 +37501,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35374,12 +37522,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35387,6 +37537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35394,6 +37545,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35461,6 +37613,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35468,6 +37621,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35475,6 +37629,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35500,12 +37655,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35513,6 +37670,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35520,6 +37678,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35527,6 +37686,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -35575,6 +37735,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35582,6 +37743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35589,6 +37751,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35596,6 +37759,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -35622,6 +37786,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35629,6 +37794,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35636,6 +37802,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35643,12 +37810,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35662,12 +37831,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35675,6 +37846,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35682,6 +37854,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35749,6 +37922,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35756,6 +37930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35763,6 +37938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35788,12 +37964,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events.instances_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35801,6 +37979,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35808,6 +37987,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35815,6 +37995,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -35863,6 +38044,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35870,6 +38052,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35877,6 +38060,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35884,6 +38068,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -35910,6 +38095,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35917,6 +38103,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35924,6 +38111,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -35931,12 +38119,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35950,12 +38140,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35963,6 +38155,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36030,6 +38223,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36037,6 +38231,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36062,12 +38257,14 @@ paths: tags: - groups.event summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36075,6 +38272,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36082,6 +38280,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -36130,6 +38329,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36137,6 +38337,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36144,6 +38345,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -36170,6 +38372,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36177,6 +38380,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36184,12 +38388,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36203,12 +38409,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36216,6 +38424,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36283,6 +38492,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36290,6 +38500,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36315,12 +38526,14 @@ paths: tags: - groups.event summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: groups.events_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36328,6 +38541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36335,6 +38549,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -36383,6 +38598,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36390,6 +38606,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36397,6 +38614,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -36423,6 +38641,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36430,6 +38649,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -36437,12 +38657,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36456,6 +38678,7 @@ paths: tags: - places.place summary: Get place + description: 'Get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: The **room**, **workspace**, and **roomList** resources are derived from the **place** object.' operationId: places.place_ListPlace parameters: - $ref: '#/components/parameters/top' @@ -36548,12 +38771,14 @@ paths: tags: - places.place summary: Get place + description: 'Get the properties and relationships of a place object specified by either its ID or email address. The **place** object can be one of the following types: The **room**, **workspace**, and **roomList** resources are derived from the **place** object.' operationId: places.place_GetPlace parameters: - name: place-id in: path description: 'key: id of place' required: true + style: simple schema: type: string x-ms-docs-key-type: place @@ -36599,12 +38824,14 @@ paths: tags: - places.place summary: Update place + description: 'Update the properties of place object, which can be a room, workspace, or roomList. You can identify the **room**, **workspace**, or **roomList** by specifying the **id** or **emailAddress** property.' operationId: places.place_UpdatePlace parameters: - name: place-id in: path description: 'key: id of place' required: true + style: simple schema: type: string x-ms-docs-key-type: place @@ -36631,12 +38858,14 @@ paths: in: path description: 'key: id of place' required: true + style: simple schema: type: string x-ms-docs-key-type: place - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36650,12 +38879,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The user's primary calendar. Read-only. operationId: users_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36737,6 +38968,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36763,12 +38995,14 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36782,12 +39016,14 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_ListCalendarPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36854,6 +39090,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36879,12 +39116,14 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendar_GetCalendarPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36892,6 +39131,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -36932,6 +39172,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36939,6 +39180,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -36965,6 +39207,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -36972,12 +39215,14 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36991,12 +39236,14 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_ListCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37004,12 +39251,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - $ref: '#/components/parameters/top' @@ -37193,6 +39444,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37218,12 +39470,14 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendar_GetCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37231,6 +39485,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37238,12 +39493,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: $select @@ -37377,6 +39636,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37384,6 +39644,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37410,6 +39671,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37417,12 +39679,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37436,12 +39700,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37449,6 +39715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37527,6 +39794,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37534,6 +39802,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37559,12 +39828,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37572,6 +39843,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37579,6 +39851,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -37631,6 +39904,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37638,6 +39912,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37645,6 +39920,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -37671,6 +39947,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37678,6 +39955,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37685,12 +39963,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37704,12 +39984,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37717,6 +39999,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -37800,6 +40083,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -37807,6 +40091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38010,6 +40295,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38017,6 +40303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38048,6 +40335,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38055,6 +40343,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38062,6 +40351,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38222,6 +40512,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38229,6 +40520,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38236,6 +40528,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38262,6 +40555,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38269,6 +40563,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38276,12 +40571,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38295,12 +40592,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38308,6 +40607,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38315,6 +40615,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38393,6 +40694,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38400,6 +40702,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38407,6 +40710,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38432,12 +40736,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38445,6 +40751,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38452,6 +40759,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38459,6 +40767,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -38511,6 +40820,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38518,6 +40828,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38525,6 +40836,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38532,6 +40844,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -38558,6 +40871,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38565,6 +40879,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38572,6 +40887,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38579,12 +40895,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38598,12 +40916,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38611,6 +40931,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38618,6 +40939,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38700,12 +41022,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38713,6 +41037,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38720,6 +41045,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38783,6 +41109,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38790,6 +41117,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38797,6 +41125,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38822,12 +41151,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38835,6 +41166,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38842,6 +41174,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38849,6 +41182,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -38896,6 +41230,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38903,6 +41238,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38910,6 +41246,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38917,6 +41254,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -38943,6 +41281,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38950,6 +41289,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38957,6 +41297,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -38964,12 +41305,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38983,12 +41326,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -38996,6 +41341,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39003,6 +41349,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39187,6 +41534,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39194,6 +41542,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39201,6 +41550,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39226,12 +41576,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39239,6 +41591,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39246,6 +41599,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39253,6 +41607,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39401,6 +41756,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39408,6 +41764,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39415,6 +41772,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39422,6 +41780,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39448,6 +41807,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39455,6 +41815,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39462,6 +41823,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39469,12 +41831,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39488,12 +41852,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39501,6 +41867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39508,6 +41875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39515,6 +41883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39593,6 +41962,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39600,6 +41970,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39607,6 +41978,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39614,6 +41986,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39639,12 +42012,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39652,6 +42027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39659,6 +42035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39666,6 +42043,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39673,6 +42051,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -39725,6 +42104,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39732,6 +42112,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39739,6 +42120,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39746,6 +42128,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39753,6 +42136,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -39779,6 +42163,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39786,6 +42171,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39793,6 +42179,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39800,6 +42187,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39807,12 +42195,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39826,12 +42216,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39839,6 +42231,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39846,6 +42239,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39853,6 +42247,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39940,12 +42335,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -39953,6 +42350,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39960,6 +42358,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -39967,6 +42366,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40030,6 +42430,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40037,6 +42438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40044,6 +42446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40051,6 +42454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40076,12 +42480,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40089,6 +42495,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40096,6 +42503,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40103,6 +42511,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40110,6 +42519,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -40157,6 +42567,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40164,6 +42575,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40171,6 +42583,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40178,6 +42591,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40185,6 +42599,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -40211,6 +42626,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40218,6 +42634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40225,6 +42642,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40232,6 +42650,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40239,12 +42658,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40258,12 +42679,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40271,6 +42694,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40278,6 +42702,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40285,6 +42710,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40352,6 +42778,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40359,6 +42786,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40366,6 +42794,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40373,6 +42802,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40398,12 +42828,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40411,6 +42843,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40418,6 +42851,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40425,6 +42859,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40432,6 +42867,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -40480,6 +42916,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40487,6 +42924,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40494,6 +42932,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40501,6 +42940,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40508,6 +42948,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -40534,6 +42975,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40541,6 +42983,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40548,6 +42991,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40555,6 +42999,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40562,12 +43007,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40581,12 +43028,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40594,6 +43043,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40601,6 +43051,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40608,6 +43059,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40675,6 +43127,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40682,6 +43135,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40689,6 +43143,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40696,6 +43151,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40721,12 +43177,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40734,6 +43192,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40741,6 +43200,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40748,6 +43208,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40755,6 +43216,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -40803,6 +43265,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40810,6 +43273,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40817,6 +43281,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40824,6 +43289,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40831,6 +43297,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -40857,6 +43324,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40864,6 +43332,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40871,6 +43340,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40878,6 +43348,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40885,12 +43356,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40904,12 +43377,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40917,6 +43392,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40924,6 +43400,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -40991,6 +43468,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -40998,6 +43476,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41005,6 +43484,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41030,12 +43510,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41043,6 +43525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41050,6 +43533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41057,6 +43541,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -41105,6 +43590,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41112,6 +43598,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41119,6 +43606,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41126,6 +43614,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -41152,6 +43641,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41159,6 +43649,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41166,6 +43657,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41173,12 +43665,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41192,12 +43686,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41205,6 +43701,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41212,6 +43709,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41279,6 +43777,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41286,6 +43785,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41293,6 +43793,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41318,12 +43819,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41331,6 +43834,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41338,6 +43842,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41345,6 +43850,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -41393,6 +43899,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41400,6 +43907,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41407,6 +43915,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41414,6 +43923,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -41440,6 +43950,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41447,6 +43958,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41454,6 +43966,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41461,12 +43974,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41480,12 +43995,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41493,6 +44010,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41556,6 +44074,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41563,6 +44082,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41588,12 +44108,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41601,6 +44123,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41608,6 +44131,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -41655,6 +44179,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41662,6 +44187,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41669,6 +44195,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -41695,6 +44222,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41702,6 +44230,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41709,12 +44238,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41728,12 +44259,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41741,6 +44274,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41925,6 +44459,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41932,6 +44467,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41957,12 +44493,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -41970,6 +44508,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -41977,6 +44516,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42118,6 +44658,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42125,6 +44666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42132,6 +44674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42158,6 +44701,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42165,6 +44709,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42172,12 +44717,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42191,12 +44738,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42204,6 +44753,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42211,6 +44761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42289,6 +44840,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42296,6 +44848,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42303,6 +44856,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42328,12 +44882,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42341,6 +44897,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42348,6 +44905,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42355,6 +44913,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -42407,6 +44966,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42414,6 +44974,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42421,6 +44982,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42428,6 +44990,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -42454,6 +45017,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42461,6 +45025,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42468,6 +45033,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42475,12 +45041,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42494,12 +45062,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42507,6 +45077,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42514,6 +45085,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42602,6 +45174,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42609,6 +45182,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42616,6 +45190,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42819,6 +45394,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42826,6 +45402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42833,6 +45410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42864,6 +45442,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -42871,6 +45450,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42878,6 +45458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -42885,6 +45466,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43052,6 +45634,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43059,6 +45642,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43066,6 +45650,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43073,6 +45658,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43099,6 +45685,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43106,6 +45693,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43113,6 +45701,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43120,12 +45709,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43139,12 +45730,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43152,6 +45745,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43159,6 +45753,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43166,6 +45761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43244,6 +45840,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43251,6 +45848,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43258,6 +45856,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43265,6 +45864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43290,12 +45890,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.calendarView.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43303,6 +45905,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43310,6 +45913,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43317,6 +45921,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43324,6 +45929,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -43376,6 +45982,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43383,6 +45990,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43390,6 +45998,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43397,6 +46006,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43404,6 +46014,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -43430,6 +46041,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43437,6 +46049,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43444,6 +46057,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43451,6 +46065,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43458,12 +46073,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43477,12 +46094,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.calendarView.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43490,6 +46109,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43497,6 +46117,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43504,6 +46125,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43591,12 +46213,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43604,6 +46228,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43611,6 +46236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43618,6 +46244,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43681,6 +46308,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43688,6 +46316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43695,6 +46324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43702,6 +46332,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43727,12 +46358,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43740,6 +46373,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43747,6 +46381,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43754,6 +46389,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43761,6 +46397,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -43808,6 +46445,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43815,6 +46453,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43822,6 +46461,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43829,6 +46469,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43836,6 +46477,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -43862,6 +46504,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43869,6 +46512,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43876,6 +46520,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43883,6 +46528,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43890,12 +46536,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43909,12 +46557,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -43922,6 +46572,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43929,6 +46580,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -43936,6 +46588,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44003,6 +46656,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44010,6 +46664,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44017,6 +46672,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44024,6 +46680,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44049,12 +46706,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44062,6 +46721,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44069,6 +46729,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44076,6 +46737,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44083,6 +46745,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -44131,6 +46794,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44138,6 +46802,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44145,6 +46810,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44152,6 +46818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44159,6 +46826,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -44185,6 +46853,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44192,6 +46861,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44199,6 +46869,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44206,6 +46877,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44213,12 +46885,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44232,12 +46906,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44245,6 +46921,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44252,6 +46929,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44259,6 +46937,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44326,6 +47005,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44333,6 +47013,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44340,6 +47021,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44347,6 +47029,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44372,12 +47055,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44385,6 +47070,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44392,6 +47078,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44399,6 +47086,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44406,6 +47094,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -44454,6 +47143,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44461,6 +47151,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44468,6 +47159,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44475,6 +47167,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44482,6 +47175,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -44508,6 +47202,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44515,6 +47210,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44522,6 +47218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44529,6 +47226,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44536,12 +47234,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44555,12 +47255,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44568,6 +47270,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44575,6 +47278,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44638,6 +47342,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44645,6 +47350,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44652,6 +47358,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44677,12 +47384,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.calendarView.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44690,6 +47399,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44697,6 +47407,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44704,6 +47415,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -44751,6 +47463,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44758,6 +47471,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44765,6 +47479,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44772,6 +47487,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -44798,6 +47514,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44805,6 +47522,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44812,6 +47530,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44819,12 +47538,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44838,12 +47559,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44851,6 +47574,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44858,6 +47582,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44925,6 +47650,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44932,6 +47658,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44939,6 +47666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44964,12 +47692,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -44977,6 +47707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44984,6 +47715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -44991,6 +47723,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -45039,6 +47772,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45046,6 +47780,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45053,6 +47788,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45060,6 +47796,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -45086,6 +47823,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45093,6 +47831,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45100,6 +47839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45107,12 +47847,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45126,12 +47868,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45139,6 +47883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45146,6 +47891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45213,6 +47959,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45220,6 +47967,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45227,6 +47975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45252,12 +48001,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45265,6 +48016,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45272,6 +48024,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45279,6 +48032,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -45327,6 +48081,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45334,6 +48089,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45341,6 +48097,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45348,6 +48105,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -45374,6 +48132,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45381,6 +48140,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45388,6 +48148,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45395,12 +48156,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45414,12 +48177,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45427,6 +48192,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45494,6 +48260,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45501,6 +48268,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45526,12 +48294,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45539,6 +48309,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45546,6 +48317,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -45594,6 +48366,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45601,6 +48374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45608,6 +48382,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -45634,6 +48409,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45641,6 +48417,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45648,12 +48425,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45667,12 +48446,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45680,6 +48461,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45747,6 +48529,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45754,6 +48537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45779,12 +48563,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45792,6 +48578,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45799,6 +48586,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -45847,6 +48635,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45854,6 +48643,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45861,6 +48651,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -45887,6 +48678,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45894,6 +48686,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -45901,12 +48694,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45920,12 +48715,14 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_ListEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46110,6 +48907,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46135,12 +48933,14 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendar_GetEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46148,6 +48948,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46282,6 +49083,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46289,6 +49091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46315,6 +49118,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46322,12 +49126,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46341,12 +49147,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46354,6 +49162,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46432,6 +49241,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46439,6 +49249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46464,12 +49275,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46477,6 +49290,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46484,6 +49298,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -46536,6 +49351,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46543,6 +49359,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46550,6 +49367,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -46576,6 +49394,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46583,6 +49402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46590,12 +49410,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46609,12 +49431,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46622,6 +49446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46705,6 +49530,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46712,6 +49538,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46915,6 +49742,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46922,6 +49750,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46953,6 +49782,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46960,6 +49790,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -46967,6 +49798,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47127,6 +49959,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47134,6 +49967,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47141,6 +49975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47167,6 +50002,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47174,6 +50010,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47181,12 +50018,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47200,12 +50039,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47213,6 +50054,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47220,6 +50062,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47298,6 +50141,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47305,6 +50149,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47312,6 +50157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47337,12 +50183,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47350,6 +50198,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47357,6 +50206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47364,6 +50214,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -47416,6 +50267,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47423,6 +50275,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47430,6 +50283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47437,6 +50291,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -47463,6 +50318,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47470,6 +50326,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47477,6 +50334,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47484,12 +50342,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47503,12 +50363,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47516,6 +50378,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47523,6 +50386,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47605,12 +50469,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47618,6 +50484,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47625,6 +50492,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47688,6 +50556,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47695,6 +50564,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47702,6 +50572,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47727,12 +50598,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47740,6 +50613,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47747,6 +50621,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47754,6 +50629,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -47801,6 +50677,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47808,6 +50685,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47815,6 +50693,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47822,6 +50701,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -47848,6 +50728,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47855,6 +50736,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47862,6 +50744,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47869,12 +50752,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47888,12 +50773,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47901,6 +50788,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -47908,6 +50796,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48092,6 +50981,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48099,6 +50989,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48106,6 +50997,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48131,12 +51023,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48144,6 +51038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48151,6 +51046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48158,6 +51054,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48306,6 +51203,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48313,6 +51211,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48320,6 +51219,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48327,6 +51227,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48353,6 +51254,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48360,6 +51262,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48367,6 +51270,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48374,12 +51278,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -48393,12 +51299,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48406,6 +51314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48413,6 +51322,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48420,6 +51330,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48498,6 +51409,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48505,6 +51417,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48512,6 +51425,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48519,6 +51433,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48544,12 +51459,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48557,6 +51474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48564,6 +51482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48571,6 +51490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48578,6 +51498,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -48630,6 +51551,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48637,6 +51559,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48644,6 +51567,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48651,6 +51575,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48658,6 +51583,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -48684,6 +51610,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48691,6 +51618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48698,6 +51626,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48705,6 +51634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48712,12 +51642,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -48731,12 +51663,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48744,6 +51678,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48751,6 +51686,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48758,6 +51694,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48845,12 +51782,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48858,6 +51797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48865,6 +51805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48872,6 +51813,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48935,6 +51877,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48942,6 +51885,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48949,6 +51893,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48956,6 +51901,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -48981,12 +51927,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48994,6 +51942,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49001,6 +51950,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49008,6 +51958,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49015,6 +51966,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -49062,6 +52014,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49069,6 +52022,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49076,6 +52030,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49083,6 +52038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49090,6 +52046,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -49116,6 +52073,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49123,6 +52081,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49130,6 +52089,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49137,6 +52097,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49144,12 +52105,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49163,12 +52126,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49176,6 +52141,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49183,6 +52149,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49190,6 +52157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49257,6 +52225,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49264,6 +52233,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49271,6 +52241,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49278,6 +52249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49303,12 +52275,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49316,6 +52290,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49323,6 +52298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49330,6 +52306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49337,6 +52314,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -49385,6 +52363,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49392,6 +52371,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49399,6 +52379,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49406,6 +52387,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49413,6 +52395,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -49439,6 +52422,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49446,6 +52430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49453,6 +52438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49460,6 +52446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49467,12 +52454,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49486,12 +52475,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49499,6 +52490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49506,6 +52498,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49513,6 +52506,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49580,6 +52574,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49587,6 +52582,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49594,6 +52590,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49601,6 +52598,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49626,12 +52624,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49639,6 +52639,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49646,6 +52647,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49653,6 +52655,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49660,6 +52663,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -49708,6 +52712,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49715,6 +52720,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49722,6 +52728,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49729,6 +52736,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49736,6 +52744,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -49762,6 +52771,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49769,6 +52779,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49776,6 +52787,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49783,6 +52795,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49790,12 +52803,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49809,12 +52824,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49822,6 +52839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49829,6 +52847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49896,6 +52915,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49903,6 +52923,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49910,6 +52931,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49935,12 +52957,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49948,6 +52972,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49955,6 +52980,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -49962,6 +52988,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -50010,6 +53037,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50017,6 +53045,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50024,6 +53053,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50031,6 +53061,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -50057,6 +53088,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50064,6 +53096,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50071,6 +53104,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50078,12 +53112,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50097,12 +53133,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50110,6 +53148,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50117,6 +53156,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50184,6 +53224,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50191,6 +53232,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50198,6 +53240,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50223,12 +53266,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50236,6 +53281,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50243,6 +53289,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50250,6 +53297,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -50298,6 +53346,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50305,6 +53354,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50312,6 +53362,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50319,6 +53370,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -50345,6 +53397,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50352,6 +53405,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50359,6 +53413,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50366,12 +53421,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50385,12 +53442,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50398,6 +53457,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50461,6 +53521,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50468,6 +53529,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50493,12 +53555,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50506,6 +53570,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50513,6 +53578,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -50560,6 +53626,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50567,6 +53634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50574,6 +53642,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -50600,6 +53669,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50607,6 +53677,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50614,12 +53685,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50633,12 +53706,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50646,6 +53721,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50830,6 +53906,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50837,6 +53914,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50862,12 +53940,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendar.events_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50875,6 +53955,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -50882,6 +53963,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51023,6 +54105,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51030,6 +54113,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51037,6 +54121,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51063,6 +54148,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51070,6 +54156,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51077,12 +54164,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51096,12 +54185,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51109,6 +54200,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51116,6 +54208,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51194,6 +54287,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51201,6 +54295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51208,6 +54303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51233,12 +54329,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51246,6 +54344,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51253,6 +54352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51260,6 +54360,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -51312,6 +54413,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51319,6 +54421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51326,6 +54429,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51333,6 +54437,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -51359,6 +54464,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51366,6 +54472,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51373,6 +54480,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51380,12 +54488,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51399,12 +54509,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51412,6 +54524,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51419,6 +54532,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51507,6 +54621,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51514,6 +54629,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51521,6 +54637,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51724,6 +54841,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51731,6 +54849,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51738,6 +54857,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51769,6 +54889,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51776,6 +54897,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51783,6 +54905,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51790,6 +54913,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51957,6 +55081,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51964,6 +55089,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51971,6 +55097,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -51978,6 +55105,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52004,6 +55132,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52011,6 +55140,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52018,6 +55148,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52025,12 +55156,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52044,12 +55177,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52057,6 +55192,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52064,6 +55200,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52071,6 +55208,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52149,6 +55287,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52156,6 +55295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52163,6 +55303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52170,6 +55311,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52195,12 +55337,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendar.events.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52208,6 +55352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52215,6 +55360,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52222,6 +55368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52229,6 +55376,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -52281,6 +55429,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52288,6 +55437,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52295,6 +55445,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52302,6 +55453,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52309,6 +55461,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -52335,6 +55488,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52342,6 +55496,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52349,6 +55504,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52356,6 +55512,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52363,12 +55520,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52382,12 +55541,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendar.events.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52395,6 +55556,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52402,6 +55564,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52409,6 +55572,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52496,12 +55660,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52509,6 +55675,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52516,6 +55683,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52523,6 +55691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52586,6 +55755,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52593,6 +55763,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52600,6 +55771,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52607,6 +55779,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52632,12 +55805,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52645,6 +55820,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52652,6 +55828,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52659,6 +55836,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52666,6 +55844,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -52713,6 +55892,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52720,6 +55900,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52727,6 +55908,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52734,6 +55916,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52741,6 +55924,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -52767,6 +55951,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52774,6 +55959,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52781,6 +55967,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52788,6 +55975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52795,12 +55983,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52814,12 +56004,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52827,6 +56019,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52834,6 +56027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52841,6 +56035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52908,6 +56103,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52915,6 +56111,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52922,6 +56119,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52929,6 +56127,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52954,12 +56153,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52967,6 +56168,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52974,6 +56176,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52981,6 +56184,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -52988,6 +56192,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -53036,6 +56241,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53043,6 +56249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53050,6 +56257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53057,6 +56265,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53064,6 +56273,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -53090,6 +56300,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53097,6 +56308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53104,6 +56316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53111,6 +56324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53118,12 +56332,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53137,12 +56353,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53150,6 +56368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53157,6 +56376,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53164,6 +56384,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53231,6 +56452,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53238,6 +56460,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53245,6 +56468,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53252,6 +56476,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53277,12 +56502,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53290,6 +56517,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53297,6 +56525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53304,6 +56533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53311,6 +56541,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -53359,6 +56590,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53366,6 +56598,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53373,6 +56606,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53380,6 +56614,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53387,6 +56622,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -53413,6 +56649,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53420,6 +56657,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53427,6 +56665,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53434,6 +56673,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53441,12 +56681,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53460,12 +56702,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53473,6 +56717,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53480,6 +56725,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53543,6 +56789,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53550,6 +56797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53557,6 +56805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53582,12 +56831,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendar.events.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53595,6 +56846,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53602,6 +56854,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53609,6 +56862,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -53656,6 +56910,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53663,6 +56918,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53670,6 +56926,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53677,6 +56934,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -53703,6 +56961,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53710,6 +56969,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53717,6 +56977,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53724,12 +56985,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53743,12 +57006,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53756,6 +57021,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53763,6 +57029,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53830,6 +57097,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53837,6 +57105,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53844,6 +57113,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53869,12 +57139,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53882,6 +57154,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53889,6 +57162,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53896,6 +57170,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -53944,6 +57219,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53951,6 +57227,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53958,6 +57235,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -53965,6 +57243,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -53991,6 +57270,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53998,6 +57278,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54005,6 +57286,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54012,12 +57294,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54031,12 +57315,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54044,6 +57330,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54051,6 +57338,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54118,6 +57406,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54125,6 +57414,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54132,6 +57422,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54157,12 +57448,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54170,6 +57463,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54177,6 +57471,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54184,6 +57479,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -54232,6 +57528,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54239,6 +57536,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54246,6 +57544,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54253,6 +57552,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -54279,6 +57579,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54286,6 +57587,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54293,6 +57595,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54300,12 +57603,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54319,12 +57624,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54332,6 +57639,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54399,6 +57707,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54406,6 +57715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54431,12 +57741,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54444,6 +57756,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54451,6 +57764,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -54499,6 +57813,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54506,6 +57821,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54513,6 +57829,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -54539,6 +57856,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54546,6 +57864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54553,12 +57872,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54572,12 +57893,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54585,6 +57908,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54652,6 +57976,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54659,6 +57984,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54684,12 +58010,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendar.events_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54697,6 +58025,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54704,6 +58033,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -54752,6 +58082,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54759,6 +58090,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54766,6 +58098,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -54792,6 +58125,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54799,6 +58133,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -54806,12 +58141,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54825,12 +58162,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54898,6 +58237,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54923,12 +58263,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54936,6 +58278,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -54984,6 +58327,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54991,6 +58335,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -55017,6 +58362,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55024,12 +58370,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55043,12 +58391,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55116,6 +58466,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55141,12 +58492,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendar_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55154,6 +58507,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -55202,6 +58556,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55209,6 +58564,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -55235,6 +58591,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55242,12 +58599,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55261,12 +58620,14 @@ paths: tags: - users.calendarGroup summary: Get calendarGroups from users + description: The user's calendar groups. Read-only. Nullable. operationId: users_ListCalendarGroups parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55328,6 +58689,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55353,12 +58715,14 @@ paths: tags: - users.calendarGroup summary: Get calendarGroups from users + description: The user's calendar groups. Read-only. Nullable. operationId: users_GetCalendarGroups parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55366,6 +58730,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55411,6 +58776,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55418,6 +58784,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55444,6 +58811,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55451,12 +58819,14 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55470,12 +58840,14 @@ paths: tags: - users.calendarGroup summary: Get calendars from users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_ListCalendars parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55483,6 +58855,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55587,6 +58960,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55594,6 +58968,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55619,12 +58994,14 @@ paths: tags: - users.calendarGroup summary: Get calendars from users + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. operationId: users.calendarGroups_GetCalendars parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55632,6 +59009,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55639,6 +59017,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -55730,6 +59109,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55737,6 +59117,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55744,6 +59125,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -55770,6 +59152,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55777,6 +59160,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55784,12 +59168,14 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55803,12 +59189,14 @@ paths: tags: - users.calendarGroup summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_ListCalendarPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55816,6 +59204,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55823,6 +59212,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -55889,6 +59279,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55896,6 +59287,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55903,6 +59295,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -55928,12 +59321,14 @@ paths: tags: - users.calendarGroup summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendarGroups.calendars_GetCalendarPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55941,6 +59336,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -55948,6 +59344,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -55955,6 +59352,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -55995,6 +59393,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56002,6 +59401,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56009,6 +59409,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56016,6 +59417,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -56042,6 +59444,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56049,6 +59452,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56056,6 +59460,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56063,12 +59468,14 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -56082,12 +59489,14 @@ paths: tags: - users.calendarGroup summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_ListCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56095,6 +59504,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56102,6 +59512,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56286,6 +59697,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56293,6 +59705,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56300,6 +59713,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56325,12 +59739,14 @@ paths: tags: - users.calendarGroup summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_GetCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56338,6 +59754,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56345,6 +59762,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56352,6 +59770,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56500,6 +59919,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56507,6 +59927,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56514,6 +59935,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56521,6 +59943,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56547,6 +59970,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56554,6 +59978,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56561,6 +59986,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56568,12 +59994,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -56587,12 +60015,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56600,6 +60030,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56607,6 +60038,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56614,6 +60046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56692,6 +60125,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56699,6 +60133,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56706,6 +60141,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56713,6 +60149,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56738,12 +60175,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56751,6 +60190,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56758,6 +60198,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56765,6 +60206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56772,6 +60214,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -56824,6 +60267,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56831,6 +60275,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56838,6 +60283,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56845,6 +60291,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56852,6 +60299,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -56878,6 +60326,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56885,6 +60334,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56892,6 +60342,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56899,6 +60350,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -56906,12 +60358,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -56925,12 +60379,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56938,6 +60394,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -56945,6 +60402,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -56952,6 +60410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57045,6 +60504,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57052,6 +60512,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57059,6 +60520,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57066,6 +60528,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57269,6 +60732,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57276,6 +60740,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57283,6 +60748,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57290,6 +60756,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57321,6 +60788,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57328,6 +60796,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57335,6 +60804,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57342,6 +60812,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57349,6 +60820,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57523,6 +60995,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57530,6 +61003,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57537,6 +61011,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57544,6 +61019,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57551,6 +61027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57577,6 +61054,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57584,6 +61062,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57591,6 +61070,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57598,6 +61078,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57605,12 +61086,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57624,12 +61107,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57637,6 +61122,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57644,6 +61130,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57651,6 +61138,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57658,6 +61146,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57736,6 +61225,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57743,6 +61233,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57750,6 +61241,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57757,6 +61249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57764,6 +61257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57789,12 +61283,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57802,6 +61298,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57809,6 +61306,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57816,6 +61314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57823,6 +61322,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57830,6 +61330,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -57882,6 +61383,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57889,6 +61391,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57896,6 +61399,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57903,6 +61407,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57910,6 +61415,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57917,6 +61423,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -57943,6 +61450,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57950,6 +61458,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -57957,6 +61466,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -57964,6 +61474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57971,6 +61482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -57978,12 +61490,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57997,12 +61511,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58010,6 +61526,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58017,6 +61534,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58024,6 +61542,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58031,6 +61550,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58123,12 +61643,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58136,6 +61658,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58143,6 +61666,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58150,6 +61674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58157,6 +61682,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58220,6 +61746,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58227,6 +61754,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58234,6 +61762,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58241,6 +61770,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58248,6 +61778,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58273,12 +61804,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58286,6 +61819,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58293,6 +61827,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58300,6 +61835,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58307,6 +61843,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58314,6 +61851,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -58361,6 +61899,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58368,6 +61907,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58375,6 +61915,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58382,6 +61923,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58389,6 +61931,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58396,6 +61939,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -58422,6 +61966,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58429,6 +61974,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58436,6 +61982,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58443,6 +61990,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58450,6 +61998,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58457,12 +62006,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -58476,12 +62027,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58489,6 +62042,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58496,6 +62050,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58503,6 +62058,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58510,6 +62066,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58694,6 +62251,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58701,6 +62259,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58708,6 +62267,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58715,6 +62275,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58722,6 +62283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58747,12 +62309,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58760,6 +62324,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58767,6 +62332,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58774,6 +62340,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58781,6 +62348,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58788,6 +62356,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58950,6 +62519,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58957,6 +62527,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -58964,6 +62535,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -58971,6 +62543,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58978,6 +62551,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -58985,6 +62559,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59011,6 +62586,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59018,6 +62594,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59025,6 +62602,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59032,6 +62610,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59039,6 +62618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59046,12 +62626,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59065,12 +62647,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59078,6 +62662,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59085,6 +62670,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59092,6 +62678,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59099,6 +62686,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59106,6 +62694,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59184,6 +62773,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59191,6 +62781,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59198,6 +62789,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59205,6 +62797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59212,6 +62805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59219,6 +62813,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59244,12 +62839,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59257,6 +62854,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59264,6 +62862,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59271,6 +62870,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59278,6 +62878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59285,6 +62886,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59292,6 +62894,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -59344,6 +62947,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59351,6 +62955,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59358,6 +62963,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59365,6 +62971,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59372,6 +62979,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59379,6 +62987,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59386,6 +62995,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -59412,6 +63022,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59419,6 +63030,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59426,6 +63038,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59433,6 +63046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59440,6 +63054,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59447,6 +63062,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59454,12 +63070,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59473,12 +63091,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59486,6 +63106,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59493,6 +63114,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59500,6 +63122,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59507,6 +63130,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59514,6 +63138,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59611,12 +63236,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59624,6 +63251,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59631,6 +63259,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59638,6 +63267,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59645,6 +63275,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59652,6 +63283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59715,6 +63347,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59722,6 +63355,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59729,6 +63363,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59736,6 +63371,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59743,6 +63379,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59750,6 +63387,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59775,12 +63413,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59788,6 +63428,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59795,6 +63436,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59802,6 +63444,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59809,6 +63452,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59816,6 +63460,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59823,6 +63468,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -59870,6 +63516,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59877,6 +63524,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59884,6 +63532,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59891,6 +63540,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59898,6 +63548,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59905,6 +63556,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59912,6 +63564,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -59938,6 +63591,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59945,6 +63599,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -59952,6 +63607,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -59959,6 +63615,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59966,6 +63623,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59973,6 +63631,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -59980,12 +63639,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59999,12 +63660,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60012,6 +63675,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60019,6 +63683,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60026,6 +63691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60033,6 +63699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60040,6 +63707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60107,6 +63775,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60114,6 +63783,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60121,6 +63791,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60128,6 +63799,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60135,6 +63807,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60142,6 +63815,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60167,12 +63841,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60180,6 +63856,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60187,6 +63864,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60194,6 +63872,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60201,6 +63880,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60208,6 +63888,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60215,6 +63896,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -60263,6 +63945,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60270,6 +63953,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60277,6 +63961,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60284,6 +63969,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60291,6 +63977,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60298,6 +63985,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60305,6 +63993,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -60331,6 +64020,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60338,6 +64028,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60345,6 +64036,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60352,6 +64044,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60359,6 +64052,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60366,6 +64060,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60373,12 +64068,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -60392,12 +64089,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60405,6 +64104,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60412,6 +64112,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60419,6 +64120,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60426,6 +64128,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60433,6 +64136,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60500,6 +64204,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60507,6 +64212,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60514,6 +64220,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60521,6 +64228,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60528,6 +64236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60535,6 +64244,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60560,12 +64270,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60573,6 +64285,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60580,6 +64293,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60587,6 +64301,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60594,6 +64309,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60601,6 +64317,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60608,6 +64325,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -60656,6 +64374,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60663,6 +64382,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60670,6 +64390,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60677,6 +64398,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60684,6 +64406,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60691,6 +64414,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60698,6 +64422,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -60724,6 +64449,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60731,6 +64457,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60738,6 +64465,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60745,6 +64473,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60752,6 +64481,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60759,6 +64489,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60766,12 +64497,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -60785,12 +64518,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60798,6 +64533,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60805,6 +64541,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60812,6 +64549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60819,6 +64557,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60886,6 +64625,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60893,6 +64633,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60900,6 +64641,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60907,6 +64649,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60914,6 +64657,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60939,12 +64683,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60952,6 +64698,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -60959,6 +64706,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -60966,6 +64714,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60973,6 +64722,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -60980,6 +64730,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -61028,6 +64779,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61035,6 +64787,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61042,6 +64795,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61049,6 +64803,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61056,6 +64811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61063,6 +64819,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -61089,6 +64846,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61096,6 +64854,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61103,6 +64862,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61110,6 +64870,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61117,6 +64878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61124,12 +64886,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61143,12 +64907,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61156,6 +64922,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61163,6 +64930,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61170,6 +64938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61177,6 +64946,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61244,6 +65014,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61251,6 +65022,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61258,6 +65030,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61265,6 +65038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61272,6 +65046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61297,12 +65072,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61310,6 +65087,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61317,6 +65095,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61324,6 +65103,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61331,6 +65111,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61338,6 +65119,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -61386,6 +65168,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61393,6 +65176,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61400,6 +65184,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61407,6 +65192,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61414,6 +65200,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61421,6 +65208,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -61447,6 +65235,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61454,6 +65243,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61461,6 +65251,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61468,6 +65259,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61475,6 +65267,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61482,12 +65275,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61501,12 +65296,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61514,6 +65311,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61521,6 +65319,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61528,6 +65327,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61591,6 +65391,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61598,6 +65399,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61605,6 +65407,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61612,6 +65415,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61637,12 +65441,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61650,6 +65456,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61657,6 +65464,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61664,6 +65472,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61671,6 +65480,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -61718,6 +65528,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61725,6 +65536,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61732,6 +65544,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61739,6 +65552,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61746,6 +65560,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -61772,6 +65587,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61779,6 +65595,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61786,6 +65603,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61793,6 +65611,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -61800,12 +65619,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61819,12 +65640,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61832,6 +65655,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -61839,6 +65663,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -61846,6 +65671,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62030,6 +65856,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62037,6 +65864,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62044,6 +65872,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62051,6 +65880,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62076,12 +65906,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62089,6 +65921,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62096,6 +65929,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62103,6 +65937,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62110,6 +65945,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62265,6 +66101,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62272,6 +66109,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62279,6 +66117,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62286,6 +66125,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62293,6 +66133,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62319,6 +66160,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62326,6 +66168,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62333,6 +66176,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62340,6 +66184,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62347,12 +66192,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -62366,12 +66213,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62379,6 +66228,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62386,6 +66236,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62393,6 +66244,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62400,6 +66252,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62478,6 +66331,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62485,6 +66339,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62492,6 +66347,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62499,6 +66355,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62506,6 +66363,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62531,12 +66389,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62544,6 +66404,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62551,6 +66412,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62558,6 +66420,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62565,6 +66428,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62572,6 +66436,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -62624,6 +66489,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62631,6 +66497,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62638,6 +66505,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62645,6 +66513,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62652,6 +66521,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62659,6 +66529,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -62685,6 +66556,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62692,6 +66564,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62699,6 +66572,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62706,6 +66580,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62713,6 +66588,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62720,12 +66596,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -62739,12 +66617,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62752,6 +66632,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62759,6 +66640,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62766,6 +66648,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62773,6 +66656,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62871,6 +66755,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62878,6 +66763,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -62885,6 +66771,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -62892,6 +66779,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -62899,6 +66787,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63102,6 +66991,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63109,6 +66999,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63116,6 +67007,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63123,6 +67015,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63130,6 +67023,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63161,6 +67055,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63168,6 +67063,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63175,6 +67071,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63182,6 +67079,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63189,6 +67087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63196,6 +67095,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63377,6 +67277,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63384,6 +67285,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63391,6 +67293,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63398,6 +67301,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63405,6 +67309,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63412,6 +67317,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63438,6 +67344,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63445,6 +67352,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63452,6 +67360,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63459,6 +67368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63466,6 +67376,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63473,12 +67384,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -63492,12 +67405,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63505,6 +67420,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63512,6 +67428,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63519,6 +67436,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63526,6 +67444,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63533,6 +67452,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63611,6 +67531,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63618,6 +67539,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63625,6 +67547,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63632,6 +67555,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63639,6 +67563,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63646,6 +67571,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63671,12 +67597,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63684,6 +67612,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63691,6 +67620,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63698,6 +67628,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63705,6 +67636,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63712,6 +67644,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63719,6 +67652,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -63771,6 +67705,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63778,6 +67713,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63785,6 +67721,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63792,6 +67729,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63799,6 +67737,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63806,6 +67745,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63813,6 +67753,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -63839,6 +67780,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63846,6 +67788,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63853,6 +67796,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63860,6 +67804,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63867,6 +67812,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63874,6 +67820,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63881,12 +67828,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -63900,12 +67849,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -63913,6 +67864,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -63920,6 +67872,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -63927,6 +67880,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63934,6 +67888,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -63941,6 +67896,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64038,12 +67994,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64051,6 +68009,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64058,6 +68017,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64065,6 +68025,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64072,6 +68033,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64079,6 +68041,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64142,6 +68105,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64149,6 +68113,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64156,6 +68121,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64163,6 +68129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64170,6 +68137,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64177,6 +68145,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64202,12 +68171,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64215,6 +68186,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64222,6 +68194,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64229,6 +68202,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64236,6 +68210,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64243,6 +68218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64250,6 +68226,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -64297,6 +68274,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64304,6 +68282,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64311,6 +68290,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64318,6 +68298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64325,6 +68306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64332,6 +68314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64339,6 +68322,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -64365,6 +68349,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64372,6 +68357,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64379,6 +68365,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64386,6 +68373,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64393,6 +68381,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64400,6 +68389,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64407,12 +68397,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -64426,12 +68418,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64439,6 +68433,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64446,6 +68441,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64453,6 +68449,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64460,6 +68457,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64467,6 +68465,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64534,6 +68533,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64541,6 +68541,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64548,6 +68549,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64555,6 +68557,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64562,6 +68565,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64569,6 +68573,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64594,12 +68599,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64607,6 +68614,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64614,6 +68622,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64621,6 +68630,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64628,6 +68638,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64635,6 +68646,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64642,6 +68654,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -64690,6 +68703,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64697,6 +68711,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64704,6 +68719,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64711,6 +68727,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64718,6 +68735,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64725,6 +68743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64732,6 +68751,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -64758,6 +68778,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64765,6 +68786,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64772,6 +68794,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64779,6 +68802,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64786,6 +68810,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64793,6 +68818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64800,12 +68826,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -64819,12 +68847,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64832,6 +68862,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64839,6 +68870,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64846,6 +68878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64853,6 +68886,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64860,6 +68894,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64927,6 +68962,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -64934,6 +68970,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -64941,6 +68978,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -64948,6 +68986,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64955,6 +68994,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64962,6 +69002,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -64987,12 +69028,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65000,6 +69043,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65007,6 +69051,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65014,6 +69059,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65021,6 +69067,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65028,6 +69075,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65035,6 +69083,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -65083,6 +69132,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65090,6 +69140,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65097,6 +69148,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65104,6 +69156,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65111,6 +69164,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65118,6 +69172,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65125,6 +69180,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -65151,6 +69207,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65158,6 +69215,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65165,6 +69223,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65172,6 +69231,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65179,6 +69239,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65186,6 +69247,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65193,12 +69255,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -65212,12 +69276,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65225,6 +69291,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65232,6 +69299,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65239,6 +69307,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65246,6 +69315,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65309,6 +69379,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65316,6 +69387,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65323,6 +69395,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65330,6 +69403,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65337,6 +69411,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65362,12 +69437,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65375,6 +69452,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65382,6 +69460,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65389,6 +69468,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65396,6 +69476,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65403,6 +69484,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -65450,6 +69532,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65457,6 +69540,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65464,6 +69548,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65471,6 +69556,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65478,6 +69564,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65485,6 +69572,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -65511,6 +69599,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65518,6 +69607,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65525,6 +69615,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65532,6 +69623,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65539,6 +69631,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65546,12 +69639,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -65565,12 +69660,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65578,6 +69675,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65585,6 +69683,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65592,6 +69691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65599,6 +69699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65666,6 +69767,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65673,6 +69775,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65680,6 +69783,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65687,6 +69791,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65694,6 +69799,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65719,12 +69825,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65732,6 +69840,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65739,6 +69848,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65746,6 +69856,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65753,6 +69864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65760,6 +69872,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -65808,6 +69921,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65815,6 +69929,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65822,6 +69937,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65829,6 +69945,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65836,6 +69953,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65843,6 +69961,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -65869,6 +69988,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65876,6 +69996,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65883,6 +70004,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65890,6 +70012,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65897,6 +70020,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65904,12 +70028,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -65923,12 +70049,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -65936,6 +70064,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -65943,6 +70072,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -65950,6 +70080,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -65957,6 +70088,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66024,6 +70156,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66031,6 +70164,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66038,6 +70172,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66045,6 +70180,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66052,6 +70188,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66077,12 +70214,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66090,6 +70229,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66097,6 +70237,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66104,6 +70245,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66111,6 +70253,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66118,6 +70261,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -66166,6 +70310,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66173,6 +70318,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66180,6 +70326,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66187,6 +70334,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66194,6 +70342,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66201,6 +70350,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -66227,6 +70377,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66234,6 +70385,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66241,6 +70393,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66248,6 +70401,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66255,6 +70409,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66262,12 +70417,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -66281,12 +70438,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66294,6 +70453,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66301,6 +70461,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66308,6 +70469,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66375,6 +70537,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66382,6 +70545,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66389,6 +70553,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66396,6 +70561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66421,12 +70587,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66434,6 +70602,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66441,6 +70610,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66448,6 +70618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66455,6 +70626,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -66503,6 +70675,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66510,6 +70683,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66517,6 +70691,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66524,6 +70699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66531,6 +70707,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -66557,6 +70734,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66564,6 +70742,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66571,6 +70750,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66578,6 +70758,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66585,12 +70766,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -66604,12 +70787,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66617,6 +70802,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66624,6 +70810,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66631,6 +70818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66698,6 +70886,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66705,6 +70894,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66712,6 +70902,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66719,6 +70910,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66744,12 +70936,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66757,6 +70951,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66764,6 +70959,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66771,6 +70967,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66778,6 +70975,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -66826,6 +71024,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66833,6 +71032,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66840,6 +71040,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66847,6 +71048,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66854,6 +71056,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -66880,6 +71083,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66887,6 +71091,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66894,6 +71099,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -66901,6 +71107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -66908,12 +71115,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -66927,12 +71136,14 @@ paths: tags: - users.calendarGroup summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_ListEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -66940,6 +71151,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -66947,6 +71159,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67131,6 +71344,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67138,6 +71352,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67145,6 +71360,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67170,12 +71386,14 @@ paths: tags: - users.calendarGroup summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendarGroups.calendars_GetEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67183,6 +71401,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67190,6 +71409,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67197,6 +71417,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67345,6 +71566,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67352,6 +71574,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67359,6 +71582,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67366,6 +71590,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67392,6 +71617,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67399,6 +71625,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67406,6 +71633,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67413,12 +71641,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -67432,12 +71662,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67445,6 +71677,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67452,6 +71685,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67459,6 +71693,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67537,6 +71772,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67544,6 +71780,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67551,6 +71788,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67558,6 +71796,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67583,12 +71822,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67596,6 +71837,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67603,6 +71845,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67610,6 +71853,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67617,6 +71861,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -67669,6 +71914,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67676,6 +71922,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67683,6 +71930,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67690,6 +71938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67697,6 +71946,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -67723,6 +71973,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67730,6 +71981,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67737,6 +71989,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67744,6 +71997,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67751,12 +72005,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -67770,12 +72026,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67783,6 +72041,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67790,6 +72049,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67797,6 +72057,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -67890,6 +72151,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -67897,6 +72159,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -67904,6 +72167,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -67911,6 +72175,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68114,6 +72379,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68121,6 +72387,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68128,6 +72395,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68135,6 +72403,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68166,6 +72435,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68173,6 +72443,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68180,6 +72451,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68187,6 +72459,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68194,6 +72467,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68368,6 +72642,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68375,6 +72650,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68382,6 +72658,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68389,6 +72666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68396,6 +72674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68422,6 +72701,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68429,6 +72709,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68436,6 +72717,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68443,6 +72725,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68450,12 +72733,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -68469,12 +72754,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68482,6 +72769,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68489,6 +72777,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68496,6 +72785,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68503,6 +72793,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68581,6 +72872,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68588,6 +72880,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68595,6 +72888,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68602,6 +72896,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68609,6 +72904,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68634,12 +72930,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68647,6 +72945,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68654,6 +72953,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68661,6 +72961,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68668,6 +72969,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68675,6 +72977,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -68727,6 +73030,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68734,6 +73038,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68741,6 +73046,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68748,6 +73054,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68755,6 +73062,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68762,6 +73070,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -68788,6 +73097,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68795,6 +73105,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68802,6 +73113,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68809,6 +73121,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68816,6 +73129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68823,12 +73137,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -68842,12 +73158,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68855,6 +73173,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68862,6 +73181,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68869,6 +73189,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68876,6 +73197,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -68968,12 +73290,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -68981,6 +73305,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -68988,6 +73313,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -68995,6 +73321,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69002,6 +73329,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69065,6 +73393,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69072,6 +73401,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69079,6 +73409,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69086,6 +73417,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69093,6 +73425,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69118,12 +73451,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69131,6 +73466,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69138,6 +73474,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69145,6 +73482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69152,6 +73490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69159,6 +73498,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -69206,6 +73546,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69213,6 +73554,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69220,6 +73562,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69227,6 +73570,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69234,6 +73578,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69241,6 +73586,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -69267,6 +73613,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69274,6 +73621,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69281,6 +73629,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69288,6 +73637,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69295,6 +73645,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69302,12 +73653,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -69321,12 +73674,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69334,6 +73689,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69341,6 +73697,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69348,6 +73705,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69355,6 +73713,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69539,6 +73898,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69546,6 +73906,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69553,6 +73914,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69560,6 +73922,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69567,6 +73930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69592,12 +73956,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69605,6 +73971,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69612,6 +73979,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69619,6 +73987,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69626,6 +73995,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69633,6 +74003,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69795,6 +74166,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69802,6 +74174,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69809,6 +74182,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69816,6 +74190,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69823,6 +74198,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69830,6 +74206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69856,6 +74233,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69863,6 +74241,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69870,6 +74249,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69877,6 +74257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69884,6 +74265,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69891,12 +74273,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -69910,12 +74294,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -69923,6 +74309,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -69930,6 +74317,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -69937,6 +74325,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69944,6 +74333,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -69951,6 +74341,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70029,6 +74420,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70036,6 +74428,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70043,6 +74436,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70050,6 +74444,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70057,6 +74452,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70064,6 +74460,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70089,12 +74486,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70102,6 +74501,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70109,6 +74509,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70116,6 +74517,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70123,6 +74525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70130,6 +74533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70137,6 +74541,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -70189,6 +74594,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70196,6 +74602,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70203,6 +74610,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70210,6 +74618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70217,6 +74626,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70224,6 +74634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70231,6 +74642,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -70257,6 +74669,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70264,6 +74677,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70271,6 +74685,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70278,6 +74693,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70285,6 +74701,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70292,6 +74709,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70299,12 +74717,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -70318,12 +74738,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70331,6 +74753,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70338,6 +74761,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70345,6 +74769,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70352,6 +74777,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70359,6 +74785,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70456,12 +74883,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70469,6 +74898,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70476,6 +74906,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70483,6 +74914,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70490,6 +74922,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70497,6 +74930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70560,6 +74994,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70567,6 +75002,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70574,6 +75010,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70581,6 +75018,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70588,6 +75026,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70595,6 +75034,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70620,12 +75060,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70633,6 +75075,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70640,6 +75083,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70647,6 +75091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70654,6 +75099,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70661,6 +75107,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70668,6 +75115,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -70715,6 +75163,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70722,6 +75171,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70729,6 +75179,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70736,6 +75187,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70743,6 +75195,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70750,6 +75203,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70757,6 +75211,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -70783,6 +75238,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70790,6 +75246,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70797,6 +75254,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70804,6 +75262,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70811,6 +75270,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70818,6 +75278,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70825,12 +75286,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -70844,12 +75307,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70857,6 +75322,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70864,6 +75330,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70871,6 +75338,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70878,6 +75346,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70885,6 +75354,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70952,6 +75422,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -70959,6 +75430,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -70966,6 +75438,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -70973,6 +75446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70980,6 +75454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -70987,6 +75462,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71012,12 +75488,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71025,6 +75503,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71032,6 +75511,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71039,6 +75519,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71046,6 +75527,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71053,6 +75535,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71060,6 +75543,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -71108,6 +75592,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71115,6 +75600,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71122,6 +75608,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71129,6 +75616,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71136,6 +75624,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71143,6 +75632,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71150,6 +75640,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -71176,6 +75667,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71183,6 +75675,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71190,6 +75683,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71197,6 +75691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71204,6 +75699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71211,6 +75707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71218,12 +75715,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -71237,12 +75736,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71250,6 +75751,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71257,6 +75759,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71264,6 +75767,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71271,6 +75775,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71278,6 +75783,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71345,6 +75851,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71352,6 +75859,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71359,6 +75867,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71366,6 +75875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71373,6 +75883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71380,6 +75891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71405,12 +75917,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71418,6 +75932,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71425,6 +75940,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71432,6 +75948,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71439,6 +75956,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71446,6 +75964,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71453,6 +75972,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -71501,6 +76021,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71508,6 +76029,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71515,6 +76037,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71522,6 +76045,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71529,6 +76053,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71536,6 +76061,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71543,6 +76069,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -71569,6 +76096,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71576,6 +76104,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71583,6 +76112,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71590,6 +76120,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71597,6 +76128,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71604,6 +76136,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71611,12 +76144,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -71630,12 +76165,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71643,6 +76180,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71650,6 +76188,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71657,6 +76196,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71664,6 +76204,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71731,6 +76272,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71738,6 +76280,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71745,6 +76288,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71752,6 +76296,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71759,6 +76304,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71784,12 +76330,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71797,6 +76345,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71804,6 +76353,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71811,6 +76361,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71818,6 +76369,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71825,6 +76377,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -71873,6 +76426,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71880,6 +76434,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71887,6 +76442,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71894,6 +76450,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71901,6 +76458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71908,6 +76466,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -71934,6 +76493,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -71941,6 +76501,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -71948,6 +76509,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -71955,6 +76517,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71962,6 +76525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -71969,12 +76533,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -71988,12 +76554,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72001,6 +76569,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72008,6 +76577,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72015,6 +76585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72022,6 +76593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72089,6 +76661,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72096,6 +76669,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72103,6 +76677,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72110,6 +76685,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72117,6 +76693,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72142,12 +76719,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72155,6 +76734,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72162,6 +76742,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72169,6 +76750,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72176,6 +76758,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72183,6 +76766,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -72231,6 +76815,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72238,6 +76823,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72245,6 +76831,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72252,6 +76839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72259,6 +76847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72266,6 +76855,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -72292,6 +76882,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72299,6 +76890,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72306,6 +76898,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72313,6 +76906,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72320,6 +76914,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72327,12 +76922,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -72346,12 +76943,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72359,6 +76958,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72366,6 +76966,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72373,6 +76974,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72436,6 +77038,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72443,6 +77046,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72450,6 +77054,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72457,6 +77062,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72482,12 +77088,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72495,6 +77103,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72502,6 +77111,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72509,6 +77119,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72516,6 +77127,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -72563,6 +77175,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72570,6 +77183,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72577,6 +77191,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72584,6 +77199,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72591,6 +77207,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -72617,6 +77234,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72624,6 +77242,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72631,6 +77250,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72638,6 +77258,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72645,12 +77266,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -72664,12 +77287,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72677,6 +77302,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72684,6 +77310,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72691,6 +77318,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72875,6 +77503,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72882,6 +77511,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72889,6 +77519,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72896,6 +77527,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72921,12 +77553,14 @@ paths: tags: - users.calendarGroup summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -72934,6 +77568,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -72941,6 +77576,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -72948,6 +77584,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -72955,6 +77592,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73110,6 +77748,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73117,6 +77756,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73124,6 +77764,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73131,6 +77772,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73138,6 +77780,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73164,6 +77807,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73171,6 +77815,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73178,6 +77823,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73185,6 +77831,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73192,12 +77839,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -73211,12 +77860,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73224,6 +77875,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73231,6 +77883,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73238,6 +77891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73245,6 +77899,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73323,6 +77978,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73330,6 +77986,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73337,6 +77994,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73344,6 +78002,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73351,6 +78010,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73376,12 +78036,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73389,6 +78051,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73396,6 +78059,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73403,6 +78067,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73410,6 +78075,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73417,6 +78083,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -73469,6 +78136,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73476,6 +78144,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73483,6 +78152,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73490,6 +78160,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73497,6 +78168,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73504,6 +78176,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -73530,6 +78203,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73537,6 +78211,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73544,6 +78219,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73551,6 +78227,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73558,6 +78235,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73565,12 +78243,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -73584,12 +78264,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73597,6 +78279,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73604,6 +78287,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73611,6 +78295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73618,6 +78303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73716,6 +78402,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73723,6 +78410,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73730,6 +78418,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73737,6 +78426,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73744,6 +78434,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73947,6 +78638,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -73954,6 +78646,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -73961,6 +78654,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -73968,6 +78662,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -73975,6 +78670,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74006,6 +78702,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74013,6 +78710,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74020,6 +78718,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74027,6 +78726,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74034,6 +78734,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74041,6 +78742,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74222,6 +78924,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74229,6 +78932,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74236,6 +78940,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74243,6 +78948,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74250,6 +78956,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74257,6 +78964,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74283,6 +78991,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74290,6 +78999,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74297,6 +79007,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74304,6 +79015,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74311,6 +79023,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74318,12 +79031,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -74337,12 +79052,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74350,6 +79067,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74357,6 +79075,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74364,6 +79083,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74371,6 +79091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74378,6 +79099,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74456,6 +79178,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74463,6 +79186,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74470,6 +79194,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74477,6 +79202,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74484,6 +79210,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74491,6 +79218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74516,12 +79244,14 @@ paths: tags: - users.calendarGroup summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74529,6 +79259,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74536,6 +79267,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74543,6 +79275,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74550,6 +79283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74557,6 +79291,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74564,6 +79299,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -74616,6 +79352,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74623,6 +79360,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74630,6 +79368,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74637,6 +79376,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74644,6 +79384,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74651,6 +79392,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74658,6 +79400,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -74684,6 +79427,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74691,6 +79435,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74698,6 +79443,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74705,6 +79451,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74712,6 +79459,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74719,6 +79467,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74726,12 +79475,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -74745,12 +79496,14 @@ paths: tags: - users.calendarGroup summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74758,6 +79511,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74765,6 +79519,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74772,6 +79527,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74779,6 +79535,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74786,6 +79543,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74883,12 +79641,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74896,6 +79656,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -74903,6 +79664,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -74910,6 +79672,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74917,6 +79680,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74924,6 +79688,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -74987,6 +79752,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -74994,6 +79760,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75001,6 +79768,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75008,6 +79776,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75015,6 +79784,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75022,6 +79792,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75047,12 +79818,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75060,6 +79833,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75067,6 +79841,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75074,6 +79849,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75081,6 +79857,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75088,6 +79865,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75095,6 +79873,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -75142,6 +79921,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75149,6 +79929,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75156,6 +79937,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75163,6 +79945,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75170,6 +79953,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75177,6 +79961,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75184,6 +79969,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -75210,6 +79996,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75217,6 +80004,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75224,6 +80012,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75231,6 +80020,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75238,6 +80028,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75245,6 +80036,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75252,12 +80044,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -75271,12 +80065,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75284,6 +80080,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75291,6 +80088,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75298,6 +80096,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75305,6 +80104,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75312,6 +80112,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75379,6 +80180,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75386,6 +80188,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75393,6 +80196,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75400,6 +80204,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75407,6 +80212,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75414,6 +80220,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75439,12 +80246,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75452,6 +80261,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75459,6 +80269,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75466,6 +80277,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75473,6 +80285,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75480,6 +80293,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75487,6 +80301,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -75535,6 +80350,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75542,6 +80358,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75549,6 +80366,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75556,6 +80374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75563,6 +80382,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75570,6 +80390,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75577,6 +80398,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -75603,6 +80425,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75610,6 +80433,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75617,6 +80441,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75624,6 +80449,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75631,6 +80457,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75638,6 +80465,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75645,12 +80473,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -75664,12 +80494,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75677,6 +80509,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75684,6 +80517,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75691,6 +80525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75698,6 +80533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75705,6 +80541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75772,6 +80609,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75779,6 +80617,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75786,6 +80625,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75793,6 +80633,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75800,6 +80641,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75807,6 +80649,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75832,12 +80675,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75845,6 +80690,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75852,6 +80698,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75859,6 +80706,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75866,6 +80714,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75873,6 +80722,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75880,6 +80730,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -75928,6 +80779,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -75935,6 +80787,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -75942,6 +80795,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -75949,6 +80803,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75956,6 +80811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75963,6 +80819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -75970,6 +80827,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -75996,6 +80854,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76003,6 +80862,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76010,6 +80870,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76017,6 +80878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76024,6 +80886,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76031,6 +80894,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76038,12 +80902,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -76057,12 +80923,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76070,6 +80938,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76077,6 +80946,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76084,6 +80954,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76091,6 +80962,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76154,6 +81026,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76161,6 +81034,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76168,6 +81042,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76175,6 +81050,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76182,6 +81058,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76207,12 +81084,14 @@ paths: tags: - users.calendarGroup summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarGroups.calendars.events.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76220,6 +81099,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76227,6 +81107,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76234,6 +81115,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76241,6 +81123,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76248,6 +81131,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -76295,6 +81179,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76302,6 +81187,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76309,6 +81195,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76316,6 +81203,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76323,6 +81211,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76330,6 +81219,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -76356,6 +81246,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76363,6 +81254,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76370,6 +81262,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76377,6 +81270,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76384,6 +81278,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76391,12 +81286,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -76410,12 +81307,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76423,6 +81322,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76430,6 +81330,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76437,6 +81338,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76444,6 +81346,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76511,6 +81414,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76518,6 +81422,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76525,6 +81430,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76532,6 +81438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76539,6 +81446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76564,12 +81472,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76577,6 +81487,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76584,6 +81495,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76591,6 +81503,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76598,6 +81511,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76605,6 +81519,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -76653,6 +81568,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76660,6 +81576,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76667,6 +81584,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76674,6 +81592,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76681,6 +81600,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76688,6 +81608,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -76714,6 +81635,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76721,6 +81643,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76728,6 +81651,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76735,6 +81659,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76742,6 +81667,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76749,12 +81675,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -76768,12 +81696,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76781,6 +81711,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76788,6 +81719,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76795,6 +81727,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76802,6 +81735,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76869,6 +81803,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76876,6 +81811,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76883,6 +81819,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76890,6 +81827,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76897,6 +81835,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76922,12 +81861,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -76935,6 +81876,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -76942,6 +81884,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -76949,6 +81892,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76956,6 +81900,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -76963,6 +81908,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -77011,6 +81957,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77018,6 +81965,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77025,6 +81973,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77032,6 +81981,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77039,6 +81989,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77046,6 +81997,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -77072,6 +82024,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77079,6 +82032,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77086,6 +82040,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77093,6 +82048,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77100,6 +82056,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77107,12 +82064,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -77126,12 +82085,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77139,6 +82100,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77146,6 +82108,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77153,6 +82116,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77220,6 +82184,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77227,6 +82192,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77234,6 +82200,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77241,6 +82208,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77266,12 +82234,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77279,6 +82249,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77286,6 +82257,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77293,6 +82265,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77300,6 +82273,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -77348,6 +82322,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77355,6 +82330,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77362,6 +82338,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77369,6 +82346,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77376,6 +82354,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -77402,6 +82381,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77409,6 +82389,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77416,6 +82397,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77423,6 +82405,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77430,12 +82413,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -77449,12 +82434,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77462,6 +82449,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77469,6 +82457,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77476,6 +82465,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77543,6 +82533,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77550,6 +82541,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77557,6 +82549,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77564,6 +82557,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77589,12 +82583,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarGroups.calendars.events_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77602,6 +82598,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77609,6 +82606,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77616,6 +82614,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77623,6 +82622,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -77671,6 +82671,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77678,6 +82679,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77685,6 +82687,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77692,6 +82695,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77699,6 +82703,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -77725,6 +82730,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77732,6 +82738,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77739,6 +82746,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77746,6 +82754,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -77753,12 +82762,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -77772,12 +82783,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77785,6 +82798,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77792,6 +82806,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77859,6 +82874,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77866,6 +82882,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77873,6 +82890,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77898,12 +82916,14 @@ paths: tags: - users.calendarGroup summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77911,6 +82931,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77918,6 +82939,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77925,6 +82947,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -77973,6 +82996,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -77980,6 +83004,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -77987,6 +83012,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -77994,6 +83020,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -78020,6 +83047,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78027,6 +83055,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -78034,6 +83063,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78041,12 +83071,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -78060,12 +83092,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78073,6 +83107,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -78080,6 +83115,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78147,6 +83183,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78154,6 +83191,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -78161,6 +83199,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78186,12 +83225,14 @@ paths: tags: - users.calendarGroup summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendarGroups.calendars_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78199,6 +83240,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -78206,6 +83248,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78213,6 +83256,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -78261,6 +83305,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78268,6 +83313,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -78275,6 +83321,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78282,6 +83329,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -78308,6 +83356,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78315,6 +83364,7 @@ paths: in: path description: 'key: id of calendarGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarGroup @@ -78322,6 +83372,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78329,12 +83380,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -78348,12 +83401,14 @@ paths: tags: - users.calendar summary: Get calendars from users + description: The user's calendars. Read-only. Nullable. operationId: users_ListCalendars parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78458,6 +83513,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78483,12 +83539,14 @@ paths: tags: - users.calendar summary: Get calendars from users + description: The user's calendars. Read-only. Nullable. operationId: users_GetCalendars parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78496,6 +83554,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78582,6 +83641,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78589,6 +83649,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78615,6 +83676,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78622,12 +83684,14 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -78641,12 +83705,14 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_ListCalendarPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78654,6 +83720,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78720,6 +83787,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78727,6 +83795,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78752,12 +83821,14 @@ paths: tags: - users.calendar summary: Get calendarPermissions from users + description: The permissions of the users with whom the calendar is shared. operationId: users.calendars_GetCalendarPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78765,6 +83836,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78772,6 +83844,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -78812,6 +83885,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78819,6 +83893,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78826,6 +83901,7 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission @@ -78852,6 +83928,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78859,6 +83936,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78866,12 +83944,14 @@ paths: in: path description: 'key: id of calendarPermission' required: true + style: simple schema: type: string x-ms-docs-key-type: calendarPermission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -78885,12 +83965,14 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_ListCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -78898,6 +83980,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -78905,12 +83988,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - $ref: '#/components/parameters/top' @@ -79094,6 +84181,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79101,6 +84189,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79126,12 +84215,14 @@ paths: tags: - users.calendar summary: Get calendarView from users + description: The calendar view for the calendar. Navigation property. Read-only. operationId: users.calendars_GetCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79139,6 +84230,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79146,6 +84238,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79153,12 +84246,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: $select @@ -79299,6 +84396,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79306,6 +84404,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79313,6 +84412,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79339,6 +84439,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79346,6 +84447,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79353,12 +84455,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -79372,12 +84476,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79385,6 +84491,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79392,6 +84499,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79470,6 +84578,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79477,6 +84586,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79484,6 +84594,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79509,12 +84620,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79522,6 +84635,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79529,6 +84643,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79536,6 +84651,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -79588,6 +84704,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79595,6 +84712,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79602,6 +84720,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79609,6 +84728,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -79635,6 +84755,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79642,6 +84763,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79649,6 +84771,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79656,12 +84779,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -79675,12 +84800,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79688,6 +84815,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79695,6 +84823,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -79783,6 +84912,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -79790,6 +84920,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -79797,6 +84928,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80000,6 +85132,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80007,6 +85140,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80014,6 +85148,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80045,6 +85180,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80052,6 +85188,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80059,6 +85196,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80066,6 +85204,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80233,6 +85372,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80240,6 +85380,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80247,6 +85388,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80254,6 +85396,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80280,6 +85423,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80287,6 +85431,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80294,6 +85439,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80301,12 +85447,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -80320,12 +85468,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80333,6 +85483,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80340,6 +85491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80347,6 +85499,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80425,6 +85578,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80432,6 +85586,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80439,6 +85594,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80446,6 +85602,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80471,12 +85628,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80484,6 +85643,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80491,6 +85651,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80498,6 +85659,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80505,6 +85667,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -80557,6 +85720,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80564,6 +85728,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80571,6 +85736,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80578,6 +85744,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80585,6 +85752,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -80611,6 +85779,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80618,6 +85787,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80625,6 +85795,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80632,6 +85803,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80639,12 +85811,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -80658,12 +85832,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80671,6 +85847,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80678,6 +85855,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80685,6 +85863,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80772,12 +85951,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80785,6 +85966,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80792,6 +85974,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80799,6 +85982,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80862,6 +86046,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80869,6 +86054,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80876,6 +86062,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80883,6 +86070,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80908,12 +86096,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80921,6 +86111,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -80928,6 +86119,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80935,6 +86127,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -80942,6 +86135,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -80989,6 +86183,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -80996,6 +86191,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81003,6 +86199,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81010,6 +86207,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81017,6 +86215,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -81043,6 +86242,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81050,6 +86250,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81057,6 +86258,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81064,6 +86266,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81071,12 +86274,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -81090,12 +86295,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81103,6 +86310,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81110,6 +86318,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81117,6 +86326,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81301,6 +86511,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81308,6 +86519,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81315,6 +86527,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81322,6 +86535,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81347,12 +86561,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81360,6 +86576,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81367,6 +86584,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81374,6 +86592,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81381,6 +86600,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81536,6 +86756,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81543,6 +86764,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81550,6 +86772,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81557,6 +86780,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81564,6 +86788,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81590,6 +86815,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81597,6 +86823,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81604,6 +86831,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81611,6 +86839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81618,12 +86847,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -81637,12 +86868,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81650,6 +86883,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81657,6 +86891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81664,6 +86899,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81671,6 +86907,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81749,6 +86986,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81756,6 +86994,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81763,6 +87002,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81770,6 +87010,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81777,6 +87018,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81802,12 +87044,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81815,6 +87059,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81822,6 +87067,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81829,6 +87075,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81836,6 +87083,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81843,6 +87091,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -81895,6 +87144,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81902,6 +87152,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81909,6 +87160,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81916,6 +87168,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81923,6 +87176,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81930,6 +87184,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -81956,6 +87211,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -81963,6 +87219,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -81970,6 +87227,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81977,6 +87235,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81984,6 +87243,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -81991,12 +87251,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -82010,12 +87272,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82023,6 +87287,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82030,6 +87295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82037,6 +87303,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82044,6 +87311,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82136,12 +87404,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82149,6 +87419,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82156,6 +87427,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82163,6 +87435,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82170,6 +87443,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82233,6 +87507,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82240,6 +87515,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82247,6 +87523,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82254,6 +87531,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82261,6 +87539,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82286,12 +87565,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82299,6 +87580,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82306,6 +87588,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82313,6 +87596,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82320,6 +87604,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82327,6 +87612,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -82374,6 +87660,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82381,6 +87668,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82388,6 +87676,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82395,6 +87684,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82402,6 +87692,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82409,6 +87700,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -82435,6 +87727,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82442,6 +87735,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82449,6 +87743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82456,6 +87751,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82463,6 +87759,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82470,12 +87767,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -82489,12 +87788,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82502,6 +87803,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82509,6 +87811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82516,6 +87819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82523,6 +87827,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82590,6 +87895,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82597,6 +87903,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82604,6 +87911,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82611,6 +87919,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82618,6 +87927,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82643,12 +87953,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82656,6 +87968,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82663,6 +87976,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82670,6 +87984,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82677,6 +87992,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82684,6 +88000,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -82732,6 +88049,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82739,6 +88057,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82746,6 +88065,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82753,6 +88073,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82760,6 +88081,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82767,6 +88089,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -82793,6 +88116,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82800,6 +88124,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82807,6 +88132,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82814,6 +88140,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82821,6 +88148,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82828,12 +88156,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -82847,12 +88177,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82860,6 +88192,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82867,6 +88200,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82874,6 +88208,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82881,6 +88216,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82948,6 +88284,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -82955,6 +88292,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -82962,6 +88300,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82969,6 +88308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -82976,6 +88316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83001,12 +88342,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83014,6 +88357,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83021,6 +88365,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83028,6 +88373,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83035,6 +88381,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83042,6 +88389,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -83090,6 +88438,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83097,6 +88446,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83104,6 +88454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83111,6 +88462,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83118,6 +88470,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83125,6 +88478,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -83151,6 +88505,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83158,6 +88513,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83165,6 +88521,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83172,6 +88529,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83179,6 +88537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83186,12 +88545,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -83205,12 +88566,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83218,6 +88581,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83225,6 +88589,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83232,6 +88597,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83299,6 +88665,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83306,6 +88673,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83313,6 +88681,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83320,6 +88689,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83345,12 +88715,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83358,6 +88730,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83365,6 +88738,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83372,6 +88746,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83379,6 +88754,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -83427,6 +88803,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83434,6 +88811,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83441,6 +88819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83448,6 +88827,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83455,6 +88835,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -83481,6 +88862,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83488,6 +88870,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83495,6 +88878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83502,6 +88886,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83509,12 +88894,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -83528,12 +88915,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83541,6 +88930,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83548,6 +88938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83555,6 +88946,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83622,6 +89014,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83629,6 +89022,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83636,6 +89030,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83643,6 +89038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83668,12 +89064,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83681,6 +89079,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83688,6 +89087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83695,6 +89095,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83702,6 +89103,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -83750,6 +89152,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83757,6 +89160,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83764,6 +89168,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83771,6 +89176,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83778,6 +89184,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -83804,6 +89211,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83811,6 +89219,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83818,6 +89227,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83825,6 +89235,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83832,12 +89243,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -83851,12 +89264,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83864,6 +89279,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83871,6 +89287,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83934,6 +89351,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83941,6 +89359,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83948,6 +89367,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -83973,12 +89393,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -83986,6 +89408,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -83993,6 +89416,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84000,6 +89424,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -84047,6 +89472,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84054,6 +89480,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84061,6 +89488,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84068,6 +89496,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -84094,6 +89523,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84101,6 +89531,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84108,6 +89539,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84115,12 +89547,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -84134,12 +89568,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84147,6 +89583,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84154,6 +89591,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84338,6 +89776,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84345,6 +89784,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84352,6 +89792,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84377,12 +89818,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84390,6 +89833,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84397,6 +89841,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84404,6 +89849,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84552,6 +89998,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84559,6 +90006,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84566,6 +90014,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84573,6 +90022,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84599,6 +90049,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84606,6 +90057,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84613,6 +90065,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84620,12 +90073,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -84639,12 +90094,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84652,6 +90109,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84659,6 +90117,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84666,6 +90125,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84744,6 +90204,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84751,6 +90212,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84758,6 +90220,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84765,6 +90228,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84790,12 +90254,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84803,6 +90269,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84810,6 +90277,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84817,6 +90285,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84824,6 +90293,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -84876,6 +90346,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84883,6 +90354,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84890,6 +90362,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84897,6 +90370,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84904,6 +90378,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -84930,6 +90405,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84937,6 +90413,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84944,6 +90421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84951,6 +90429,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -84958,12 +90437,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -84977,12 +90458,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -84990,6 +90473,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -84997,6 +90481,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85004,6 +90489,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85097,6 +90583,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85104,6 +90591,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85111,6 +90599,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85118,6 +90607,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85321,6 +90811,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85328,6 +90819,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85335,6 +90827,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85342,6 +90835,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85373,6 +90867,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85380,6 +90875,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85387,6 +90883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85394,6 +90891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85401,6 +90899,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85575,6 +91074,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85582,6 +91082,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85589,6 +91090,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85596,6 +91098,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85603,6 +91106,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85629,6 +91133,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85636,6 +91141,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85643,6 +91149,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85650,6 +91157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85657,12 +91165,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -85676,12 +91186,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85689,6 +91201,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85696,6 +91209,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85703,6 +91217,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85710,6 +91225,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85788,6 +91304,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85795,6 +91312,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85802,6 +91320,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85809,6 +91328,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85816,6 +91336,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85841,12 +91362,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.calendarView.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85854,6 +91377,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85861,6 +91385,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85868,6 +91393,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85875,6 +91401,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85882,6 +91409,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -85934,6 +91462,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -85941,6 +91470,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -85948,6 +91478,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85955,6 +91486,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85962,6 +91494,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -85969,6 +91502,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -85995,6 +91529,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86002,6 +91537,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86009,6 +91545,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86016,6 +91553,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86023,6 +91561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86030,12 +91569,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -86049,12 +91590,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.calendarView.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86062,6 +91605,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86069,6 +91613,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86076,6 +91621,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86083,6 +91629,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86175,12 +91722,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86188,6 +91737,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86195,6 +91745,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86202,6 +91753,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86209,6 +91761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86272,6 +91825,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86279,6 +91833,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86286,6 +91841,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86293,6 +91849,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86300,6 +91857,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86325,12 +91883,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86338,6 +91898,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86345,6 +91906,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86352,6 +91914,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86359,6 +91922,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86366,6 +91930,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -86413,6 +91978,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86420,6 +91986,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86427,6 +91994,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86434,6 +92002,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86441,6 +92010,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86448,6 +92018,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -86474,6 +92045,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86481,6 +92053,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86488,6 +92061,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86495,6 +92069,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86502,6 +92077,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86509,12 +92085,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -86528,12 +92106,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86541,6 +92121,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86548,6 +92129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86555,6 +92137,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86562,6 +92145,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86629,6 +92213,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86636,6 +92221,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86643,6 +92229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86650,6 +92237,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86657,6 +92245,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86682,12 +92271,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86695,6 +92286,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86702,6 +92294,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86709,6 +92302,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86716,6 +92310,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86723,6 +92318,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -86771,6 +92367,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86778,6 +92375,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86785,6 +92383,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86792,6 +92391,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86799,6 +92399,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86806,6 +92407,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -86832,6 +92434,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86839,6 +92442,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86846,6 +92450,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86853,6 +92458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86860,6 +92466,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86867,12 +92474,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -86886,12 +92495,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86899,6 +92510,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -86906,6 +92518,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86913,6 +92526,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86920,6 +92534,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -86987,6 +92602,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -86994,6 +92610,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87001,6 +92618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87008,6 +92626,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87015,6 +92634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87040,12 +92660,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87053,6 +92675,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87060,6 +92683,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87067,6 +92691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87074,6 +92699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87081,6 +92707,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -87129,6 +92756,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87136,6 +92764,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87143,6 +92772,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87150,6 +92780,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87157,6 +92788,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87164,6 +92796,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -87190,6 +92823,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87197,6 +92831,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87204,6 +92839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87211,6 +92847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87218,6 +92855,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87225,12 +92863,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -87244,12 +92884,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87257,6 +92899,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87264,6 +92907,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87271,6 +92915,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87334,6 +92979,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87341,6 +92987,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87348,6 +92995,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87355,6 +93003,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87380,12 +93029,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.calendarView.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87393,6 +93044,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87400,6 +93052,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87407,6 +93060,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87414,6 +93068,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -87461,6 +93116,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87468,6 +93124,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87475,6 +93132,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87482,6 +93140,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87489,6 +93148,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -87515,6 +93175,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87522,6 +93183,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87529,6 +93191,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87536,6 +93199,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87543,12 +93207,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -87562,12 +93228,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87575,6 +93243,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87582,6 +93251,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87589,6 +93259,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87656,6 +93327,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87663,6 +93335,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87670,6 +93343,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87677,6 +93351,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87702,12 +93377,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87715,6 +93392,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87722,6 +93400,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87729,6 +93408,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87736,6 +93416,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -87784,6 +93465,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87791,6 +93473,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87798,6 +93481,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87805,6 +93489,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87812,6 +93497,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -87838,6 +93524,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87845,6 +93532,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87852,6 +93540,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87859,6 +93548,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87866,12 +93556,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -87885,12 +93577,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87898,6 +93592,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87905,6 +93600,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87912,6 +93608,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -87979,6 +93676,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -87986,6 +93684,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -87993,6 +93692,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88000,6 +93700,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88025,12 +93726,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88038,6 +93741,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88045,6 +93749,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88052,6 +93757,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88059,6 +93765,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -88107,6 +93814,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88114,6 +93822,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88121,6 +93830,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88128,6 +93838,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88135,6 +93846,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -88161,6 +93873,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88168,6 +93881,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88175,6 +93889,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88182,6 +93897,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88189,12 +93905,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -88208,12 +93926,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88221,6 +93941,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88228,6 +93949,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88295,6 +94017,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88302,6 +94025,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88309,6 +94033,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88334,12 +94059,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88347,6 +94074,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88354,6 +94082,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88361,6 +94090,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -88409,6 +94139,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88416,6 +94147,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88423,6 +94155,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88430,6 +94163,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -88456,6 +94190,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88463,6 +94198,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88470,6 +94206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88477,12 +94214,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -88496,12 +94235,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88509,6 +94250,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88516,6 +94258,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88583,6 +94326,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88590,6 +94334,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88597,6 +94342,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88622,12 +94368,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88635,6 +94383,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88642,6 +94391,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88649,6 +94399,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -88697,6 +94448,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88704,6 +94456,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88711,6 +94464,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88718,6 +94472,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -88744,6 +94499,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88751,6 +94507,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88758,6 +94515,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -88765,12 +94523,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -88784,12 +94544,14 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_ListEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88797,6 +94559,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -88981,6 +94744,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -88988,6 +94752,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89013,12 +94778,14 @@ paths: tags: - users.calendar summary: Get events from users + description: The events in the calendar. Navigation property. Read-only. operationId: users.calendars_GetEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89026,6 +94793,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89033,6 +94801,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89174,6 +94943,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89181,6 +94951,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89188,6 +94959,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89214,6 +94986,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89221,6 +94994,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89228,12 +95002,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -89247,12 +95023,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89260,6 +95038,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89267,6 +95046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89345,6 +95125,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89352,6 +95133,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89359,6 +95141,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89384,12 +95167,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89397,6 +95182,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89404,6 +95190,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89411,6 +95198,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -89463,6 +95251,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89470,6 +95259,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89477,6 +95267,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89484,6 +95275,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -89510,6 +95302,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89517,6 +95310,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89524,6 +95318,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89531,12 +95326,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -89550,12 +95347,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89563,6 +95362,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89570,6 +95370,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89658,6 +95459,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89665,6 +95467,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89672,6 +95475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89875,6 +95679,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89882,6 +95687,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89889,6 +95695,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89920,6 +95727,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -89927,6 +95735,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -89934,6 +95743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -89941,6 +95751,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90108,6 +95919,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90115,6 +95927,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90122,6 +95935,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90129,6 +95943,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90155,6 +95970,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90162,6 +95978,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90169,6 +95986,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90176,12 +95994,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -90195,12 +96015,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90208,6 +96030,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90215,6 +96038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90222,6 +96046,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90300,6 +96125,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90307,6 +96133,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90314,6 +96141,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90321,6 +96149,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90346,12 +96175,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90359,6 +96190,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90366,6 +96198,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90373,6 +96206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90380,6 +96214,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -90432,6 +96267,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90439,6 +96275,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90446,6 +96283,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90453,6 +96291,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90460,6 +96299,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -90486,6 +96326,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90493,6 +96334,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90500,6 +96342,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90507,6 +96350,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90514,12 +96358,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -90533,12 +96379,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90546,6 +96394,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90553,6 +96402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90560,6 +96410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90647,12 +96498,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90660,6 +96513,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90667,6 +96521,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90674,6 +96529,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90737,6 +96593,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90744,6 +96601,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90751,6 +96609,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90758,6 +96617,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90783,12 +96643,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90796,6 +96658,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90803,6 +96666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90810,6 +96674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90817,6 +96682,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -90864,6 +96730,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90871,6 +96738,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90878,6 +96746,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90885,6 +96754,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90892,6 +96762,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -90918,6 +96789,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90925,6 +96797,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90932,6 +96805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90939,6 +96813,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90946,12 +96821,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -90965,12 +96842,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -90978,6 +96857,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -90985,6 +96865,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -90992,6 +96873,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91176,6 +97058,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91183,6 +97066,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91190,6 +97074,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91197,6 +97082,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91222,12 +97108,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91235,6 +97123,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91242,6 +97131,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91249,6 +97139,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91256,6 +97147,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91411,6 +97303,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91418,6 +97311,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91425,6 +97319,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91432,6 +97327,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91439,6 +97335,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91465,6 +97362,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91472,6 +97370,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91479,6 +97378,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91486,6 +97386,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91493,12 +97394,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -91512,12 +97415,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91525,6 +97430,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91532,6 +97438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91539,6 +97446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91546,6 +97454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91624,6 +97533,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91631,6 +97541,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91638,6 +97549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91645,6 +97557,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91652,6 +97565,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91677,12 +97591,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91690,6 +97606,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91697,6 +97614,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91704,6 +97622,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91711,6 +97630,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91718,6 +97638,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -91770,6 +97691,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91777,6 +97699,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91784,6 +97707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91791,6 +97715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91798,6 +97723,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91805,6 +97731,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -91831,6 +97758,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91838,6 +97766,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91845,6 +97774,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91852,6 +97782,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91859,6 +97790,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91866,12 +97798,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -91885,12 +97819,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -91898,6 +97834,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -91905,6 +97842,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91912,6 +97850,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -91919,6 +97858,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92011,12 +97951,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92024,6 +97966,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92031,6 +97974,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92038,6 +97982,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92045,6 +97990,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92108,6 +98054,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92115,6 +98062,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92122,6 +98070,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92129,6 +98078,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92136,6 +98086,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92161,12 +98112,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92174,6 +98127,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92181,6 +98135,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92188,6 +98143,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92195,6 +98151,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92202,6 +98159,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -92249,6 +98207,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92256,6 +98215,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92263,6 +98223,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92270,6 +98231,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92277,6 +98239,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92284,6 +98247,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -92310,6 +98274,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92317,6 +98282,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92324,6 +98290,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92331,6 +98298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92338,6 +98306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92345,12 +98314,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -92364,12 +98335,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92377,6 +98350,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92384,6 +98358,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92391,6 +98366,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92398,6 +98374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92465,6 +98442,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92472,6 +98450,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92479,6 +98458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92486,6 +98466,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92493,6 +98474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92518,12 +98500,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92531,6 +98515,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92538,6 +98523,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92545,6 +98531,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92552,6 +98539,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92559,6 +98547,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -92607,6 +98596,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92614,6 +98604,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92621,6 +98612,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92628,6 +98620,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92635,6 +98628,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92642,6 +98636,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -92668,6 +98663,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92675,6 +98671,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92682,6 +98679,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92689,6 +98687,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92696,6 +98695,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92703,12 +98703,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -92722,12 +98724,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92735,6 +98739,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92742,6 +98747,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92749,6 +98755,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92756,6 +98763,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92823,6 +98831,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92830,6 +98839,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92837,6 +98847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92844,6 +98855,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92851,6 +98863,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92876,12 +98889,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92889,6 +98904,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92896,6 +98912,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92903,6 +98920,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92910,6 +98928,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92917,6 +98936,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -92965,6 +98985,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -92972,6 +98993,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -92979,6 +99001,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92986,6 +99009,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -92993,6 +99017,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93000,6 +99025,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -93026,6 +99052,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93033,6 +99060,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93040,6 +99068,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93047,6 +99076,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93054,6 +99084,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93061,12 +99092,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -93080,12 +99113,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93093,6 +99128,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93100,6 +99136,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93107,6 +99144,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93174,6 +99212,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93181,6 +99220,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93188,6 +99228,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93195,6 +99236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93220,12 +99262,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93233,6 +99277,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93240,6 +99285,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93247,6 +99293,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93254,6 +99301,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -93302,6 +99350,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93309,6 +99358,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93316,6 +99366,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93323,6 +99374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93330,6 +99382,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -93356,6 +99409,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93363,6 +99417,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93370,6 +99425,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93377,6 +99433,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93384,12 +99441,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -93403,12 +99462,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93416,6 +99477,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93423,6 +99485,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93430,6 +99493,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93497,6 +99561,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93504,6 +99569,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93511,6 +99577,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93518,6 +99585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93543,12 +99611,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93556,6 +99626,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93563,6 +99634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93570,6 +99642,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93577,6 +99650,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -93625,6 +99699,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93632,6 +99707,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93639,6 +99715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93646,6 +99723,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93653,6 +99731,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -93679,6 +99758,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93686,6 +99766,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93693,6 +99774,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93700,6 +99782,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93707,12 +99790,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -93726,12 +99811,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93739,6 +99826,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93746,6 +99834,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93809,6 +99898,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93816,6 +99906,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93823,6 +99914,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93848,12 +99940,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93861,6 +99955,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93868,6 +99963,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93875,6 +99971,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -93922,6 +100019,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93929,6 +100027,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93936,6 +100035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93943,6 +100043,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -93969,6 +100070,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -93976,6 +100078,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -93983,6 +100086,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -93990,12 +100094,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -94009,12 +100115,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94022,6 +100130,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94029,6 +100138,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94213,6 +100323,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94220,6 +100331,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94227,6 +100339,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94252,12 +100365,14 @@ paths: tags: - users.calendar summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendars.events_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94265,6 +100380,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94272,6 +100388,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94279,6 +100396,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94427,6 +100545,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94434,6 +100553,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94441,6 +100561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94448,6 +100569,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94474,6 +100596,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94481,6 +100604,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94488,6 +100612,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94495,12 +100620,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -94514,12 +100641,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94527,6 +100656,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94534,6 +100664,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94541,6 +100672,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94619,6 +100751,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94626,6 +100759,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94633,6 +100767,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94640,6 +100775,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94665,12 +100801,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94678,6 +100816,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94685,6 +100824,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94692,6 +100832,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94699,6 +100840,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -94751,6 +100893,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94758,6 +100901,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94765,6 +100909,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94772,6 +100917,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94779,6 +100925,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -94805,6 +100952,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94812,6 +100960,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94819,6 +100968,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94826,6 +100976,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94833,12 +100984,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -94852,12 +101005,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94865,6 +101020,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94872,6 +101028,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94879,6 +101036,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94972,6 +101130,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -94979,6 +101138,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -94986,6 +101146,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -94993,6 +101154,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95196,6 +101358,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95203,6 +101366,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95210,6 +101374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95217,6 +101382,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95248,6 +101414,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95255,6 +101422,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95262,6 +101430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95269,6 +101438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95276,6 +101446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95450,6 +101621,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95457,6 +101629,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95464,6 +101637,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95471,6 +101645,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95478,6 +101653,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95504,6 +101680,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95511,6 +101688,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95518,6 +101696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95525,6 +101704,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95532,12 +101712,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -95551,12 +101733,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95564,6 +101748,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95571,6 +101756,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95578,6 +101764,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95585,6 +101772,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95663,6 +101851,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95670,6 +101859,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95677,6 +101867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95684,6 +101875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95691,6 +101883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95716,12 +101909,14 @@ paths: tags: - users.calendar summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendars.events.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95729,6 +101924,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95736,6 +101932,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95743,6 +101940,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95750,6 +101948,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95757,6 +101956,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -95809,6 +102009,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95816,6 +102017,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95823,6 +102025,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95830,6 +102033,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95837,6 +102041,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95844,6 +102049,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -95870,6 +102076,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95877,6 +102084,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95884,6 +102092,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95891,6 +102100,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95898,6 +102108,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95905,12 +102116,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -95924,12 +102137,14 @@ paths: tags: - users.calendar summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendars.events.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -95937,6 +102152,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -95944,6 +102160,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95951,6 +102168,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -95958,6 +102176,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96050,12 +102269,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96063,6 +102284,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96070,6 +102292,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96077,6 +102300,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96084,6 +102308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96147,6 +102372,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96154,6 +102380,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96161,6 +102388,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96168,6 +102396,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96175,6 +102404,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96200,12 +102430,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96213,6 +102445,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96220,6 +102453,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96227,6 +102461,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96234,6 +102469,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96241,6 +102477,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -96288,6 +102525,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96295,6 +102533,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96302,6 +102541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96309,6 +102549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96316,6 +102557,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96323,6 +102565,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -96349,6 +102592,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96356,6 +102600,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96363,6 +102608,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96370,6 +102616,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96377,6 +102624,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96384,12 +102632,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -96403,12 +102653,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96416,6 +102668,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96423,6 +102676,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96430,6 +102684,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96437,6 +102692,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96504,6 +102760,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96511,6 +102768,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96518,6 +102776,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96525,6 +102784,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96532,6 +102792,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96557,12 +102818,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96570,6 +102833,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96577,6 +102841,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96584,6 +102849,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96591,6 +102857,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96598,6 +102865,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -96646,6 +102914,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96653,6 +102922,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96660,6 +102930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96667,6 +102938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96674,6 +102946,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96681,6 +102954,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -96707,6 +102981,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96714,6 +102989,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96721,6 +102997,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96728,6 +103005,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96735,6 +103013,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96742,12 +103021,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -96761,12 +103042,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96774,6 +103057,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96781,6 +103065,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96788,6 +103073,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96795,6 +103081,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96862,6 +103149,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96869,6 +103157,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96876,6 +103165,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96883,6 +103173,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96890,6 +103181,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96915,12 +103207,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -96928,6 +103222,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -96935,6 +103230,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96942,6 +103238,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96949,6 +103246,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -96956,6 +103254,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -97004,6 +103303,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97011,6 +103311,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97018,6 +103319,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97025,6 +103327,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97032,6 +103335,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97039,6 +103343,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -97065,6 +103370,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97072,6 +103378,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97079,6 +103386,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97086,6 +103394,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97093,6 +103402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97100,12 +103410,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -97119,12 +103431,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97132,6 +103446,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97139,6 +103454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97146,6 +103462,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97209,6 +103526,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97216,6 +103534,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97223,6 +103542,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97230,6 +103550,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97255,12 +103576,14 @@ paths: tags: - users.calendar summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendars.events.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97268,6 +103591,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97275,6 +103599,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97282,6 +103607,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97289,6 +103615,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -97336,6 +103663,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97343,6 +103671,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97350,6 +103679,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97357,6 +103687,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97364,6 +103695,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -97390,6 +103722,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97397,6 +103730,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97404,6 +103738,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97411,6 +103746,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97418,12 +103754,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -97437,12 +103775,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97450,6 +103790,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97457,6 +103798,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97464,6 +103806,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97531,6 +103874,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97538,6 +103882,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97545,6 +103890,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97552,6 +103898,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97577,12 +103924,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97590,6 +103939,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97597,6 +103947,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97604,6 +103955,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97611,6 +103963,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -97659,6 +104012,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97666,6 +104020,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97673,6 +104028,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97680,6 +104036,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97687,6 +104044,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -97713,6 +104071,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97720,6 +104079,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97727,6 +104087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97734,6 +104095,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97741,12 +104103,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -97760,12 +104124,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97773,6 +104139,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97780,6 +104147,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97787,6 +104155,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97854,6 +104223,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97861,6 +104231,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97868,6 +104239,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97875,6 +104247,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97900,12 +104273,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97913,6 +104288,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97920,6 +104296,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97927,6 +104304,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -97934,6 +104312,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -97982,6 +104361,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -97989,6 +104369,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -97996,6 +104377,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98003,6 +104385,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98010,6 +104393,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -98036,6 +104420,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98043,6 +104428,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98050,6 +104436,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98057,6 +104444,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98064,12 +104452,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -98083,12 +104473,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98096,6 +104488,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98103,6 +104496,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98170,6 +104564,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98177,6 +104572,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98184,6 +104580,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98209,12 +104606,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98222,6 +104621,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98229,6 +104629,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98236,6 +104637,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -98284,6 +104686,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98291,6 +104694,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98298,6 +104702,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98305,6 +104710,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -98331,6 +104737,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98338,6 +104745,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98345,6 +104753,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98352,12 +104761,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -98371,12 +104782,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98384,6 +104797,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98391,6 +104805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98458,6 +104873,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98465,6 +104881,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98472,6 +104889,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98497,12 +104915,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendars.events_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98510,6 +104930,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98517,6 +104938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98524,6 +104946,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -98572,6 +104995,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98579,6 +105003,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98586,6 +105011,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98593,6 +105019,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -98619,6 +105046,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98626,6 +105054,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98633,6 +105062,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -98640,12 +105070,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -98659,12 +105091,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98672,6 +105106,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98739,6 +105174,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98746,6 +105182,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98771,12 +105208,14 @@ paths: tags: - users.calendar summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98784,6 +105223,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98791,6 +105231,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -98839,6 +105280,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98846,6 +105288,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98853,6 +105296,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -98879,6 +105323,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98886,6 +105331,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98893,12 +105339,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -98912,12 +105360,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98925,6 +105375,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -98992,6 +105443,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -98999,6 +105451,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -99024,12 +105477,14 @@ paths: tags: - users.calendar summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. operationId: users.calendars_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99037,6 +105492,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -99044,6 +105500,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -99092,6 +105549,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99099,6 +105557,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -99106,6 +105565,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -99132,6 +105592,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99139,6 +105600,7 @@ paths: in: path description: 'key: id of calendar' required: true + style: simple schema: type: string x-ms-docs-key-type: calendar @@ -99146,12 +105608,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -99165,12 +105629,14 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_ListCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99178,12 +105644,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - $ref: '#/components/parameters/top' @@ -99367,6 +105837,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99392,12 +105863,14 @@ paths: tags: - users.event summary: Get calendarView from users + description: The calendar view for the calendar. Read-only. Nullable. operationId: users_GetCalendarView parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99405,6 +105878,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99412,12 +105886,16 @@ paths: in: query description: 'The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: endDateTime in: query description: 'The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00' required: true + style: form + explode: false schema: type: string - name: $select @@ -99551,6 +106029,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99558,6 +106037,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99584,6 +106064,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99591,12 +106072,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -99610,12 +106093,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99623,6 +106108,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99701,6 +106187,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99708,6 +106195,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99733,12 +106221,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99746,6 +106236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99753,6 +106244,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -99805,6 +106297,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99812,6 +106305,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99819,6 +106313,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -99845,6 +106340,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99852,6 +106348,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99859,12 +106356,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -99878,12 +106377,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99891,6 +106392,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -99974,6 +106476,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -99981,6 +106484,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100184,6 +106688,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100191,6 +106696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100222,6 +106728,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100229,6 +106736,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100236,6 +106744,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100396,6 +106905,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100403,6 +106913,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100410,6 +106921,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100436,6 +106948,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100443,6 +106956,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100450,12 +106964,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -100469,12 +106985,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100482,6 +107000,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100489,6 +107008,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100567,6 +107087,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100574,6 +107095,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100581,6 +107103,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100606,12 +107129,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100619,6 +107144,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100626,6 +107152,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100633,6 +107160,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -100685,6 +107213,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100692,6 +107221,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100699,6 +107229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100706,6 +107237,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -100732,6 +107264,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100739,6 +107272,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100746,6 +107280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100753,12 +107288,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -100772,12 +107309,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100785,6 +107324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100792,6 +107332,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100874,12 +107415,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100887,6 +107430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100894,6 +107438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100957,6 +107502,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -100964,6 +107510,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100971,6 +107518,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -100996,12 +107544,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101009,6 +107559,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101016,6 +107567,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101023,6 +107575,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -101070,6 +107623,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101077,6 +107631,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101084,6 +107639,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101091,6 +107647,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -101117,6 +107674,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101124,6 +107682,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101131,6 +107690,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101138,12 +107698,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -101157,12 +107719,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101170,6 +107734,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101177,6 +107742,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101361,6 +107927,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101368,6 +107935,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101375,6 +107943,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101400,12 +107969,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101413,6 +107984,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101420,6 +107992,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101427,6 +108000,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101575,6 +108149,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101582,6 +108157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101589,6 +108165,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101596,6 +108173,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101622,6 +108200,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101629,6 +108208,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101636,6 +108216,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101643,12 +108224,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -101662,12 +108245,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101675,6 +108260,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101682,6 +108268,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101689,6 +108276,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101767,6 +108355,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101774,6 +108363,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101781,6 +108371,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101788,6 +108379,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101813,12 +108405,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101826,6 +108420,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101833,6 +108428,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101840,6 +108436,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101847,6 +108444,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -101899,6 +108497,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101906,6 +108505,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101913,6 +108513,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101920,6 +108521,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101927,6 +108529,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -101953,6 +108556,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -101960,6 +108564,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101967,6 +108572,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101974,6 +108580,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -101981,12 +108588,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -102000,12 +108609,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102013,6 +108624,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102020,6 +108632,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102027,6 +108640,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102114,12 +108728,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102127,6 +108743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102134,6 +108751,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102141,6 +108759,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102204,6 +108823,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102211,6 +108831,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102218,6 +108839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102225,6 +108847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102250,12 +108873,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102263,6 +108888,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102270,6 +108896,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102277,6 +108904,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102284,6 +108912,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -102331,6 +108960,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102338,6 +108968,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102345,6 +108976,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102352,6 +108984,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102359,6 +108992,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -102385,6 +109019,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102392,6 +109027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102399,6 +109035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102406,6 +109043,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102413,12 +109051,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -102432,12 +109072,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102445,6 +109087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102452,6 +109095,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102459,6 +109103,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102526,6 +109171,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102533,6 +109179,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102540,6 +109187,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102547,6 +109195,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102572,12 +109221,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102585,6 +109236,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102592,6 +109244,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102599,6 +109252,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102606,6 +109260,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -102654,6 +109309,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102661,6 +109317,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102668,6 +109325,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102675,6 +109333,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102682,6 +109341,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -102708,6 +109368,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102715,6 +109376,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102722,6 +109384,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102729,6 +109392,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102736,12 +109400,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -102755,12 +109421,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102768,6 +109436,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102775,6 +109444,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102782,6 +109452,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102849,6 +109520,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102856,6 +109528,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102863,6 +109536,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102870,6 +109544,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102895,12 +109570,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102908,6 +109585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102915,6 +109593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102922,6 +109601,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102929,6 +109609,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -102977,6 +109658,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -102984,6 +109666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102991,6 +109674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -102998,6 +109682,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103005,6 +109690,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -103031,6 +109717,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103038,6 +109725,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103045,6 +109733,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103052,6 +109741,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103059,12 +109749,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -103078,12 +109770,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103091,6 +109785,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103098,6 +109793,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103165,6 +109861,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103172,6 +109869,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103179,6 +109877,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103204,12 +109903,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103217,6 +109918,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103224,6 +109926,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103231,6 +109934,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -103279,6 +109983,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103286,6 +109991,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103293,6 +109999,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103300,6 +110007,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -103326,6 +110034,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103333,6 +110042,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103340,6 +110050,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103347,12 +110058,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -103366,12 +110079,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103379,6 +110094,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103386,6 +110102,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103453,6 +110170,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103460,6 +110178,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103467,6 +110186,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103492,12 +110212,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103505,6 +110227,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103512,6 +110235,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103519,6 +110243,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -103567,6 +110292,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103574,6 +110300,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103581,6 +110308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103588,6 +110316,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -103614,6 +110343,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103621,6 +110351,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103628,6 +110359,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103635,12 +110367,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -103654,12 +110388,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103667,6 +110403,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103730,6 +110467,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103737,6 +110475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103762,12 +110501,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103775,6 +110516,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103782,6 +110524,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -103829,6 +110572,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103836,6 +110580,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103843,6 +110588,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -103869,6 +110615,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103876,6 +110623,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -103883,12 +110631,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -103902,12 +110652,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -103915,6 +110667,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104099,6 +110852,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104106,6 +110860,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104131,12 +110886,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.calendarView_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104144,6 +110901,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104151,6 +110909,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104292,6 +111051,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104299,6 +111059,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104306,6 +111067,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104332,6 +111094,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104339,6 +111102,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104346,12 +111110,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -104365,12 +111131,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104378,6 +111146,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104385,6 +111154,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104463,6 +111233,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104470,6 +111241,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104477,6 +111249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104502,12 +111275,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104515,6 +111290,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104522,6 +111298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104529,6 +111306,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -104581,6 +111359,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104588,6 +111367,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104595,6 +111375,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104602,6 +111383,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -104628,6 +111410,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104635,6 +111418,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104642,6 +111426,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104649,12 +111434,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -104668,12 +111455,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104681,6 +111470,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104688,6 +111478,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104776,6 +111567,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -104783,6 +111575,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104790,6 +111583,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -104993,6 +111787,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105000,6 +111795,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105007,6 +111803,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105038,6 +111835,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105045,6 +111843,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105052,6 +111851,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105059,6 +111859,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105226,6 +112027,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105233,6 +112035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105240,6 +112043,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105247,6 +112051,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105273,6 +112078,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105280,6 +112086,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105287,6 +112094,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105294,12 +112102,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -105313,12 +112123,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105326,6 +112138,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105333,6 +112146,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105340,6 +112154,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105418,6 +112233,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105425,6 +112241,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105432,6 +112249,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105439,6 +112257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105464,12 +112283,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.calendarView.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105477,6 +112298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105484,6 +112306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105491,6 +112314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105498,6 +112322,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -105550,6 +112375,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105557,6 +112383,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105564,6 +112391,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105571,6 +112399,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105578,6 +112407,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -105604,6 +112434,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105611,6 +112442,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105618,6 +112450,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105625,6 +112458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105632,12 +112466,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -105651,12 +112487,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.calendarView.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105664,6 +112502,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105671,6 +112510,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105678,6 +112518,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105765,12 +112606,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105778,6 +112621,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105785,6 +112629,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105792,6 +112637,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105855,6 +112701,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105862,6 +112709,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105869,6 +112717,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105876,6 +112725,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105901,12 +112751,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105914,6 +112766,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105921,6 +112774,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105928,6 +112782,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105935,6 +112790,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -105982,6 +112838,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -105989,6 +112846,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -105996,6 +112854,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106003,6 +112862,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106010,6 +112870,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -106036,6 +112897,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106043,6 +112905,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106050,6 +112913,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106057,6 +112921,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106064,12 +112929,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -106083,12 +112950,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106096,6 +112965,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106103,6 +112973,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106110,6 +112981,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106177,6 +113049,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106184,6 +113057,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106191,6 +113065,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106198,6 +113073,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106223,12 +113099,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106236,6 +113114,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106243,6 +113122,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106250,6 +113130,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106257,6 +113138,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -106305,6 +113187,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106312,6 +113195,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106319,6 +113203,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106326,6 +113211,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106333,6 +113219,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -106359,6 +113246,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106366,6 +113254,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106373,6 +113262,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106380,6 +113270,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106387,12 +113278,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -106406,12 +113299,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106419,6 +113314,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106426,6 +113322,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106433,6 +113330,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106500,6 +113398,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106507,6 +113406,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106514,6 +113414,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106521,6 +113422,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106546,12 +113448,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106559,6 +113463,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106566,6 +113471,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106573,6 +113479,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106580,6 +113487,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -106628,6 +113536,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106635,6 +113544,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106642,6 +113552,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106649,6 +113560,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106656,6 +113568,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -106682,6 +113595,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106689,6 +113603,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106696,6 +113611,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106703,6 +113619,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106710,12 +113627,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -106729,12 +113648,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106742,6 +113663,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106749,6 +113671,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106812,6 +113735,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106819,6 +113743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106826,6 +113751,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106851,12 +113777,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.calendarView.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106864,6 +113792,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106871,6 +113800,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106878,6 +113808,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -106925,6 +113856,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106932,6 +113864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106939,6 +113872,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106946,6 +113880,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -106972,6 +113907,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -106979,6 +113915,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106986,6 +113923,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -106993,12 +113931,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -107012,12 +113952,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107025,6 +113967,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107032,6 +113975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107099,6 +114043,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107106,6 +114051,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107113,6 +114059,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107138,12 +114085,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107151,6 +114100,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107158,6 +114108,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107165,6 +114116,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -107213,6 +114165,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107220,6 +114173,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107227,6 +114181,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107234,6 +114189,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -107260,6 +114216,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107267,6 +114224,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107274,6 +114232,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107281,12 +114240,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -107300,12 +114261,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107313,6 +114276,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107320,6 +114284,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107387,6 +114352,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107394,6 +114360,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107401,6 +114368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107426,12 +114394,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107439,6 +114409,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107446,6 +114417,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107453,6 +114425,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -107501,6 +114474,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107508,6 +114482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107515,6 +114490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107522,6 +114498,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -107548,6 +114525,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107555,6 +114533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107562,6 +114541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107569,12 +114549,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -107588,12 +114570,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107601,6 +114585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107668,6 +114653,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107675,6 +114661,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107700,12 +114687,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107713,6 +114702,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107720,6 +114710,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -107768,6 +114759,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107775,6 +114767,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107782,6 +114775,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -107808,6 +114802,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107815,6 +114810,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107822,12 +114818,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -107841,12 +114839,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107854,6 +114854,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107921,6 +114922,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107928,6 +114930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107953,12 +114956,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.calendarView_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -107966,6 +114971,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -107973,6 +114979,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -108021,6 +115028,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108028,6 +115036,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108035,6 +115044,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -108061,6 +115071,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108068,6 +115079,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108075,12 +115087,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -108094,12 +115108,14 @@ paths: tags: - users.event summary: Get events from users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_ListEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108284,6 +115300,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108309,12 +115326,14 @@ paths: tags: - users.event summary: Get events from users + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. operationId: users_GetEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108322,6 +115341,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108456,6 +115476,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108463,6 +115484,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108489,6 +115511,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108496,12 +115519,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -108515,12 +115540,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108528,6 +115555,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108606,6 +115634,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108613,6 +115642,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108638,12 +115668,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108651,6 +115683,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108658,6 +115691,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -108710,6 +115744,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108717,6 +115752,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108724,6 +115760,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -108750,6 +115787,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108757,6 +115795,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108764,12 +115803,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -108783,12 +115824,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108796,6 +115839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -108879,6 +115923,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -108886,6 +115931,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109089,6 +116135,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109096,6 +116143,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109127,6 +116175,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109134,6 +116183,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109141,6 +116191,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109301,6 +116352,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109308,6 +116360,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109315,6 +116368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109341,6 +116395,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109348,6 +116403,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109355,12 +116411,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -109374,12 +116432,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109387,6 +116447,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109394,6 +116455,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109472,6 +116534,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109479,6 +116542,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109486,6 +116550,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109511,12 +116576,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109524,6 +116591,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109531,6 +116599,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109538,6 +116607,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -109590,6 +116660,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109597,6 +116668,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109604,6 +116676,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109611,6 +116684,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -109637,6 +116711,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109644,6 +116719,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109651,6 +116727,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109658,12 +116735,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -109677,12 +116756,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109690,6 +116771,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109697,6 +116779,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109779,12 +116862,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109792,6 +116877,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109799,6 +116885,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109862,6 +116949,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109869,6 +116957,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109876,6 +116965,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109901,12 +116991,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109914,6 +117006,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109921,6 +117014,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109928,6 +117022,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -109975,6 +117070,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -109982,6 +117078,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109989,6 +117086,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -109996,6 +117094,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -110022,6 +117121,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110029,6 +117129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110036,6 +117137,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110043,12 +117145,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -110062,12 +117166,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events.exceptionOccurrences_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110075,6 +117181,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110082,6 +117189,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110266,6 +117374,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110273,6 +117382,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110280,6 +117390,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110305,12 +117416,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events.exceptionOccurrences_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110318,6 +117431,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110325,6 +117439,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110332,6 +117447,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110480,6 +117596,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110487,6 +117604,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110494,6 +117612,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110501,6 +117620,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110527,6 +117647,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110534,6 +117655,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110541,6 +117663,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110548,12 +117671,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -110567,12 +117692,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.exceptionOccurrences.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110580,6 +117707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110587,6 +117715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110594,6 +117723,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110672,6 +117802,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110679,6 +117810,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110686,6 +117818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110693,6 +117826,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110718,12 +117852,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.exceptionOccurrences.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110731,6 +117867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110738,6 +117875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110745,6 +117883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110752,6 +117891,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -110804,6 +117944,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110811,6 +117952,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110818,6 +117960,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110825,6 +117968,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110832,6 +117976,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -110858,6 +118003,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110865,6 +118011,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110872,6 +118019,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110879,6 +118027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110886,12 +118035,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -110905,12 +118056,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events.exceptionOccurrences.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -110918,6 +118071,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110925,6 +118079,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -110932,6 +118087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111019,12 +118175,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.exceptionOccurrences.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111032,6 +118190,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111039,6 +118198,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111046,6 +118206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111109,6 +118270,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111116,6 +118278,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111123,6 +118286,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111130,6 +118294,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111155,12 +118320,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.exceptionOccurrences.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111168,6 +118335,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111175,6 +118343,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111182,6 +118351,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111189,6 +118359,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -111236,6 +118407,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111243,6 +118415,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111250,6 +118423,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111257,6 +118431,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111264,6 +118439,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -111290,6 +118466,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111297,6 +118474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111304,6 +118482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111311,6 +118490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111318,12 +118498,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -111337,12 +118519,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111350,6 +118534,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111357,6 +118542,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111364,6 +118550,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111431,6 +118618,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111438,6 +118626,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111445,6 +118634,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111452,6 +118642,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111477,12 +118668,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111490,6 +118683,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111497,6 +118691,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111504,6 +118699,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111511,6 +118707,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -111559,6 +118756,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111566,6 +118764,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111573,6 +118772,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111580,6 +118780,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111587,6 +118788,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -111613,6 +118815,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111620,6 +118823,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111627,6 +118831,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111634,6 +118839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111641,12 +118847,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -111660,12 +118868,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111673,6 +118883,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111680,6 +118891,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111687,6 +118899,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111754,6 +118967,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111761,6 +118975,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111768,6 +118983,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111775,6 +118991,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111800,12 +119017,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111813,6 +119032,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111820,6 +119040,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111827,6 +119048,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111834,6 +119056,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -111882,6 +119105,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111889,6 +119113,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111896,6 +119121,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111903,6 +119129,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111910,6 +119137,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -111936,6 +119164,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111943,6 +119172,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111950,6 +119180,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111957,6 +119188,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -111964,12 +119196,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -111983,12 +119217,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -111996,6 +119232,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112003,6 +119240,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112070,6 +119308,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112077,6 +119316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112084,6 +119324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112109,12 +119350,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112122,6 +119365,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112129,6 +119373,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112136,6 +119381,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -112184,6 +119430,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112191,6 +119438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112198,6 +119446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112205,6 +119454,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -112231,6 +119481,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112238,6 +119489,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112245,6 +119497,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112252,12 +119505,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -112271,12 +119526,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112284,6 +119541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112291,6 +119549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112358,6 +119617,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112365,6 +119625,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112372,6 +119633,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112397,12 +119659,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112410,6 +119674,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112417,6 +119682,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112424,6 +119690,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -112472,6 +119739,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112479,6 +119747,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112486,6 +119755,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112493,6 +119763,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -112519,6 +119790,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112526,6 +119798,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112533,6 +119806,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112540,12 +119814,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -112559,12 +119835,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112572,6 +119850,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112635,6 +119914,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112642,6 +119922,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112667,12 +119948,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112680,6 +119963,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112687,6 +119971,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -112734,6 +120019,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112741,6 +120027,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112748,6 +120035,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -112774,6 +120062,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112781,6 +120070,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -112788,12 +120078,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -112807,12 +120099,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_ListInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -112820,6 +120114,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113004,6 +120299,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113011,6 +120307,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113036,12 +120333,14 @@ paths: tags: - users.event summary: Get instances from users + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' operationId: users.events_GetInstances parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113049,6 +120348,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113056,6 +120356,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113197,6 +120498,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113204,6 +120506,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113211,6 +120514,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113237,6 +120541,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113244,6 +120549,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113251,12 +120557,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -113270,12 +120578,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.instances_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113283,6 +120593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113290,6 +120601,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113368,6 +120680,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113375,6 +120688,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113382,6 +120696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113407,12 +120722,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.instances_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113420,6 +120737,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113427,6 +120745,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113434,6 +120753,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -113486,6 +120806,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113493,6 +120814,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113500,6 +120822,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113507,6 +120830,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -113533,6 +120857,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113540,6 +120865,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113547,6 +120873,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113554,12 +120881,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -113573,12 +120902,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events.instances_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113586,6 +120917,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113593,6 +120925,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113681,6 +121014,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113688,6 +121022,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113695,6 +121030,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113898,6 +121234,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113905,6 +121242,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113912,6 +121250,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113943,6 +121282,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -113950,6 +121290,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113957,6 +121298,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -113964,6 +121306,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114131,6 +121474,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114138,6 +121482,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114145,6 +121490,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114152,6 +121498,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114178,6 +121525,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114185,6 +121533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114192,6 +121541,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114199,12 +121549,14 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -114218,12 +121570,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.instances.exceptionOccurrences_ListAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114231,6 +121585,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114238,6 +121593,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114245,6 +121601,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114323,6 +121680,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114330,6 +121688,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114337,6 +121696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114344,6 +121704,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114369,12 +121730,14 @@ paths: tags: - users.event summary: Get attachments from users + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' operationId: users.events.instances.exceptionOccurrences_GetAttachments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114382,6 +121745,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114389,6 +121753,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114396,6 +121761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114403,6 +121769,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -114455,6 +121822,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114462,6 +121830,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114469,6 +121838,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114476,6 +121846,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114483,6 +121854,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -114509,6 +121881,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114516,6 +121889,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114523,6 +121897,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114530,6 +121905,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114537,12 +121913,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -114556,12 +121934,14 @@ paths: tags: - users.event summary: Get calendar from users + description: The calendar that contains the event. Navigation property. Read-only. operationId: users.events.instances.exceptionOccurrences_GetCalendar parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114569,6 +121949,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114576,6 +121957,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114583,6 +121965,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114670,12 +122053,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.instances.exceptionOccurrences_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114683,6 +122068,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114690,6 +122076,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114697,6 +122084,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114760,6 +122148,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114767,6 +122156,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114774,6 +122164,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114781,6 +122172,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114806,12 +122198,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.instances.exceptionOccurrences_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114819,6 +122213,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114826,6 +122221,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114833,6 +122229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114840,6 +122237,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -114887,6 +122285,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114894,6 +122293,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114901,6 +122301,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114908,6 +122309,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114915,6 +122317,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -114941,6 +122344,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -114948,6 +122352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114955,6 +122360,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114962,6 +122368,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -114969,12 +122376,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -114988,12 +122397,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances.exceptionOccurrences_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115001,6 +122412,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115008,6 +122420,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115015,6 +122428,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115082,6 +122496,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115089,6 +122504,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115096,6 +122512,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115103,6 +122520,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115128,12 +122546,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances.exceptionOccurrences_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115141,6 +122561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115148,6 +122569,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115155,6 +122577,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115162,6 +122585,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -115210,6 +122634,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115217,6 +122642,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115224,6 +122650,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115231,6 +122658,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115238,6 +122666,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -115264,6 +122693,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115271,6 +122701,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115278,6 +122709,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115285,6 +122717,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115292,12 +122725,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -115311,12 +122746,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances.exceptionOccurrences_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115324,6 +122761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115331,6 +122769,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115338,6 +122777,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115405,6 +122845,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115412,6 +122853,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115419,6 +122861,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115426,6 +122869,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115451,12 +122895,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances.exceptionOccurrences_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115464,6 +122910,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115471,6 +122918,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115478,6 +122926,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115485,6 +122934,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -115533,6 +122983,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115540,6 +122991,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115547,6 +122999,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115554,6 +123007,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115561,6 +123015,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -115587,6 +123042,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115594,6 +123050,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115601,6 +123058,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115608,6 +123066,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115615,12 +123074,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -115634,12 +123095,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.instances_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115647,6 +123110,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115654,6 +123118,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115717,6 +123182,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115724,6 +123190,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115731,6 +123198,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115756,12 +123224,14 @@ paths: tags: - users.event summary: Get extensions from users + description: The collection of open extensions defined for the event. Nullable. operationId: users.events.instances_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115769,6 +123239,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115776,6 +123247,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115783,6 +123255,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -115830,6 +123303,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115837,6 +123311,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115844,6 +123319,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115851,6 +123327,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -115877,6 +123354,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115884,6 +123362,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115891,6 +123370,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115898,12 +123378,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -115917,12 +123399,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -115930,6 +123414,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -115937,6 +123422,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116004,6 +123490,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116011,6 +123498,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116018,6 +123506,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116043,12 +123532,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116056,6 +123547,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116063,6 +123555,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116070,6 +123563,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -116118,6 +123612,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116125,6 +123620,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116132,6 +123628,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116139,6 +123636,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -116165,6 +123663,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116172,6 +123671,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116179,6 +123679,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116186,12 +123687,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -116205,12 +123708,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116218,6 +123723,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116225,6 +123731,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116292,6 +123799,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116299,6 +123807,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116306,6 +123815,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116331,12 +123841,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events.instances_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116344,6 +123856,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116351,6 +123864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116358,6 +123872,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -116406,6 +123921,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116413,6 +123929,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116420,6 +123937,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116427,6 +123945,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -116453,6 +123972,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116460,6 +123980,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116467,6 +123988,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116474,12 +123996,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -116493,12 +124017,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_ListMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116506,6 +124032,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116573,6 +124100,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116580,6 +124108,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116605,12 +124134,14 @@ paths: tags: - users.event summary: Get multiValueExtendedProperties from users + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_GetMultiValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116618,6 +124149,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116625,6 +124157,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -116673,6 +124206,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116680,6 +124214,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116687,6 +124222,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -116713,6 +124249,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116720,6 +124257,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116727,12 +124265,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -116746,12 +124286,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_ListSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116759,6 +124301,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116826,6 +124369,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116833,6 +124377,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116858,12 +124403,14 @@ paths: tags: - users.event summary: Get singleValueExtendedProperties from users + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. operationId: users.events_GetSingleValueExtendedProperties parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116871,6 +124418,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116878,6 +124426,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -116926,6 +124475,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116933,6 +124483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116940,6 +124491,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -116966,6 +124518,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -116973,6 +124526,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -116980,12 +124534,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -117446,10 +125002,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -118119,6 +125673,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -118127,6 +125683,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -118134,18 +125692,24 @@ components: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean search: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string securitySchemes: diff --git a/openApiDocs/beta/ChangeNotifications.yml b/openApiDocs/beta/ChangeNotifications.yml index 83752a5979a..7186fa2e44b 100644 --- a/openApiDocs/beta/ChangeNotifications.yml +++ b/openApiDocs/beta/ChangeNotifications.yml @@ -11,6 +11,7 @@ paths: tags: - subscriptions.subscription summary: List subscriptions + description: 'Retrieve a list of webhook subscriptions. The content of the response depends on the context in which the app is calling; for details, see the scenarios in the Permissions section.' operationId: subscriptions.subscription_ListSubscription parameters: - $ref: '#/components/parameters/search' @@ -54,6 +55,7 @@ paths: tags: - subscriptions.subscription summary: Create subscription + description: 'Subscribes a listener application to receive change notifications when the requested type of changes occur to the specified resource in Microsoft Graph. See the table in the Permissions section for the list of resources that support subscribing to change notifications. Some resources support the option to include encrypted resource data in change notifications. These resources include chatMessage, contact, event, message, onlineMeetings and presence. For more information, see Set up change notifications that include resource data and Change notifications for Outlook resources in Microsoft Graph.' operationId: subscriptions.subscription_CreateSubscription requestBody: description: New entity @@ -77,12 +79,14 @@ paths: tags: - subscriptions.subscription summary: Get subscription + description: Retrieve the properties and relationships of a subscription. See the table in the Permissions section for the list of resources that support subscribing to change notifications. operationId: subscriptions.subscription_GetSubscription parameters: - name: subscription-id in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -130,12 +134,14 @@ paths: tags: - subscriptions.subscription summary: Update subscription + description: 'Renew a subscription by extending its expiry time. The table in the Permissions section lists the resources that support subscribing to change notifications. Subscriptions expire after a length of time that varies by resource type. In order to avoid missing change notifications, an app should renew its subscriptions well in advance of their expiry date. See subscription for maximum length of a subscription for each resource type.' operationId: subscriptions.subscription_UpdateSubscription parameters: - name: subscription-id in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -156,18 +162,21 @@ paths: tags: - subscriptions.subscription summary: Delete subscription + description: 'Delete a subscription. For the list of resources that support subscribing to change notifications, see the table in the Permissions section.' operationId: subscriptions.subscription_DeleteSubscription parameters: - name: subscription-id in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -187,6 +196,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -352,6 +362,8 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string securitySchemes: diff --git a/openApiDocs/beta/CloudCommunications.yml b/openApiDocs/beta/CloudCommunications.yml index fce8c134308..e1cd1774e17 100644 --- a/openApiDocs/beta/CloudCommunications.yml +++ b/openApiDocs/beta/CloudCommunications.yml @@ -204,6 +204,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -267,6 +268,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -293,12 +295,14 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -312,12 +316,14 @@ paths: tags: - communications.callRecord summary: Get sessions from communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_ListSessions parameters: - name: callRecord-id in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -402,6 +408,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -427,12 +434,14 @@ paths: tags: - communications.callRecord summary: Get sessions from communications + description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords_GetSessions parameters: - name: callRecord-id in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -440,6 +449,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -501,6 +511,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -508,6 +519,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -534,6 +546,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -541,12 +554,14 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -560,12 +575,14 @@ paths: tags: - communications.callRecord summary: Get segments from communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_ListSegments parameters: - name: callRecord-id in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -573,6 +590,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -655,6 +673,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -662,6 +681,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -687,12 +707,14 @@ paths: tags: - communications.callRecord summary: Get segments from communications + description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions_GetSegments parameters: - name: callRecord-id in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -700,6 +722,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -707,6 +730,7 @@ paths: in: path description: 'key: id of segment' required: true + style: simple schema: type: string x-ms-docs-key-type: segment @@ -760,6 +784,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -767,6 +792,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -774,6 +800,7 @@ paths: in: path description: 'key: id of segment' required: true + style: simple schema: type: string x-ms-docs-key-type: segment @@ -800,6 +827,7 @@ paths: in: path description: 'key: id of callRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: callRecord @@ -807,6 +835,7 @@ paths: in: path description: 'key: id of session' required: true + style: simple schema: type: string x-ms-docs-key-type: session @@ -814,12 +843,14 @@ paths: in: path description: 'key: id of segment' required: true + style: simple schema: type: string x-ms-docs-key-type: segment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1005,6 +1036,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1133,6 +1165,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1159,12 +1192,14 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1184,6 +1219,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1257,6 +1293,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1288,6 +1325,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1295,6 +1333,7 @@ paths: in: path description: 'key: id of audioRoutingGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: audioRoutingGroup @@ -1345,6 +1384,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1352,6 +1392,7 @@ paths: in: path description: 'key: id of audioRoutingGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: audioRoutingGroup @@ -1378,6 +1419,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1385,12 +1427,14 @@ paths: in: path description: 'key: id of audioRoutingGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: audioRoutingGroup - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1410,6 +1454,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1474,6 +1519,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1505,6 +1551,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1512,6 +1559,7 @@ paths: in: path description: 'key: id of contentSharingSession' required: true + style: simple schema: type: string x-ms-docs-key-type: contentSharingSession @@ -1559,6 +1607,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1566,6 +1615,7 @@ paths: in: path description: 'key: id of contentSharingSession' required: true + style: simple schema: type: string x-ms-docs-key-type: contentSharingSession @@ -1592,6 +1642,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1599,12 +1650,14 @@ paths: in: path description: 'key: id of contentSharingSession' required: true + style: simple schema: type: string x-ms-docs-key-type: contentSharingSession - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1624,6 +1677,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1661,6 +1715,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1707,6 +1762,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1744,6 +1800,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1776,6 +1833,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1796,6 +1854,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1833,6 +1892,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1878,6 +1938,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -1954,6 +2015,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2030,6 +2092,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2083,6 +2146,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2118,6 +2182,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2155,6 +2220,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2189,6 +2255,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2226,6 +2293,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2265,6 +2333,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2338,6 +2407,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2369,6 +2439,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2376,6 +2447,7 @@ paths: in: path description: 'key: id of commsOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: commsOperation @@ -2426,6 +2498,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2433,6 +2506,7 @@ paths: in: path description: 'key: id of commsOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: commsOperation @@ -2459,6 +2533,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2466,12 +2541,14 @@ paths: in: path description: 'key: id of commsOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: commsOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2491,6 +2568,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2576,6 +2654,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2607,6 +2686,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2614,6 +2694,7 @@ paths: in: path description: 'key: id of participant' required: true + style: simple schema: type: string x-ms-docs-key-type: participant @@ -2675,6 +2756,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2682,6 +2764,7 @@ paths: in: path description: 'key: id of participant' required: true + style: simple schema: type: string x-ms-docs-key-type: participant @@ -2708,6 +2791,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2715,12 +2799,14 @@ paths: in: path description: 'key: id of participant' required: true + style: simple schema: type: string x-ms-docs-key-type: participant - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2740,6 +2826,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2747,6 +2834,7 @@ paths: in: path description: 'key: id of participant' required: true + style: simple schema: type: string x-ms-docs-key-type: participant @@ -2784,6 +2872,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2791,6 +2880,7 @@ paths: in: path description: 'key: id of participant' required: true + style: simple schema: type: string x-ms-docs-key-type: participant @@ -2830,6 +2920,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2837,6 +2928,7 @@ paths: in: path description: 'key: id of participant' required: true + style: simple schema: type: string x-ms-docs-key-type: participant @@ -2874,6 +2966,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -2915,6 +3008,7 @@ paths: in: path description: 'key: id of call' required: true + style: simple schema: type: string x-ms-docs-key-type: call @@ -3193,6 +3287,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3299,6 +3394,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3325,12 +3421,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3344,12 +3442,14 @@ paths: tags: - communications.onlineMeeting summary: Get alternativeRecording for the navigation property onlineMeetings from communications + description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: communications_GetOnlineMeetingsAlternativeRecording parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3368,12 +3468,14 @@ paths: tags: - communications.onlineMeeting summary: Update alternativeRecording for the navigation property onlineMeetings in communications + description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: communications_SetOnlineMeetingsAlternativeRecording parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3396,12 +3498,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendanceReports from communications + description: The attendance reports of an online meeting. Read-only. operationId: communications.onlineMeetings_ListAttendanceReports parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3477,6 +3581,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3502,12 +3607,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendanceReports from communications + description: The attendance reports of an online meeting. Read-only. operationId: communications.onlineMeetings_GetAttendanceReports parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3515,6 +3622,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3573,6 +3681,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3580,6 +3689,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3606,6 +3716,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3613,12 +3724,14 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3632,12 +3745,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications + description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.attendanceReports_ListAttendanceRecords parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3645,6 +3760,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3727,6 +3843,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3734,6 +3851,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3759,12 +3877,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications + description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.attendanceReports_GetAttendanceRecords parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3772,6 +3892,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3779,6 +3900,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -3832,6 +3954,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3839,6 +3962,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3846,6 +3970,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -3872,6 +3997,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3879,6 +4005,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -3886,12 +4013,14 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3905,12 +4034,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendeeReport for the navigation property onlineMeetings from communications + description: The content stream of the attendee report of a Teams live event. Read-only. operationId: communications_GetOnlineMeetingsAttendeeReport parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3929,12 +4060,14 @@ paths: tags: - communications.onlineMeeting summary: Update attendeeReport for the navigation property onlineMeetings in communications + description: The content stream of the attendee report of a Teams live event. Read-only. operationId: communications_SetOnlineMeetingsAttendeeReport parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -3963,6 +4096,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4020,6 +4154,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4046,12 +4181,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4065,12 +4202,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications + description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.meetingAttendanceReport_ListAttendanceRecords parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4153,6 +4292,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4178,12 +4318,14 @@ paths: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications + description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.meetingAttendanceReport_GetAttendanceRecords parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4191,6 +4333,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -4244,6 +4387,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4251,6 +4395,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -4277,6 +4422,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4284,12 +4430,14 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4303,12 +4451,14 @@ paths: tags: - communications.onlineMeeting summary: Get recording for the navigation property onlineMeetings from communications + description: The content stream of the recording of a Teams live event. Read-only. operationId: communications_GetOnlineMeetingsRecording parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4327,12 +4477,14 @@ paths: tags: - communications.onlineMeeting summary: Update recording for the navigation property onlineMeetings in communications + description: The content stream of the recording of a Teams live event. Read-only. operationId: communications_SetOnlineMeetingsRecording parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4355,12 +4507,14 @@ paths: tags: - communications.onlineMeeting summary: Get registration from communications + description: The registration that has been enabled for an online meeting. One online meeting can only have one registration enabled. operationId: communications.onlineMeetings_GetRegistration parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4429,6 +4583,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4455,12 +4610,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4474,12 +4631,14 @@ paths: tags: - communications.onlineMeeting summary: Get customQuestions from communications + description: Custom registration questions. operationId: communications.onlineMeetings.registration_ListCustomQuestions parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4556,6 +4715,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4581,12 +4741,14 @@ paths: tags: - communications.onlineMeeting summary: Get customQuestions from communications + description: Custom registration questions. operationId: communications.onlineMeetings.registration_GetCustomQuestions parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4594,6 +4756,7 @@ paths: in: path description: 'key: id of meetingRegistrationQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion @@ -4645,6 +4808,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4652,6 +4816,7 @@ paths: in: path description: 'key: id of meetingRegistrationQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion @@ -4678,6 +4843,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4685,12 +4851,14 @@ paths: in: path description: 'key: id of meetingRegistrationQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4704,12 +4872,14 @@ paths: tags: - communications.onlineMeeting summary: Get transcripts from communications + description: The transcripts of an online meeting. Read-only. operationId: communications.onlineMeetings_ListTranscripts parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4780,6 +4950,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4805,12 +4976,14 @@ paths: tags: - communications.onlineMeeting summary: Get transcripts from communications + description: The transcripts of an online meeting. Read-only. operationId: communications.onlineMeetings_GetTranscripts parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4818,6 +4991,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -4867,6 +5041,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4874,6 +5049,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -4900,6 +5076,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4907,12 +5084,14 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4926,12 +5105,14 @@ paths: tags: - communications.onlineMeeting summary: Get content for the navigation property transcripts from communications + description: A field representing the content of the transcript. Read-only. operationId: communications.onlineMeetings_GetTranscriptsContent parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4939,6 +5120,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -4957,12 +5139,14 @@ paths: tags: - communications.onlineMeeting summary: Update content for the navigation property transcripts in communications + description: A field representing the content of the transcript. Read-only. operationId: communications.onlineMeetings_SetTranscriptsContent parameters: - name: onlineMeeting-id in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -4970,6 +5154,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -4998,6 +5183,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -5050,6 +5236,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -5076,12 +5263,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5235,6 +5424,7 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence @@ -5294,6 +5484,7 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence @@ -5320,12 +5511,14 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5345,6 +5538,7 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence @@ -5378,6 +5572,7 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence @@ -5398,6 +5593,7 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence @@ -5440,6 +5636,7 @@ paths: in: path description: 'key: id of presence' required: true + style: simple schema: type: string x-ms-docs-key-type: presence @@ -5452,10 +5649,8 @@ paths: properties: availability: type: string - nullable: true activity: type: string - nullable: true expirationDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string @@ -5481,6 +5676,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5639,6 +5835,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5670,6 +5867,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5677,6 +5875,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -5788,6 +5987,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5795,6 +5995,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -5821,6 +6022,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5828,12 +6030,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5847,12 +6051,14 @@ paths: tags: - users.onlineMeeting summary: Get alternativeRecording for the navigation property onlineMeetings from users + description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: users_GetOnlineMeetingsAlternativeRecording parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5860,6 +6066,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -5878,12 +6085,14 @@ paths: tags: - users.onlineMeeting summary: Update alternativeRecording for the navigation property onlineMeetings in users + description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: users_SetOnlineMeetingsAlternativeRecording parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5891,6 +6100,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -5913,12 +6123,14 @@ paths: tags: - users.onlineMeeting summary: Get attendanceReports from users + description: The attendance reports of an online meeting. Read-only. operationId: users.onlineMeetings_ListAttendanceReports parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -5926,6 +6138,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6001,6 +6214,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6008,6 +6222,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6033,12 +6248,14 @@ paths: tags: - users.onlineMeeting summary: Get attendanceReports from users + description: The attendance reports of an online meeting. Read-only. operationId: users.onlineMeetings_GetAttendanceReports parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6046,6 +6263,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6053,6 +6271,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6112,6 +6331,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6119,6 +6339,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6126,6 +6347,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6152,6 +6374,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6159,6 +6382,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6166,12 +6390,14 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6185,12 +6411,14 @@ paths: tags: - users.onlineMeeting summary: Get attendanceRecords from users + description: List of attendance records of an attendance report. Read-only. operationId: users.onlineMeetings.attendanceReports_ListAttendanceRecords parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6198,6 +6426,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6205,6 +6434,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6287,6 +6517,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6294,6 +6525,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6301,6 +6533,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6326,12 +6559,14 @@ paths: tags: - users.onlineMeeting summary: Get attendanceRecords from users + description: List of attendance records of an attendance report. Read-only. operationId: users.onlineMeetings.attendanceReports_GetAttendanceRecords parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6339,6 +6574,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6346,6 +6582,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6353,6 +6590,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -6406,6 +6644,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6413,6 +6652,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6420,6 +6660,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6427,6 +6668,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -6453,6 +6695,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6460,6 +6703,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6467,6 +6711,7 @@ paths: in: path description: 'key: id of meetingAttendanceReport' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingAttendanceReport @@ -6474,12 +6719,14 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6493,12 +6740,14 @@ paths: tags: - users.onlineMeeting summary: Get attendeeReport for the navigation property onlineMeetings from users + description: The content stream of the attendee report of a Teams live event. Read-only. operationId: users_GetOnlineMeetingsAttendeeReport parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6506,6 +6755,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6524,12 +6774,14 @@ paths: tags: - users.onlineMeeting summary: Update attendeeReport for the navigation property onlineMeetings in users + description: The content stream of the attendee report of a Teams live event. Read-only. operationId: users_SetOnlineMeetingsAttendeeReport parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6537,6 +6789,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6565,6 +6818,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6572,6 +6826,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6630,6 +6885,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6637,6 +6893,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6663,6 +6920,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6670,12 +6928,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6689,12 +6949,14 @@ paths: tags: - users.onlineMeeting summary: Get attendanceRecords from users + description: List of attendance records of an attendance report. Read-only. operationId: users.onlineMeetings.meetingAttendanceReport_ListAttendanceRecords parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6702,6 +6964,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6784,6 +7047,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6791,6 +7055,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6816,12 +7081,14 @@ paths: tags: - users.onlineMeeting summary: Get attendanceRecords from users + description: List of attendance records of an attendance report. Read-only. operationId: users.onlineMeetings.meetingAttendanceReport_GetAttendanceRecords parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6829,6 +7096,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6836,6 +7104,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -6889,6 +7158,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6896,6 +7166,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6903,6 +7174,7 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord @@ -6929,6 +7201,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6936,6 +7209,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6943,12 +7217,14 @@ paths: in: path description: 'key: id of attendanceRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: attendanceRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6962,12 +7238,14 @@ paths: tags: - users.onlineMeeting summary: Get recording for the navigation property onlineMeetings from users + description: The content stream of the recording of a Teams live event. Read-only. operationId: users_GetOnlineMeetingsRecording parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -6975,6 +7253,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -6993,12 +7272,14 @@ paths: tags: - users.onlineMeeting summary: Update recording for the navigation property onlineMeetings in users + description: The content stream of the recording of a Teams live event. Read-only. operationId: users_SetOnlineMeetingsRecording parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7006,6 +7287,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7028,12 +7310,14 @@ paths: tags: - users.onlineMeeting summary: Get registration from users + description: The registration that has been enabled for an online meeting. One online meeting can only have one registration enabled. operationId: users.onlineMeetings_GetRegistration parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7041,6 +7325,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7111,6 +7396,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7118,6 +7404,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7144,6 +7431,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7151,12 +7439,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7170,12 +7460,14 @@ paths: tags: - users.onlineMeeting summary: Get customQuestions from users + description: Custom registration questions. operationId: users.onlineMeetings.registration_ListCustomQuestions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7183,6 +7475,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7259,6 +7552,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7266,6 +7560,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7291,12 +7586,14 @@ paths: tags: - users.onlineMeeting summary: Get customQuestions from users + description: Custom registration questions. operationId: users.onlineMeetings.registration_GetCustomQuestions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7304,6 +7601,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7311,6 +7609,7 @@ paths: in: path description: 'key: id of meetingRegistrationQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion @@ -7362,6 +7661,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7369,6 +7669,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7376,6 +7677,7 @@ paths: in: path description: 'key: id of meetingRegistrationQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion @@ -7402,6 +7704,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7409,6 +7712,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7416,12 +7720,14 @@ paths: in: path description: 'key: id of meetingRegistrationQuestion' required: true + style: simple schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7435,12 +7741,14 @@ paths: tags: - users.onlineMeeting summary: Get transcripts from users + description: The transcripts of an online meeting. Read-only. operationId: users.onlineMeetings_ListTranscripts parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7448,6 +7756,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7518,6 +7827,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7525,6 +7835,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7550,12 +7861,14 @@ paths: tags: - users.onlineMeeting summary: Get transcripts from users + description: The transcripts of an online meeting. Read-only. operationId: users.onlineMeetings_GetTranscripts parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7563,6 +7876,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7570,6 +7884,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -7619,6 +7934,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7626,6 +7942,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7633,6 +7950,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -7659,6 +7977,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7666,6 +7985,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7673,12 +7993,14 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7692,12 +8014,14 @@ paths: tags: - users.onlineMeeting summary: Get content for the navigation property transcripts from users + description: A field representing the content of the transcript. Read-only. operationId: users.onlineMeetings_GetTranscriptsContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7705,6 +8029,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7712,6 +8037,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -7730,12 +8056,14 @@ paths: tags: - users.onlineMeeting summary: Update content for the navigation property transcripts in users + description: A field representing the content of the transcript. Read-only. operationId: users.onlineMeetings_SetTranscriptsContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7743,6 +8071,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7750,6 +8079,7 @@ paths: in: path description: 'key: id of callTranscript' required: true + style: simple schema: type: string x-ms-docs-key-type: callTranscript @@ -7778,6 +8108,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7785,6 +8116,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7837,6 +8169,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7844,6 +8177,7 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting @@ -7870,6 +8204,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7877,12 +8212,14 @@ paths: in: path description: 'key: id of onlineMeeting' required: true + style: simple schema: type: string x-ms-docs-key-type: onlineMeeting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7902,6 +8239,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7961,6 +8299,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -7987,12 +8326,14 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9566,11 +9907,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -10599,6 +10940,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -10607,6 +10950,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -10614,18 +10959,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/Compliance.yml b/openApiDocs/beta/Compliance.yml index 47d7e5dbdc6..b6a932f9bec 100644 --- a/openApiDocs/beta/Compliance.yml +++ b/openApiDocs/beta/Compliance.yml @@ -142,6 +142,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -284,6 +285,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -393,6 +395,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -419,12 +422,14 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -438,12 +443,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodians from compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListCustodians parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -543,6 +550,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -568,12 +576,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodians from compliance + description: Returns a list of case custodian objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetCustodians parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -581,6 +591,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -676,6 +687,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -683,6 +695,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -709,6 +722,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -716,12 +730,14 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -741,6 +757,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -748,6 +765,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -768,6 +786,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -775,6 +794,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -795,6 +815,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -802,6 +823,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -822,6 +844,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -829,6 +852,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -849,6 +873,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -856,6 +881,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -870,12 +896,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_ListSiteSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -883,6 +911,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -961,6 +990,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -968,6 +998,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -993,12 +1024,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the custodian. operationId: compliance.ediscovery.cases.custodians_GetSiteSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1006,6 +1039,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1013,6 +1047,7 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource @@ -1073,6 +1108,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1080,6 +1116,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1087,6 +1124,7 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource @@ -1113,6 +1151,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1120,6 +1159,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1127,12 +1167,14 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1146,12 +1188,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get site from compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.custodians.siteSources_GetSite parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1159,6 +1203,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1166,6 +1211,7 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource @@ -1352,12 +1398,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSources from compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_ListUnifiedGroupSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1365,6 +1413,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1446,6 +1495,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1453,6 +1503,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1478,12 +1529,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSources from compliance + description: Data source entity for groups associated with the custodian. operationId: compliance.ediscovery.cases.custodians_GetUnifiedGroupSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1491,6 +1544,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1498,6 +1552,7 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource @@ -1559,6 +1614,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1566,6 +1622,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1573,6 +1630,7 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource @@ -1599,6 +1657,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1606,6 +1665,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1613,12 +1673,14 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1632,12 +1694,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get group from compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources_GetGroup parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1645,6 +1709,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -1652,6 +1717,7 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource @@ -1970,12 +2036,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_ListUserSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -1983,6 +2051,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -2068,6 +2137,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2075,6 +2145,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -2100,12 +2171,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.custodians_GetUserSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2113,6 +2186,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -2120,6 +2194,7 @@ paths: in: path description: 'key: id of userSource' required: true + style: simple schema: type: string x-ms-docs-key-type: userSource @@ -2174,6 +2249,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2181,6 +2257,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -2188,6 +2265,7 @@ paths: in: path description: 'key: id of userSource' required: true + style: simple schema: type: string x-ms-docs-key-type: userSource @@ -2214,6 +2292,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2221,6 +2300,7 @@ paths: in: path description: 'key: id of custodian' required: true + style: simple schema: type: string x-ms-docs-key-type: custodian @@ -2228,12 +2308,14 @@ paths: in: path description: 'key: id of userSource' required: true + style: simple schema: type: string x-ms-docs-key-type: userSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2253,6 +2335,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2288,6 +2371,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2317,12 +2401,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get legalHolds from compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListLegalHolds parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2423,6 +2509,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2448,12 +2535,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get legalHolds from compliance + description: Returns a list of case legalHold objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetLegalHolds parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2461,6 +2550,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2540,6 +2630,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2547,6 +2638,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2573,6 +2665,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2580,12 +2673,14 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2599,12 +2694,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_ListSiteSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2612,6 +2709,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2690,6 +2788,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2697,6 +2796,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2722,12 +2822,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance + description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds_GetSiteSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2735,6 +2837,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2742,6 +2845,7 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource @@ -2802,6 +2906,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2809,6 +2914,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2816,6 +2922,7 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource @@ -2842,6 +2949,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2849,6 +2957,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2856,12 +2965,14 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2875,12 +2986,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get site from compliance + description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.legalHolds.siteSources_GetSite parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -2888,6 +3001,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -2895,6 +3009,7 @@ paths: in: path description: 'key: id of siteSource' required: true + style: simple schema: type: string x-ms-docs-key-type: siteSource @@ -3087,6 +3202,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3094,6 +3210,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3175,6 +3292,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3182,6 +3300,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3213,6 +3332,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3220,6 +3340,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3227,6 +3348,7 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource @@ -3288,6 +3410,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3295,6 +3418,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3302,6 +3426,7 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource @@ -3328,6 +3453,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3335,6 +3461,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3342,12 +3469,14 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3361,12 +3490,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get group from compliance + description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources_GetGroup parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3374,6 +3505,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3381,6 +3513,7 @@ paths: in: path description: 'key: id of unifiedGroupSource' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedGroupSource @@ -3699,12 +3832,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_ListUserSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3712,6 +3847,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3797,6 +3933,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3804,6 +3941,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3829,12 +3967,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get userSources from compliance + description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds_GetUserSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3842,6 +3982,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3849,6 +3990,7 @@ paths: in: path description: 'key: id of userSource' required: true + style: simple schema: type: string x-ms-docs-key-type: userSource @@ -3903,6 +4045,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3910,6 +4053,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3917,6 +4061,7 @@ paths: in: path description: 'key: id of userSource' required: true + style: simple schema: type: string x-ms-docs-key-type: userSource @@ -3943,6 +4088,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -3950,6 +4096,7 @@ paths: in: path description: 'key: id of legalHold' required: true + style: simple schema: type: string x-ms-docs-key-type: legalHold @@ -3957,12 +4104,14 @@ paths: in: path description: 'key: id of userSource' required: true + style: simple schema: type: string x-ms-docs-key-type: userSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3982,6 +4131,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4002,6 +4152,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4016,12 +4167,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialDataSources from compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListNoncustodialDataSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4111,6 +4264,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4136,12 +4290,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialDataSources from compliance + description: Returns a list of case noncustodialDataSource objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetNoncustodialDataSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4149,6 +4305,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4226,6 +4383,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4233,6 +4391,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4259,6 +4418,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4266,12 +4426,14 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4285,12 +4447,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get dataSource from compliance + description: User source or SharePoint site data source as non-custodial data source. operationId: compliance.ediscovery.cases.noncustodialDataSources_GetDataSource parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4298,6 +4462,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4349,6 +4514,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4356,6 +4522,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4382,6 +4549,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4389,12 +4557,14 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4414,6 +4584,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4421,6 +4592,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4441,6 +4613,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4448,6 +4621,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4468,6 +4642,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4475,6 +4650,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4495,6 +4671,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4502,6 +4679,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -4522,6 +4700,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4557,6 +4736,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4586,12 +4766,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get operations from compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_ListOperations parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4677,6 +4859,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4702,12 +4885,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get operations from compliance + description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases_GetOperations parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4715,6 +4900,7 @@ paths: in: path description: 'key: id of caseOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: caseOperation @@ -4769,6 +4955,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4776,6 +4963,7 @@ paths: in: path description: 'key: id of caseOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: caseOperation @@ -4802,6 +4990,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4809,12 +4998,14 @@ paths: in: path description: 'key: id of caseOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: caseOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4828,12 +5019,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get reviewSets from compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_ListReviewSets parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4909,6 +5102,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4934,12 +5128,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get reviewSets from compliance + description: Returns a list of reviewSet objects in the case. Read-only. Nullable. operationId: compliance.ediscovery.cases_GetReviewSets parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -4947,6 +5143,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5009,6 +5206,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5016,6 +5214,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5042,6 +5241,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5049,12 +5249,14 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5074,6 +5276,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5081,6 +5284,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5115,6 +5319,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5122,6 +5327,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5168,6 +5374,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5175,6 +5382,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5257,6 +5465,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5264,6 +5473,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5295,6 +5505,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5302,6 +5513,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5309,6 +5521,7 @@ paths: in: path description: 'key: id of reviewSetQuery' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSetQuery @@ -5365,6 +5578,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5372,6 +5586,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5379,6 +5594,7 @@ paths: in: path description: 'key: id of reviewSetQuery' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSetQuery @@ -5405,6 +5621,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5412,6 +5629,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5419,12 +5637,14 @@ paths: in: path description: 'key: id of reviewSetQuery' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSetQuery - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5444,6 +5664,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5451,6 +5672,7 @@ paths: in: path description: 'key: id of reviewSet' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSet @@ -5458,6 +5680,7 @@ paths: in: path description: 'key: id of reviewSetQuery' required: true + style: simple schema: type: string x-ms-docs-key-type: reviewSetQuery @@ -5496,6 +5719,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5549,6 +5773,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5575,12 +5800,14 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5600,6 +5827,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5614,12 +5842,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get sourceCollections from compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_ListSourceCollections parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5718,6 +5948,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5743,12 +5974,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get sourceCollections from compliance + description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases_GetSourceCollections parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5756,6 +5989,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -5851,6 +6085,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5858,6 +6093,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -5884,6 +6120,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5891,12 +6128,14 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5910,12 +6149,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get additionalSources from compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_ListAdditionalSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -5923,6 +6164,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -5999,6 +6241,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6006,6 +6249,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6031,12 +6275,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get additionalSources from compliance + description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_GetAdditionalSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6044,6 +6290,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6051,6 +6298,7 @@ paths: in: path description: 'key: id of dataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSource @@ -6102,6 +6350,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6109,6 +6358,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6116,6 +6366,7 @@ paths: in: path description: 'key: id of dataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSource @@ -6142,6 +6393,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6149,6 +6401,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6156,12 +6409,14 @@ paths: in: path description: 'key: id of dataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6175,12 +6430,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get addToReviewSetOperation from compliance + description: Adds the results of the sourceCollection to the specified reviewSet. operationId: compliance.ediscovery.cases.sourceCollections_GetAddToReviewSetOperation parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6188,6 +6445,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6252,12 +6510,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodianSources from compliance + description: Custodian sources that are included in the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_ListCustodianSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6265,6 +6525,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6336,12 +6597,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get custodianSources from compliance + description: Custodian sources that are included in the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_GetCustodianSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6349,6 +6612,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6356,6 +6620,7 @@ paths: in: path description: 'key: id of dataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSource @@ -6402,12 +6667,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get lastEstimateStatisticsOperation from compliance + description: The last estimate operation associated with the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections_GetLastEstimateStatisticsOperation parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6415,6 +6682,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6484,6 +6752,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6491,6 +6760,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6511,6 +6781,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6518,6 +6789,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6532,12 +6804,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialSources from compliance + description: noncustodialDataSource sources that are included in the sourceCollection operationId: compliance.ediscovery.cases.sourceCollections_ListNoncustodialSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6545,6 +6819,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6629,12 +6904,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get noncustodialSources from compliance + description: noncustodialDataSource sources that are included in the sourceCollection operationId: compliance.ediscovery.cases.sourceCollections_GetNoncustodialSources parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6642,6 +6919,7 @@ paths: in: path description: 'key: id of sourceCollection' required: true + style: simple schema: type: string x-ms-docs-key-type: sourceCollection @@ -6649,6 +6927,7 @@ paths: in: path description: 'key: id of noncustodialDataSource' required: true + style: simple schema: type: string x-ms-docs-key-type: noncustodialDataSource @@ -6715,12 +6994,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get tags from compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_ListTags parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6804,6 +7085,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6829,12 +7111,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get tags from compliance + description: Returns a list of tag objects associated to this case. operationId: compliance.ediscovery.cases_GetTags parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6842,6 +7126,7 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag @@ -6909,6 +7194,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6916,6 +7202,7 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag @@ -6942,6 +7229,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6949,12 +7237,14 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6968,12 +7258,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get childTags from compliance + description: Returns the tags that are a child of a tag. operationId: compliance.ediscovery.cases.tags_ListChildTags parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -6981,6 +7273,7 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag @@ -7059,12 +7352,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get childTags from compliance + description: Returns the tags that are a child of a tag. operationId: compliance.ediscovery.cases.tags_GetChildTags parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -7072,6 +7367,7 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag @@ -7079,6 +7375,7 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag @@ -7143,12 +7440,14 @@ paths: tags: - compliance.ediscoveryroot summary: Get parent from compliance + description: Returns the parent tag of the specified tag. operationId: compliance.ediscovery.cases.tags_GetParent parameters: - name: case-id in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -7156,6 +7455,7 @@ paths: in: path description: 'key: id of tag' required: true + style: simple schema: type: string x-ms-docs-key-type: tag @@ -7224,6 +7524,7 @@ paths: in: path description: 'key: id of case' required: true + style: simple schema: type: string x-ms-docs-key-type: case @@ -8299,7 +8600,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -8675,12 +8975,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -9601,6 +9899,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -9934,11 +10234,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -10075,6 +10375,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -10371,7 +10677,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -10563,7 +10868,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -11618,12 +11922,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -11816,10 +12118,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -12457,6 +12757,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -12632,6 +12977,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -12900,6 +13246,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -13169,6 +13517,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -13208,7 +13558,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -13907,7 +14256,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -14714,7 +15063,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -14871,50 +15219,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -14922,7 +15260,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -15501,7 +15838,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -15855,7 +16191,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -16083,7 +16418,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -16311,11 +16645,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -16345,14 +16679,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -16420,7 +16752,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -16443,7 +16774,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -17105,7 +17435,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -17197,6 +17526,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.operationStatus: title: operationStatus enum: @@ -17610,14 +17947,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -18090,6 +18438,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -18607,7 +18975,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -19087,6 +19455,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -20252,6 +20624,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -21362,43 +21740,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -21879,12 +22250,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -23427,21 +23798,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -23452,7 +23819,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printerShareViewpoint: @@ -23526,12 +23892,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -24976,6 +25345,59 @@ components: additionalProperties: type: object description: The security baseline compliance state of a setting for a device + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.windowsDeviceHealthState: title: windowsDeviceHealthState enum: @@ -26180,7 +26602,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -27116,7 +27537,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -30601,6 +31022,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -30609,6 +31032,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -30616,18 +31041,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/CrossDeviceExperiences.yml b/openApiDocs/beta/CrossDeviceExperiences.yml index c5f0e96be32..fb38264d88f 100644 --- a/openApiDocs/beta/CrossDeviceExperiences.yml +++ b/openApiDocs/beta/CrossDeviceExperiences.yml @@ -17,6 +17,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -122,6 +123,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -153,6 +155,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -160,6 +163,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -228,6 +232,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -235,6 +240,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -261,6 +267,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -268,12 +275,14 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -293,6 +302,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -300,6 +310,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -390,6 +401,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -397,6 +409,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -428,6 +441,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -435,6 +449,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -442,6 +457,7 @@ paths: in: path description: 'key: id of activityHistoryItem' required: true + style: simple schema: type: string x-ms-docs-key-type: activityHistoryItem @@ -506,6 +522,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -513,6 +530,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -520,6 +538,7 @@ paths: in: path description: 'key: id of activityHistoryItem' required: true + style: simple schema: type: string x-ms-docs-key-type: activityHistoryItem @@ -546,6 +565,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -553,6 +573,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -560,12 +581,14 @@ paths: in: path description: 'key: id of activityHistoryItem' required: true + style: simple schema: type: string x-ms-docs-key-type: activityHistoryItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -585,6 +608,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -592,6 +616,7 @@ paths: in: path description: 'key: id of userActivity' required: true + style: simple schema: type: string x-ms-docs-key-type: userActivity @@ -599,6 +624,7 @@ paths: in: path description: 'key: id of activityHistoryItem' required: true + style: simple schema: type: string x-ms-docs-key-type: activityHistoryItem @@ -669,6 +695,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -858,6 +885,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -889,6 +917,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -896,6 +925,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1040,6 +1070,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1047,6 +1078,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1073,6 +1105,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1080,12 +1113,14 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1099,12 +1134,14 @@ paths: tags: - users.device summary: Get commands from users + description: Set of commands sent to this device. operationId: users.devices_ListCommands parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1112,6 +1149,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1202,6 +1240,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1209,6 +1248,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1234,12 +1274,14 @@ paths: tags: - users.device summary: Get commands from users + description: Set of commands sent to this device. operationId: users.devices_GetCommands parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1247,6 +1289,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1254,6 +1297,7 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command @@ -1318,6 +1362,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1325,6 +1370,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1332,6 +1378,7 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command @@ -1358,6 +1405,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1365,6 +1413,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1372,12 +1421,14 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1397,6 +1448,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1404,6 +1456,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1411,6 +1464,7 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command @@ -1453,12 +1507,14 @@ paths: tags: - users.device summary: Get extensions from users + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: users.devices_ListExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1466,6 +1522,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1530,6 +1587,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1537,6 +1595,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1562,12 +1621,14 @@ paths: tags: - users.device summary: Get extensions from users + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: users.devices_GetExtensions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1575,6 +1636,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1582,6 +1644,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -1629,6 +1692,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1636,6 +1700,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1643,6 +1708,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -1669,6 +1735,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1676,6 +1743,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1683,12 +1751,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1702,12 +1772,14 @@ paths: tags: - users.device summary: Get memberOf from users + description: Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. operationId: users.devices_ListMemberGraphOPre parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1715,6 +1787,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1777,12 +1850,14 @@ paths: tags: - users.device summary: Get memberOf from users + description: Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. operationId: users.devices_GetMemberGraphOPre parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1790,6 +1865,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1797,6 +1873,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -1840,12 +1917,14 @@ paths: tags: - users.device summary: Get registeredOwners from users + description: 'The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable. Supports $expand.' operationId: users.devices_ListRegisteredOwners parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1853,6 +1932,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1921,6 +2001,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1928,6 +2009,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -1935,17 +2017,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -1959,12 +2045,14 @@ paths: tags: - users.device summary: Get ref of registeredOwners from users + description: 'The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable. Supports $expand.' operationId: users.devices_ListRegisteredOwnersGraphBPreRef parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -1972,6 +2060,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2014,6 +2103,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2021,18 +2111,12 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -2044,12 +2128,14 @@ paths: tags: - users.device summary: Get registeredUsers from users + description: 'Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand.' operationId: users.devices_ListRegisteredUsers parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2057,6 +2143,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2119,12 +2206,14 @@ paths: tags: - users.device summary: Get registeredUsers from users + description: 'Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand.' operationId: users.devices_GetRegisteredUsers parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2132,6 +2221,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2139,6 +2229,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -2182,12 +2273,14 @@ paths: tags: - users.device summary: Get transitiveMemberOf from users + description: Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. operationId: users.devices_ListTransitiveMemberGraphOPre parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2195,6 +2288,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2257,12 +2351,14 @@ paths: tags: - users.device summary: Get transitiveMemberOf from users + description: Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. operationId: users.devices_GetTransitiveMemberGraphOPre parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2270,6 +2366,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2277,6 +2374,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -2320,12 +2418,14 @@ paths: tags: - users.device summary: Get usageRights from users + description: Represents the usage rights a device has been granted. operationId: users.devices_ListUsageRights parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2333,6 +2433,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2406,6 +2507,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2413,6 +2515,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2438,12 +2541,14 @@ paths: tags: - users.device summary: Get usageRights from users + description: Represents the usage rights a device has been granted. operationId: users.devices_GetUsageRights parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2451,6 +2556,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2458,6 +2564,7 @@ paths: in: path description: 'key: id of usageRight' required: true + style: simple schema: type: string x-ms-docs-key-type: usageRight @@ -2508,6 +2615,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2515,6 +2623,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2522,6 +2631,7 @@ paths: in: path description: 'key: id of usageRight' required: true + style: simple schema: type: string x-ms-docs-key-type: usageRight @@ -2548,6 +2658,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -2555,6 +2666,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -2562,12 +2674,14 @@ paths: in: path description: 'key: id of usageRight' required: true + style: simple schema: type: string x-ms-docs-key-type: usageRight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2586,50 +2700,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -2637,7 +2741,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.activityHistoryItem: @@ -2650,43 +2753,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -3114,6 +3210,13 @@ components: - suspended - unknownFutureValue type: string + ReferenceCreate: + type: object + properties: + '@odata.id': + type: string + additionalProperties: + type: object microsoft.graph.userActivityCollectionResponse: title: Collection of userActivity type: object @@ -3341,6 +3444,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -3349,6 +3454,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -3356,20 +3463,34 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean + requestBodies: + refPostBody: + description: New navigation property ref value + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceCreate' + required: true securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/DeviceManagement.Actions.yml b/openApiDocs/beta/DeviceManagement.Actions.yml index 614cb9057f9..f7c544fc141 100644 --- a/openApiDocs/beta/DeviceManagement.Actions.yml +++ b/openApiDocs/beta/DeviceManagement.Actions.yml @@ -17,6 +17,7 @@ paths: in: path description: 'key: id of androidDeviceOwnerEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile @@ -52,6 +53,7 @@ paths: in: path description: 'key: id of androidDeviceOwnerEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile @@ -72,6 +74,7 @@ paths: in: path description: 'key: id of androidForWorkEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile @@ -107,6 +110,7 @@ paths: in: path description: 'key: id of androidForWorkEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile @@ -260,6 +264,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action createGooglePlayWebToken + description: Generates a web token that is used in an embeddable component. operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings_createGooglePlayWebToken requestBody: description: Action parameters @@ -330,6 +335,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setAndroidDeviceOwnerFullyManagedEnrollmentState + description: Sets the AndroidManagedStoreAccountEnterpriseSettings AndroidDeviceOwnerFullyManagedEnrollmentEnabled to the given value. operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings_setAndroidDeviceOwnerFullyManagedEnrollmentState requestBody: description: Action parameters @@ -379,6 +385,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action generateApplePushNotificationCertificateSigningRequest + description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate_generateApplePushNotificationCertificateSigningRequest responses: '200': @@ -407,6 +414,7 @@ paths: in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -495,6 +503,7 @@ paths: in: path description: 'key: id of certificateConnectorDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: certificateConnectorDetails @@ -542,6 +551,7 @@ paths: in: path description: 'key: id of certificateConnectorDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: certificateConnectorDetails @@ -634,6 +644,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -641,6 +652,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -665,12 +677,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. operationId: deviceManagement.comanagedDevices_activateDeviceEsim parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -698,12 +712,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.comanagedDevices_bypassActivationLock parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -718,12 +734,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.comanagedDevices_cleanWindowsDevice parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -757,6 +775,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -782,17 +801,58 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.createRemoteHelpSession': + post: + tags: + - deviceManagement.Actions + summary: Invoke action createRemoteHelpSession + description: Remote help - Create session with a specific device + operationId: deviceManagement.comanagedDevices_createRemoteHelpSession + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sessionType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.createRemoteHelpSessionResponse' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice': post: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.comanagedDevices_deleteUserFromSharedAppleDevice parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -826,6 +886,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -858,6 +919,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -872,12 +934,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.comanagedDevices_disableLostMode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -892,12 +956,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.comanagedDevices_enableLostMode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -931,12 +997,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.comanagedDevices_locateDevice parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -951,12 +1019,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.comanagedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -977,6 +1047,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1006,12 +1077,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Play lost mode sound operationId: deviceManagement.comanagedDevices_playLostModeSound parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1039,12 +1112,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.comanagedDevices_rebootNow parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1059,12 +1134,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.comanagedDevices_recoverPasscode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1085,6 +1162,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1099,12 +1177,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.comanagedDevices_remoteLock parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1119,12 +1199,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action removeDeviceFirmwareConfigurationInterfaceManagement + description: Remove device from Device Firmware Configuration Interface management operationId: deviceManagement.comanagedDevices_removeDeviceFirmwareConfigurationInterfaceManagement parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1145,6 +1227,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1159,12 +1242,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.comanagedDevices_requestRemoteAssistance parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1174,17 +1259,61 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.requestRemoteHelpSessionAccess': + post: + tags: + - deviceManagement.Actions + summary: Invoke action requestRemoteHelpSessionAccess + description: Remote help - Request Remote help session access permission for an existing session + operationId: deviceManagement.comanagedDevices_requestRemoteHelpSessionAccess + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sessionKey: + type: string + nullable: true + pubSubConnectionId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.requestRemoteHelpSessionAccessResponse' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.resetPasscode': post: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.comanagedDevices_resetPasscode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1205,6 +1334,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1238,6 +1368,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1265,12 +1396,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.comanagedDevices_retire parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1285,12 +1418,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.comanagedDevices_revokeAppleVppLicenses parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1305,12 +1440,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.comanagedDevices_rotateBitLockerKeys parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1331,6 +1468,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1351,6 +1489,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1385,6 +1524,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1411,12 +1551,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.comanagedDevices_setDeviceName parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1444,12 +1586,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.comanagedDevices_shutDown parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1470,6 +1614,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1484,12 +1629,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.comanagedDevices_triggerConfigurationManagerAction parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1522,6 +1669,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1554,6 +1702,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1587,6 +1736,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1601,12 +1751,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.comanagedDevices_wipe parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -1887,6 +2039,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -1933,6 +2086,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -1979,6 +2133,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -2025,6 +2180,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -2065,6 +2221,7 @@ paths: in: path description: 'key: id of dataSharingConsent' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSharingConsent @@ -2089,6 +2246,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2096,6 +2254,7 @@ paths: in: path description: 'key: id of enrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentProfile @@ -2116,6 +2275,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2123,6 +2283,7 @@ paths: in: path description: 'key: id of enrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentProfile @@ -2158,6 +2319,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2201,12 +2363,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action generateEncryptionPublicKey + description: Generate a public key to use to encrypt the Apple device enrollment program token operationId: deviceManagement.depOnboardingSettings_generateEncryptionPublicKey parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2237,6 +2401,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2251,12 +2416,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action syncWithAppleDeviceEnrollmentProgram + description: Synchronizes between Apple Device Enrollment Program and Intune operationId: deviceManagement.depOnboardingSettings_syncGraphWPreAppleDeviceEnrollmentProgram parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2277,6 +2444,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2291,12 +2459,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action uploadDepToken + description: Uploads a new Device Enrollment Program token operationId: deviceManagement.depOnboardingSettings_uploadDepToken parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2333,6 +2503,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -2379,6 +2550,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -2521,6 +2693,7 @@ paths: in: path description: 'key: id of deviceComplianceScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScript @@ -2555,6 +2728,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -2605,6 +2779,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -2639,6 +2814,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -2751,6 +2927,7 @@ paths: in: path description: 'key: id of deviceCustomAttributeShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript @@ -2789,6 +2966,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2823,6 +3001,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2923,6 +3102,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -2951,12 +3131,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action getGlobalScriptHighestAvailableVersion + description: Update the Proprietary Device Health Script operationId: deviceManagement.deviceHealthScripts_getGlobalScriptHighestAvailableVersion parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -2981,12 +3163,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action updateGlobalScript + description: Update the Proprietary Device Health Script operationId: deviceManagement.deviceHealthScripts_updateGlobalScript parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -3042,6 +3226,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -3119,6 +3304,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -3157,6 +3343,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -3203,6 +3390,7 @@ paths: in: path description: 'key: id of deviceManagementExchangeConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeConnector @@ -3235,6 +3423,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -3281,6 +3470,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -3358,6 +3548,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -3392,6 +3583,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -3412,6 +3604,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -3446,6 +3639,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -3480,6 +3674,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -3634,6 +3829,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -3668,6 +3864,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -3708,6 +3905,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -3744,6 +3942,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -3778,6 +3977,7 @@ paths: in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -3812,6 +4012,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3819,6 +4020,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -3843,12 +4045,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action activateDeviceEsim + description: Activate eSIM on the device. operationId: deviceManagement.managedDevices_activateDeviceEsim parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3876,12 +4080,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action bypassActivationLock + description: Bypass activation lock operationId: deviceManagement.managedDevices_bypassActivationLock parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3896,12 +4102,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action cleanWindowsDevice + description: Clean Windows device operationId: deviceManagement.managedDevices_cleanWindowsDevice parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3935,6 +4143,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3960,17 +4169,58 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.createRemoteHelpSession': + post: + tags: + - deviceManagement.Actions + summary: Invoke action createRemoteHelpSession + description: Remote help - Create session with a specific device + operationId: deviceManagement.managedDevices_createRemoteHelpSession + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sessionType: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.createRemoteHelpSessionResponse' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.deleteUserFromSharedAppleDevice': post: tags: - deviceManagement.Actions summary: Invoke action deleteUserFromSharedAppleDevice + description: Delete user from shared Apple device operationId: deviceManagement.managedDevices_deleteUserFromSharedAppleDevice parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4004,6 +4254,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4036,6 +4287,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4050,12 +4302,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disableLostMode + description: Disable lost mode operationId: deviceManagement.managedDevices_disableLostMode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4070,12 +4324,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableLostMode + description: Enable lost mode operationId: deviceManagement.managedDevices_enableLostMode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4109,12 +4365,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action locateDevice + description: Locate a device operationId: deviceManagement.managedDevices_locateDevice parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4129,12 +4387,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action logoutSharedAppleDeviceActiveUser + description: Logout shared Apple device active user operationId: deviceManagement.managedDevices_logoutSharedAppleDeviceActiveUser parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4155,6 +4415,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4184,12 +4445,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action playLostModeSound + description: Play lost mode sound operationId: deviceManagement.managedDevices_playLostModeSound parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4217,12 +4480,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rebootNow + description: Reboot device operationId: deviceManagement.managedDevices_rebootNow parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4237,12 +4502,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action recoverPasscode + description: Recover passcode operationId: deviceManagement.managedDevices_recoverPasscode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4263,6 +4530,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4277,12 +4545,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action remoteLock + description: Remote lock operationId: deviceManagement.managedDevices_remoteLock parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4297,12 +4567,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action removeDeviceFirmwareConfigurationInterfaceManagement + description: Remove device from Device Firmware Configuration Interface management operationId: deviceManagement.managedDevices_removeDeviceFirmwareConfigurationInterfaceManagement parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4323,6 +4595,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4337,12 +4610,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action requestRemoteAssistance + description: Request remote assistance operationId: deviceManagement.managedDevices_requestRemoteAssistance parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4352,17 +4627,61 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.requestRemoteHelpSessionAccess': + post: + tags: + - deviceManagement.Actions + summary: Invoke action requestRemoteHelpSessionAccess + description: Remote help - Request Remote help session access permission for an existing session + operationId: deviceManagement.managedDevices_requestRemoteHelpSessionAccess + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: managedDevice + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sessionKey: + type: string + nullable: true + pubSubConnectionId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.requestRemoteHelpSessionAccessResponse' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.resetPasscode': post: tags: - deviceManagement.Actions summary: Invoke action resetPasscode + description: Reset passcode operationId: deviceManagement.managedDevices_resetPasscode parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4383,6 +4702,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4416,6 +4736,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4443,12 +4764,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action retire + description: Retire a device operationId: deviceManagement.managedDevices_retire parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4463,12 +4786,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action revokeAppleVppLicenses + description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.managedDevices_revokeAppleVppLicenses parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4483,12 +4808,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action rotateBitLockerKeys + description: Rotate BitLockerKeys operationId: deviceManagement.managedDevices_rotateBitLockerKeys parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4509,6 +4836,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4529,6 +4857,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4563,6 +4892,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4589,12 +4919,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action setDeviceName + description: Set device name of the device. operationId: deviceManagement.managedDevices_setDeviceName parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4622,12 +4954,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action shutDown + description: Shut down device operationId: deviceManagement.managedDevices_shutDown parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4648,6 +4982,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4662,12 +4997,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action triggerConfigurationManagerAction + description: Trigger action on ConfigurationManager client operationId: deviceManagement.managedDevices_triggerConfigurationManagerAction parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4700,6 +5037,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4732,6 +5070,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4765,6 +5104,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4779,12 +5119,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action wipe + description: Wipe a device operationId: deviceManagement.managedDevices_wipe parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5083,6 +5425,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action enableUnlicensedAdminstrators + description: 'Upon enabling, users assigned as administrators via Role Assignment Memberships will no longer require an assigned Intune license. You are limited to 350 unlicensed direct members for each AAD security group in a role assignment, but you can assign multiple AAD security groups to a role if you need to support more than 350 unlicensed administrators. Licensed administrators will continue to function as-is in that transitive memberships apply and are not subject to the 350 member limit.' operationId: deviceManagement_enableUnlicensedAdminstrators responses: '204': @@ -5221,6 +5564,7 @@ paths: in: path description: 'key: id of microsoftTunnelServerLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServerLogCollectionResponse @@ -5251,6 +5595,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -5271,6 +5616,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -5278,6 +5624,7 @@ paths: in: path description: 'key: id of microsoftTunnelServer' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServer @@ -5320,6 +5667,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -5327,6 +5675,7 @@ paths: in: path description: 'key: id of microsoftTunnelServer' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServer @@ -5374,6 +5723,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -5381,6 +5731,7 @@ paths: in: path description: 'key: id of microsoftTunnelServer' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServer @@ -5434,6 +5785,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -5441,6 +5793,7 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest @@ -5454,17 +5807,40 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/monitoring/alertRecords/{alertRecord-id}/microsoft.graph.deviceManagement.setPortalNotificationAsSent': + post: + tags: + - deviceManagement.Actions + summary: Invoke action setPortalNotificationAsSent + operationId: deviceManagement.monitoring.alertRecords_setPortalNotificationAsSent + parameters: + - name: alertRecord-id + in: path + description: 'key: id of alertRecord' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: alertRecord + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/microsoft.graph.sendTestMessage': post: tags: - deviceManagement.Actions summary: Invoke action sendTestMessage + description: Sends test message using the specified notificationMessageTemplate in the default locale operationId: deviceManagement.notificationMessageTemplates_sendTestMessage parameters: - name: notificationMessageTemplate-id in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -5485,6 +5861,7 @@ paths: in: path description: 'key: id of oemWarrantyInformationOnboarding' required: true + style: simple schema: type: string x-ms-docs-key-type: oemWarrantyInformationOnboarding @@ -5505,6 +5882,7 @@ paths: in: path description: 'key: id of oemWarrantyInformationOnboarding' required: true + style: simple schema: type: string x-ms-docs-key-type: oemWarrantyInformationOnboarding @@ -5519,12 +5897,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action beginOnboarding + description: A request to start onboarding. Must be coupled with the appropriate TeamViewer account information operationId: deviceManagement.remoteAssistancePartners_beginOnboarding parameters: - name: remoteAssistancePartner-id in: path description: 'key: id of remoteAssistancePartner' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteAssistancePartner @@ -5539,12 +5919,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action disconnect + description: A request to remove the active TeamViewer connector operationId: deviceManagement.remoteAssistancePartners_disconnect parameters: - name: remoteAssistancePartner-id in: path description: 'key: id of remoteAssistancePartner' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteAssistancePartner @@ -9550,10 +9932,8 @@ paths: type: integer format: int32 sessionId: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 + type: string + nullable: true filter: type: string nullable: true @@ -9588,6 +9968,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -9670,6 +10051,7 @@ paths: in: path description: 'key: id of deviceManagementReusablePolicySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementReusablePolicySetting @@ -9694,6 +10076,7 @@ paths: in: path description: 'key: id of deviceManagementReusablePolicySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementReusablePolicySetting @@ -9701,6 +10084,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -9747,6 +10131,7 @@ paths: in: path description: 'key: id of deviceManagementReusablePolicySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementReusablePolicySetting @@ -9754,6 +10139,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -9794,6 +10180,7 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -9879,6 +10266,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -9928,6 +10316,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -9935,6 +10324,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -9984,6 +10374,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -10095,6 +10486,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScope @@ -10133,6 +10525,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -10165,6 +10558,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -10185,6 +10579,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -10205,6 +10600,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -10238,6 +10634,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -10261,6 +10658,40 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/microsoft.graph.restore': + post: + tags: + - deviceManagement.Actions + summary: Invoke action restore + operationId: deviceManagement.virtualEndpoint.cloudPCs_restore + parameters: + - name: cloudPC-id + in: path + description: 'key: id of cloudPC' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: cloudPC + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + cloudPcSnapshotId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/microsoft.graph.troubleshoot': post: tags: @@ -10272,6 +10703,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -10292,6 +10724,7 @@ paths: in: path description: 'key: id of cloudPcDeviceImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcDeviceImage @@ -10312,6 +10745,7 @@ paths: in: path description: 'key: id of cloudPcOnPremisesConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcOnPremisesConnection @@ -10332,6 +10766,7 @@ paths: in: path description: 'key: id of cloudPcOnPremisesConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcOnPremisesConnection @@ -10365,6 +10800,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -10399,6 +10835,7 @@ paths: in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -10427,12 +10864,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignResourceAccountToDevice + description: Assigns resource account to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_assignResourceAccountToDevice parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -10440,6 +10879,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10473,12 +10913,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignUserToDevice + description: Assigns user to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_assignUserToDevice parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -10486,6 +10928,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10516,12 +10959,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignResourceAccountFromDevice + description: Unassigns the resource account from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_unassignResourceAccountFromDevice parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -10529,6 +10974,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10543,12 +10989,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignUserFromDevice + description: Unassigns the user from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_unassignUserFromDevice parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -10556,6 +11004,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10570,12 +11019,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action updateDeviceProperties + description: Updates properties on Autopilot devices. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_updateDeviceProperties parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -10583,6 +11034,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10634,6 +11086,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -10702,12 +11155,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignResourceAccountToDevice + description: Assigns resource account to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeviceIdentities_assignResourceAccountToDevice parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10741,12 +11196,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action assignUserToDevice + description: Assigns user to Autopilot devices. operationId: deviceManagement.windowsAutopilotDeviceIdentities_assignUserToDevice parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10777,12 +11234,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignResourceAccountFromDevice + description: Unassigns the resource account from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_unassignResourceAccountFromDevice parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10797,12 +11256,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action unassignUserFromDevice + description: Unassigns the user from an Autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_unassignUserFromDevice parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10817,12 +11278,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action updateDeviceProperties + description: Updates properties on Autopilot devices. operationId: deviceManagement.windowsAutopilotDeviceIdentities_updateDeviceProperties parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -10868,6 +11331,7 @@ paths: tags: - deviceManagement.Actions summary: Invoke action sync + description: 'Initiates a sync of all AutoPilot registered devices from Store for Business and other portals. If the sync successful, this action returns a 204 No Content response code. If a sync is already in progress, the action returns a 409 Conflict response code. If this sync action is called within 10 minutes of the previous sync, the action returns a 429 Too Many Requests response code.' operationId: deviceManagement.windowsAutopilotSettings_sync responses: '204': @@ -10886,6 +11350,7 @@ paths: in: path description: 'key: id of windowsDriverUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDriverUpdateProfile @@ -10920,6 +11385,7 @@ paths: in: path description: 'key: id of windowsDriverUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDriverUpdateProfile @@ -10960,12 +11426,14 @@ paths: tags: - deviceManagement.Actions summary: Invoke action syncInventory + description: Sync the driver inventory of a WindowsDriverUpdateProfile. operationId: deviceManagement.windowsDriverUpdateProfiles_syncInventory parameters: - name: windowsDriverUpdateProfile-id in: path description: 'key: id of windowsDriverUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDriverUpdateProfile @@ -10986,6 +11454,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -11020,6 +11489,7 @@ paths: in: path description: 'key: id of windowsQualityUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsQualityUpdateProfile @@ -11142,6 +11612,7 @@ paths: in: path description: 'key: id of zebraFotaDeployment' required: true + style: simple schema: type: string x-ms-docs-key-type: zebraFotaDeployment @@ -11360,6 +11831,16 @@ components: additionalProperties: type: object description: Windows Log Collection request entity. + microsoft.graph.createRemoteHelpSessionResponse: + title: createRemoteHelpSessionResponse + type: object + properties: + sessionKey: + type: string + description: The unique identifier for a session + additionalProperties: + type: object + description: Remote help - response we provide back to the helper after successfully creating an ACS session microsoft.graph.administratorConfiguredDeviceComplianceState: title: administratorConfiguredDeviceComplianceState enum: @@ -11377,6 +11858,22 @@ components: - value: nonCompliant description: Set compliance to nonCompliant name: nonCompliant + microsoft.graph.requestRemoteHelpSessionAccessResponse: + title: requestRemoteHelpSessionAccessResponse + type: object + properties: + pubSubEncryption: + type: string + description: AES encryption Initialization Vector for encrypting client messages sent to PubSub + pubSubEncryptionKey: + type: string + description: The unique identifier for encrypting client messages sent to PubSub + sessionKey: + type: string + description: The unique identifier for a session + additionalProperties: + type: object + description: Remote help - response we provide back to the helper after getting response from pubSub microsoft.graph.cloudPcReviewStatus: title: cloudPcReviewStatus type: object @@ -11389,6 +11886,10 @@ components: type: string description: The name of the Azure Storage account in which the Cloud PC snapshot is being saved. nullable: true + azureStorageContainerName: + type: string + description: The name of the container in an Azure Storage account in which the Cloud PC snapshot is being saved. + nullable: true inReview: type: boolean description: True if the Cloud PC is set to in review by the administrator. diff --git a/openApiDocs/beta/DeviceManagement.Administration.yml b/openApiDocs/beta/DeviceManagement.Administration.yml index a12e37ccc56..1f1fd721926 100644 --- a/openApiDocs/beta/DeviceManagement.Administration.yml +++ b/openApiDocs/beta/DeviceManagement.Administration.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.applePushNotificationCertificate summary: Get applePushNotificationCertificate from deviceManagement + description: Apple push notification certificate. operationId: deviceManagement_GetApplePushNotificationCertificate parameters: - name: $select @@ -87,6 +88,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -100,6 +102,7 @@ paths: tags: - deviceManagement.auditEvent summary: Get auditEvents from deviceManagement + description: The Audit Events operationId: deviceManagement_ListAuditEvents parameters: - $ref: '#/components/parameters/top' @@ -213,12 +216,14 @@ paths: tags: - deviceManagement.auditEvent summary: Get auditEvents from deviceManagement + description: The Audit Events operationId: deviceManagement_GetAuditEvents parameters: - name: auditEvent-id in: path description: 'key: id of auditEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: auditEvent @@ -277,6 +282,7 @@ paths: in: path description: 'key: id of auditEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: auditEvent @@ -303,12 +309,14 @@ paths: in: path description: 'key: id of auditEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: auditEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -322,6 +330,7 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Get cartToClassAssociations from deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_ListCartToClassAssociations parameters: - $ref: '#/components/parameters/top' @@ -423,12 +432,14 @@ paths: tags: - deviceManagement.cartToClassAssociation summary: Get cartToClassAssociations from deviceManagement + description: The Cart To Class Associations. operationId: deviceManagement_GetCartToClassAssociations parameters: - name: cartToClassAssociation-id in: path description: 'key: id of cartToClassAssociation' required: true + style: simple schema: type: string x-ms-docs-key-type: cartToClassAssociation @@ -483,6 +494,7 @@ paths: in: path description: 'key: id of cartToClassAssociation' required: true + style: simple schema: type: string x-ms-docs-key-type: cartToClassAssociation @@ -509,12 +521,14 @@ paths: in: path description: 'key: id of cartToClassAssociation' required: true + style: simple schema: type: string x-ms-docs-key-type: cartToClassAssociation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -528,6 +542,7 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Get comanagementEligibleDevices from deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_ListComanagementEligibleDevices parameters: - $ref: '#/components/parameters/top' @@ -665,12 +680,14 @@ paths: tags: - deviceManagement.comanagementEligibleDevice summary: Get comanagementEligibleDevices from deviceManagement + description: The list of co-management eligible devices report operationId: deviceManagement_GetComanagementEligibleDevices parameters: - name: comanagementEligibleDevice-id in: path description: 'key: id of comanagementEligibleDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: comanagementEligibleDevice @@ -737,6 +754,7 @@ paths: in: path description: 'key: id of comanagementEligibleDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: comanagementEligibleDevice @@ -763,12 +781,14 @@ paths: in: path description: 'key: id of comanagementEligibleDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: comanagementEligibleDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -782,6 +802,7 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_ListComplianceManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -895,12 +916,14 @@ paths: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement + description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement_GetComplianceManagementPartners parameters: - name: complianceManagementPartner-id in: path description: 'key: id of complianceManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: complianceManagementPartner @@ -959,6 +982,7 @@ paths: in: path description: 'key: id of complianceManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: complianceManagementPartner @@ -985,12 +1009,14 @@ paths: in: path description: 'key: id of complianceManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: complianceManagementPartner - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1004,6 +1030,7 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Get deviceConfigurationRestrictedAppsViolations from deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_ListDeviceConfigurationRestrictedAppsViolations parameters: - $ref: '#/components/parameters/top' @@ -1111,12 +1138,14 @@ paths: tags: - deviceManagement.restrictedAppsViolation summary: Get deviceConfigurationRestrictedAppsViolations from deviceManagement + description: Restricted apps violations for this account. operationId: deviceManagement_GetDeviceConfigurationRestrictedAppsViolations parameters: - name: restrictedAppsViolation-id in: path description: 'key: id of restrictedAppsViolation' required: true + style: simple schema: type: string x-ms-docs-key-type: restrictedAppsViolation @@ -1173,6 +1202,7 @@ paths: in: path description: 'key: id of restrictedAppsViolation' required: true + style: simple schema: type: string x-ms-docs-key-type: restrictedAppsViolation @@ -1199,12 +1229,14 @@ paths: in: path description: 'key: id of restrictedAppsViolation' required: true + style: simple schema: type: string x-ms-docs-key-type: restrictedAppsViolation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1218,6 +1250,7 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get deviceConfigurationsAllManagedDeviceCertificateStates from deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_ListDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - $ref: '#/components/parameters/top' @@ -1334,12 +1367,14 @@ paths: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get deviceConfigurationsAllManagedDeviceCertificateStates from deviceManagement + description: Summary of all certificates for all devices. operationId: deviceManagement_GetDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - name: managedAllDeviceCertificateState-id in: path description: 'key: id of managedAllDeviceCertificateState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAllDeviceCertificateState @@ -1399,6 +1434,7 @@ paths: in: path description: 'key: id of managedAllDeviceCertificateState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAllDeviceCertificateState @@ -1425,12 +1461,14 @@ paths: in: path description: 'key: id of managedAllDeviceCertificateState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAllDeviceCertificateState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1444,6 +1482,7 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Get deviceManagementPartners from deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_ListDeviceManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -1557,12 +1596,14 @@ paths: tags: - deviceManagement.deviceManagementPartner summary: Get deviceManagementPartners from deviceManagement + description: The list of Device Management Partners configured by the tenant. operationId: deviceManagement_GetDeviceManagementPartners parameters: - name: deviceManagementPartner-id in: path description: 'key: id of deviceManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementPartner @@ -1621,6 +1662,7 @@ paths: in: path description: 'key: id of deviceManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementPartner @@ -1647,12 +1689,14 @@ paths: in: path description: 'key: id of deviceManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementPartner - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1666,6 +1710,7 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Get domainJoinConnectors from deviceManagement + description: A list of connector objects. operationId: deviceManagement_ListDomainJoinConnectors parameters: - $ref: '#/components/parameters/top' @@ -1758,12 +1803,14 @@ paths: tags: - deviceManagement.deviceManagementDomainJoinConnector summary: Get domainJoinConnectors from deviceManagement + description: A list of connector objects. operationId: deviceManagement_GetDomainJoinConnectors parameters: - name: deviceManagementDomainJoinConnector-id in: path description: 'key: id of deviceManagementDomainJoinConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementDomainJoinConnector @@ -1815,6 +1862,7 @@ paths: in: path description: 'key: id of deviceManagementDomainJoinConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementDomainJoinConnector @@ -1841,12 +1889,14 @@ paths: in: path description: 'key: id of deviceManagementDomainJoinConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementDomainJoinConnector - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1860,6 +1910,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Get exchangeConnectors from deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_ListExchangeConnectors parameters: - $ref: '#/components/parameters/top' @@ -1967,12 +2018,14 @@ paths: tags: - deviceManagement.deviceManagementExchangeConnector summary: Get exchangeConnectors from deviceManagement + description: The list of Exchange Connectors configured by the tenant. operationId: deviceManagement_GetExchangeConnectors parameters: - name: deviceManagementExchangeConnector-id in: path description: 'key: id of deviceManagementExchangeConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeConnector @@ -2032,6 +2085,7 @@ paths: in: path description: 'key: id of deviceManagementExchangeConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeConnector @@ -2058,12 +2112,14 @@ paths: in: path description: 'key: id of deviceManagementExchangeConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeConnector - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2077,6 +2133,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get exchangeOnPremisesPolicies from deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_ListExchangeOnPremisesPolicies parameters: - $ref: '#/components/parameters/top' @@ -2171,12 +2228,14 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get exchangeOnPremisesPolicies from deviceManagement + description: The list of Exchange On Premisis policies configured by the tenant. operationId: deviceManagement_GetExchangeOnPremisesPolicies parameters: - name: deviceManagementExchangeOnPremisesPolicy-id in: path description: 'key: id of deviceManagementExchangeOnPremisesPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeOnPremisesPolicy @@ -2235,6 +2294,7 @@ paths: in: path description: 'key: id of deviceManagementExchangeOnPremisesPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeOnPremisesPolicy @@ -2261,12 +2321,14 @@ paths: in: path description: 'key: id of deviceManagementExchangeOnPremisesPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeOnPremisesPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2280,12 +2342,14 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicies_GetConditionalAccessSettings parameters: - name: deviceManagementExchangeOnPremisesPolicy-id in: path description: 'key: id of deviceManagementExchangeOnPremisesPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeOnPremisesPolicy @@ -2337,6 +2401,7 @@ paths: in: path description: 'key: id of deviceManagementExchangeOnPremisesPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeOnPremisesPolicy @@ -2363,12 +2428,14 @@ paths: in: path description: 'key: id of deviceManagementExchangeOnPremisesPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementExchangeOnPremisesPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2382,6 +2449,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get exchangeOnPremisesPolicy from deviceManagement + description: The policy which controls mobile device access to Exchange On Premises operationId: deviceManagement_GetExchangeOnPremisesPolicy parameters: - name: $select @@ -2454,6 +2522,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2467,6 +2536,7 @@ paths: tags: - deviceManagement.deviceManagementExchangeOnPremisesPolicy summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.exchangeOnPremisesPolicy_GetConditionalAccessSettings parameters: - name: $select @@ -2534,6 +2604,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2547,6 +2618,7 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get groupPolicyCategories from deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_ListGroupPolicyCategories parameters: - $ref: '#/components/parameters/top' @@ -2647,12 +2719,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get groupPolicyCategories from deviceManagement + description: The available group policy categories for this account. operationId: deviceManagement_GetGroupPolicyCategories parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -2729,6 +2803,7 @@ paths: in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -2755,12 +2830,14 @@ paths: in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2774,12 +2851,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get children from deviceManagement + description: The children categories operationId: deviceManagement.groupPolicyCategories_ListChildren parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -2859,12 +2938,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get children from deviceManagement + description: The children categories operationId: deviceManagement.groupPolicyCategories_GetChildren parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -2872,6 +2953,7 @@ paths: in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -2947,12 +3029,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get definitionFile from deviceManagement + description: The id of the definition file the category came from operationId: deviceManagement.groupPolicyCategories_GetDefinitionFile parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -3011,12 +3095,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get definitions from deviceManagement + description: The immediate GroupPolicyDefinition children of the category operationId: deviceManagement.groupPolicyCategories_ListDefinitions parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -3122,12 +3208,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get definitions from deviceManagement + description: The immediate GroupPolicyDefinition children of the category operationId: deviceManagement.groupPolicyCategories_GetDefinitions parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -3135,6 +3223,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -3225,12 +3314,14 @@ paths: tags: - deviceManagement.groupPolicyCategory summary: Get parent from deviceManagement + description: The parent category operationId: deviceManagement.groupPolicyCategories_GetParent parameters: - name: groupPolicyCategory-id in: path description: 'key: id of groupPolicyCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyCategory @@ -3302,6 +3393,7 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get groupPolicyDefinitionFiles from deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_ListGroupPolicyDefinitionFiles parameters: - $ref: '#/components/parameters/top' @@ -3411,12 +3503,14 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get groupPolicyDefinitionFiles from deviceManagement + description: The available group policy definition files for this account. operationId: deviceManagement_GetGroupPolicyDefinitionFiles parameters: - name: groupPolicyDefinitionFile-id in: path description: 'key: id of groupPolicyDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionFile @@ -3480,6 +3574,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionFile @@ -3506,12 +3601,14 @@ paths: in: path description: 'key: id of groupPolicyDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionFile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3525,12 +3622,14 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get definitions from deviceManagement + description: The group policy definitions associated with the file. operationId: deviceManagement.groupPolicyDefinitionFiles_ListDefinitions parameters: - name: groupPolicyDefinitionFile-id in: path description: 'key: id of groupPolicyDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionFile @@ -3636,12 +3735,14 @@ paths: tags: - deviceManagement.groupPolicyDefinitionFile summary: Get definitions from deviceManagement + description: The group policy definitions associated with the file. operationId: deviceManagement.groupPolicyDefinitionFiles_GetDefinitions parameters: - name: groupPolicyDefinitionFile-id in: path description: 'key: id of groupPolicyDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionFile @@ -3649,6 +3750,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -3739,6 +3841,7 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get groupPolicyDefinitions from deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_ListGroupPolicyDefinitions parameters: - $ref: '#/components/parameters/top' @@ -3865,12 +3968,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get groupPolicyDefinitions from deviceManagement + description: The available group policy definitions for this account. operationId: deviceManagement_GetGroupPolicyDefinitions parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -3961,6 +4066,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -3987,12 +4093,14 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4006,12 +4114,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetCategory parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4083,12 +4193,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetDefinitionFile parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4147,12 +4259,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get nextVersionDefinition from deviceManagement + description: Definition of the next version of this definition operationId: deviceManagement.groupPolicyDefinitions_GetNextVersionDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4243,6 +4357,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4269,12 +4384,14 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4288,12 +4405,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition_GetCategory parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4365,12 +4484,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition_GetDefinitionFile parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4429,12 +4550,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition_ListPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4507,6 +4630,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4532,12 +4656,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition_GetPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4545,6 +4671,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -4602,6 +4729,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4609,6 +4737,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -4635,6 +4764,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4642,12 +4772,14 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4661,12 +4793,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition.presentations_GetDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4674,6 +4808,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -4764,12 +4899,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get previousVersionDefinition from deviceManagement + description: Definition of the previous version of this definition operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition_GetPreviousVersionDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4860,6 +4997,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4886,12 +5024,14 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4905,12 +5045,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition.previousVersionDefinition_GetCategory parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -4982,12 +5124,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition.previousVersionDefinition_GetDefinitionFile parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5046,12 +5190,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition.previousVersionDefinition_ListPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5124,6 +5270,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5149,12 +5296,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition.previousVersionDefinition_GetPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5162,6 +5311,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -5219,6 +5369,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5226,6 +5377,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -5252,6 +5404,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5259,12 +5412,14 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5278,12 +5433,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.nextVersionDefinition.previousVersionDefinition.presentations_GetDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5291,6 +5448,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -5381,12 +5539,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_ListPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5459,6 +5619,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5484,12 +5645,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions_GetPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5497,6 +5660,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -5554,6 +5718,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5561,6 +5726,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -5587,6 +5753,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5594,12 +5761,14 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5613,12 +5782,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.presentations_GetDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5626,6 +5797,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -5716,12 +5888,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get previousVersionDefinition from deviceManagement + description: Definition of the previous version of this definition operationId: deviceManagement.groupPolicyDefinitions_GetPreviousVersionDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5812,6 +5986,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5838,12 +6013,14 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5857,12 +6034,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition_GetCategory parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5934,12 +6113,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition_GetDefinitionFile parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -5998,12 +6179,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get nextVersionDefinition from deviceManagement + description: Definition of the next version of this definition operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition_GetNextVersionDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6094,6 +6277,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6120,12 +6304,14 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6139,12 +6325,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get category from deviceManagement + description: The group policy category associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition.nextVersionDefinition_GetCategory parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6216,12 +6404,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definitionFile from deviceManagement + description: The group policy file associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition.nextVersionDefinition_GetDefinitionFile parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6280,12 +6470,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition.nextVersionDefinition_ListPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6358,6 +6550,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6383,12 +6576,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition.nextVersionDefinition_GetPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6396,6 +6591,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -6453,6 +6649,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6460,6 +6657,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -6486,6 +6684,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6493,12 +6692,14 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6512,12 +6713,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition.nextVersionDefinition.presentations_GetDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6525,6 +6728,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -6615,12 +6819,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition_ListPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6693,6 +6899,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6718,12 +6925,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get presentations from deviceManagement + description: The group policy presentations associated with the definition. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition_GetPresentations parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6731,6 +6940,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -6788,6 +6998,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6795,6 +7006,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -6821,6 +7033,7 @@ paths: in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6828,12 +7041,14 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6847,12 +7062,14 @@ paths: tags: - deviceManagement.groupPolicyDefinition summary: Get definition from deviceManagement + description: The group policy definition associated with the presentation. operationId: deviceManagement.groupPolicyDefinitions.previousVersionDefinition.presentations_GetDefinition parameters: - name: groupPolicyDefinition-id in: path description: 'key: id of groupPolicyDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinition @@ -6860,6 +7077,7 @@ paths: in: path description: 'key: id of groupPolicyPresentation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentation @@ -6950,6 +7168,7 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicyMigrationReports from deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_ListGroupPolicyMigrationReports parameters: - $ref: '#/components/parameters/top' @@ -7070,12 +7289,14 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicyMigrationReports from deviceManagement + description: A list of Group Policy migration reports. operationId: deviceManagement_GetGroupPolicyMigrationReports parameters: - name: groupPolicyMigrationReport-id in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7148,6 +7369,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7174,12 +7396,14 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7193,12 +7417,14 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicySettingMappings from deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_ListGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7323,6 +7549,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7348,12 +7575,14 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get groupPolicySettingMappings from deviceManagement + description: A list of group policy settings to MDM/Intune mappings. operationId: deviceManagement.groupPolicyMigrationReports_GetGroupPolicySettingMappings parameters: - name: groupPolicyMigrationReport-id in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7361,6 +7590,7 @@ paths: in: path description: 'key: id of groupPolicySettingMapping' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicySettingMapping @@ -7428,6 +7658,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7435,6 +7666,7 @@ paths: in: path description: 'key: id of groupPolicySettingMapping' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicySettingMapping @@ -7461,6 +7693,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7468,12 +7701,14 @@ paths: in: path description: 'key: id of groupPolicySettingMapping' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicySettingMapping - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7487,12 +7722,14 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get unsupportedGroupPolicyExtensions from deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_ListUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7569,6 +7806,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7594,12 +7832,14 @@ paths: tags: - deviceManagement.groupPolicyMigrationReport summary: Get unsupportedGroupPolicyExtensions from deviceManagement + description: A list of unsupported group policy extensions inside the Group Policy Object. operationId: deviceManagement.groupPolicyMigrationReports_GetUnsupportedGroupPolicyExtensions parameters: - name: groupPolicyMigrationReport-id in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7607,6 +7847,7 @@ paths: in: path description: 'key: id of unsupportedGroupPolicyExtension' required: true + style: simple schema: type: string x-ms-docs-key-type: unsupportedGroupPolicyExtension @@ -7658,6 +7899,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7665,6 +7907,7 @@ paths: in: path description: 'key: id of unsupportedGroupPolicyExtension' required: true + style: simple schema: type: string x-ms-docs-key-type: unsupportedGroupPolicyExtension @@ -7691,6 +7934,7 @@ paths: in: path description: 'key: id of groupPolicyMigrationReport' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyMigrationReport @@ -7698,12 +7942,14 @@ paths: in: path description: 'key: id of unsupportedGroupPolicyExtension' required: true + style: simple schema: type: string x-ms-docs-key-type: unsupportedGroupPolicyExtension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7717,6 +7963,7 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Get groupPolicyObjectFiles from deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_ListGroupPolicyObjectFiles parameters: - $ref: '#/components/parameters/top' @@ -7812,12 +8059,14 @@ paths: tags: - deviceManagement.groupPolicyObjectFile summary: Get groupPolicyObjectFiles from deviceManagement + description: A list of Group Policy Object files uploaded. operationId: deviceManagement_GetGroupPolicyObjectFiles parameters: - name: groupPolicyObjectFile-id in: path description: 'key: id of groupPolicyObjectFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyObjectFile @@ -7870,6 +8119,7 @@ paths: in: path description: 'key: id of groupPolicyObjectFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyObjectFile @@ -7896,12 +8146,14 @@ paths: in: path description: 'key: id of groupPolicyObjectFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyObjectFile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7915,6 +8167,7 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyUploadedDefinitionFiles from deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_ListGroupPolicyUploadedDefinitionFiles parameters: - $ref: '#/components/parameters/top' @@ -8041,12 +8294,14 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyUploadedDefinitionFiles from deviceManagement + description: The available group policy uploaded definition files for this account. operationId: deviceManagement_GetGroupPolicyUploadedDefinitionFiles parameters: - name: groupPolicyUploadedDefinitionFile-id in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8131,6 +8386,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8157,12 +8413,14 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8176,12 +8434,14 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyOperations from deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_ListGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8258,6 +8518,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8283,12 +8544,14 @@ paths: tags: - deviceManagement.groupPolicyUploadedDefinitionFile summary: Get groupPolicyOperations from deviceManagement + description: The list of operations on the uploaded ADMX file. operationId: deviceManagement.groupPolicyUploadedDefinitionFiles_GetGroupPolicyOperations parameters: - name: groupPolicyUploadedDefinitionFile-id in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8296,6 +8559,7 @@ paths: in: path description: 'key: id of groupPolicyOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyOperation @@ -8347,6 +8611,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8354,6 +8619,7 @@ paths: in: path description: 'key: id of groupPolicyOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyOperation @@ -8380,6 +8646,7 @@ paths: in: path description: 'key: id of groupPolicyUploadedDefinitionFile' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyUploadedDefinitionFile @@ -8387,12 +8654,14 @@ paths: in: path description: 'key: id of groupPolicyOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8406,6 +8675,7 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get intuneBrandingProfiles from deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_ListIntuneBrandingProfiles parameters: - $ref: '#/components/parameters/top' @@ -8581,12 +8851,14 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get intuneBrandingProfiles from deviceManagement + description: Intune branding profiles targeted to AAD groups operationId: deviceManagement_GetIntuneBrandingProfiles parameters: - name: intuneBrandingProfile-id in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8674,6 +8946,7 @@ paths: in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8700,12 +8973,14 @@ paths: in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8719,12 +8994,14 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_ListAssignments parameters: - name: intuneBrandingProfile-id in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8792,6 +9069,7 @@ paths: in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8817,12 +9095,14 @@ paths: tags: - deviceManagement.intuneBrandingProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the branding profile operationId: deviceManagement.intuneBrandingProfiles_GetAssignments parameters: - name: intuneBrandingProfile-id in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8830,6 +9110,7 @@ paths: in: path description: 'key: id of intuneBrandingProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfileAssignment @@ -8878,6 +9159,7 @@ paths: in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8885,6 +9167,7 @@ paths: in: path description: 'key: id of intuneBrandingProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfileAssignment @@ -8911,6 +9194,7 @@ paths: in: path description: 'key: id of intuneBrandingProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfile @@ -8918,12 +9202,14 @@ paths: in: path description: 'key: id of intuneBrandingProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: intuneBrandingProfileAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8937,6 +9223,7 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Get iosUpdateStatuses from deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_ListIosUpdateStatuses parameters: - $ref: '#/components/parameters/top' @@ -9053,12 +9340,14 @@ paths: tags: - deviceManagement.iosUpdateDeviceStatus summary: Get iosUpdateStatuses from deviceManagement + description: The IOS software update installation statuses for this account. operationId: deviceManagement_GetIosUpdateStatuses parameters: - name: iosUpdateDeviceStatus-id in: path description: 'key: id of iosUpdateDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: iosUpdateDeviceStatus @@ -9118,6 +9407,7 @@ paths: in: path description: 'key: id of iosUpdateDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: iosUpdateDeviceStatus @@ -9144,12 +9434,14 @@ paths: in: path description: 'key: id of iosUpdateDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: iosUpdateDeviceStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9163,6 +9455,7 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Get mobileThreatDefenseConnectors from deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_ListMobileThreatDefenseConnectors parameters: - $ref: '#/components/parameters/top' @@ -9216,6 +9509,8 @@ paths: - windowsDeviceBlockedOnMissingPartnerData desc - windowsEnabled - windowsEnabled desc + - windowsMobileApplicationManagementEnabled + - windowsMobileApplicationManagementEnabled desc type: string - name: $select in: query @@ -9245,6 +9540,7 @@ paths: - partnerUnsupportedOsVersionBlocked - windowsDeviceBlockedOnMissingPartnerData - windowsEnabled + - windowsMobileApplicationManagementEnabled type: string - name: $expand in: query @@ -9294,12 +9590,14 @@ paths: tags: - deviceManagement.mobileThreatDefenseConnector summary: Get mobileThreatDefenseConnectors from deviceManagement + description: The list of Mobile threat Defense connectors configured by the tenant. operationId: deviceManagement_GetMobileThreatDefenseConnectors parameters: - name: mobileThreatDefenseConnector-id in: path description: 'key: id of mobileThreatDefenseConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileThreatDefenseConnector @@ -9331,6 +9629,7 @@ paths: - partnerUnsupportedOsVersionBlocked - windowsDeviceBlockedOnMissingPartnerData - windowsEnabled + - windowsMobileApplicationManagementEnabled type: string - name: $expand in: query @@ -9364,6 +9663,7 @@ paths: in: path description: 'key: id of mobileThreatDefenseConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileThreatDefenseConnector @@ -9390,12 +9690,14 @@ paths: in: path description: 'key: id of mobileThreatDefenseConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileThreatDefenseConnector - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9409,6 +9711,7 @@ paths: tags: - deviceManagement.ndesConnector summary: Get ndesConnectors from deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_ListNdesConnectors parameters: - $ref: '#/components/parameters/top' @@ -9510,12 +9813,14 @@ paths: tags: - deviceManagement.ndesConnector summary: Get ndesConnectors from deviceManagement + description: The collection of Ndes connectors for this account. operationId: deviceManagement_GetNdesConnectors parameters: - name: ndesConnector-id in: path description: 'key: id of ndesConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: ndesConnector @@ -9570,6 +9875,7 @@ paths: in: path description: 'key: id of ndesConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: ndesConnector @@ -9596,12 +9902,14 @@ paths: in: path description: 'key: id of ndesConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: ndesConnector - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9615,6 +9923,7 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Get remoteAssistancePartners from deviceManagement + description: The remote assist partners. operationId: deviceManagement_ListRemoteAssistancePartners parameters: - $ref: '#/components/parameters/top' @@ -9710,12 +10019,14 @@ paths: tags: - deviceManagement.remoteAssistancePartner summary: Get remoteAssistancePartners from deviceManagement + description: The remote assist partners. operationId: deviceManagement_GetRemoteAssistancePartners parameters: - name: remoteAssistancePartner-id in: path description: 'key: id of remoteAssistancePartner' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteAssistancePartner @@ -9773,6 +10084,7 @@ paths: in: path description: 'key: id of remoteAssistancePartner' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteAssistancePartner @@ -9799,12 +10111,14 @@ paths: in: path description: 'key: id of remoteAssistancePartner' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteAssistancePartner - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9818,6 +10132,7 @@ paths: tags: - deviceManagement.resourceOperation summary: Get resourceOperations from deviceManagement + description: The Resource Operations. operationId: deviceManagement_ListResourceOperations parameters: - $ref: '#/components/parameters/top' @@ -9913,12 +10228,14 @@ paths: tags: - deviceManagement.resourceOperation summary: Get resourceOperations from deviceManagement + description: The Resource Operations. operationId: deviceManagement_GetResourceOperations parameters: - name: resourceOperation-id in: path description: 'key: id of resourceOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceOperation @@ -9974,6 +10291,7 @@ paths: in: path description: 'key: id of resourceOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceOperation @@ -10000,12 +10318,14 @@ paths: in: path description: 'key: id of resourceOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10019,6 +10339,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleAssignments from deviceManagement + description: The Role Assignments. operationId: deviceManagement_ListRoleAssignments parameters: - $ref: '#/components/parameters/top' @@ -10121,12 +10442,14 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleAssignments from deviceManagement + description: The Role Assignments. operationId: deviceManagement_GetRoleAssignments parameters: - name: deviceAndAppManagementRoleAssignment-id in: path description: 'key: id of deviceAndAppManagementRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementRoleAssignment @@ -10193,6 +10516,7 @@ paths: in: path description: 'key: id of deviceAndAppManagementRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementRoleAssignment @@ -10219,12 +10543,14 @@ paths: in: path description: 'key: id of deviceAndAppManagementRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10238,12 +10564,14 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleScopeTags from deviceManagement + description: The set of Role Scope Tags defined on the Role Assignment. operationId: deviceManagement.roleAssignments_ListRoleScopeTags parameters: - name: deviceAndAppManagementRoleAssignment-id in: path description: 'key: id of deviceAndAppManagementRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementRoleAssignment @@ -10314,12 +10642,14 @@ paths: tags: - deviceManagement.deviceAndAppManagementRoleAssignment summary: Get roleScopeTags from deviceManagement + description: The set of Role Scope Tags defined on the Role Assignment. operationId: deviceManagement.roleAssignments_GetRoleScopeTags parameters: - name: deviceAndAppManagementRoleAssignment-id in: path description: 'key: id of deviceAndAppManagementRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementRoleAssignment @@ -10327,6 +10657,7 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -10380,6 +10711,7 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinitions from deviceManagement + description: The Role Definitions. operationId: deviceManagement_ListRoleDefinitions parameters: - $ref: '#/components/parameters/top' @@ -10483,12 +10815,14 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinitions from deviceManagement + description: The Role Definitions. operationId: deviceManagement_GetRoleDefinitions parameters: - name: roleDefinition-id in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10550,6 +10884,7 @@ paths: in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10576,12 +10911,14 @@ paths: in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10595,12 +10932,14 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleAssignments from deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_ListRoleAssignments parameters: - name: roleDefinition-id in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10682,6 +11021,7 @@ paths: in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10707,12 +11047,14 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleAssignments from deviceManagement + description: List of Role assignments for this role definition. operationId: deviceManagement.roleDefinitions_GetRoleAssignments parameters: - name: roleDefinition-id in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10720,6 +11062,7 @@ paths: in: path description: 'key: id of roleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleAssignment @@ -10780,6 +11123,7 @@ paths: in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10787,6 +11131,7 @@ paths: in: path description: 'key: id of roleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleAssignment @@ -10813,6 +11158,7 @@ paths: in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10820,12 +11166,14 @@ paths: in: path description: 'key: id of roleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10839,12 +11187,14 @@ paths: tags: - deviceManagement.roleDefinition summary: Get roleDefinition from deviceManagement + description: Role definition this assignment is part of. operationId: deviceManagement.roleDefinitions.roleAssignments_GetRoleDefinition parameters: - name: roleDefinition-id in: path description: 'key: id of roleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: roleDefinition @@ -10852,6 +11202,7 @@ paths: in: path description: 'key: id of roleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleAssignment @@ -10909,6 +11260,7 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get roleScopeTags from deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_ListRoleScopeTags parameters: - $ref: '#/components/parameters/top' @@ -11000,12 +11352,14 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get roleScopeTags from deviceManagement + description: The Role Scope Tags. operationId: deviceManagement_GetRoleScopeTags parameters: - name: roleScopeTag-id in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11065,6 +11419,7 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11091,12 +11446,14 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11110,12 +11467,14 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get assignments from deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_ListAssignments parameters: - name: roleScopeTag-id in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11183,6 +11542,7 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11208,12 +11568,14 @@ paths: tags: - deviceManagement.roleScopeTag summary: Get assignments from deviceManagement + description: The list of assignments for this Role Scope Tag. operationId: deviceManagement.roleScopeTags_GetAssignments parameters: - name: roleScopeTag-id in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11221,6 +11583,7 @@ paths: in: path description: 'key: id of roleScopeTagAutoAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTagAutoAssignment @@ -11269,6 +11632,7 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11276,6 +11640,7 @@ paths: in: path description: 'key: id of roleScopeTagAutoAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTagAutoAssignment @@ -11302,6 +11667,7 @@ paths: in: path description: 'key: id of roleScopeTag' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTag @@ -11309,12 +11675,14 @@ paths: in: path description: 'key: id of roleScopeTagAutoAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: roleScopeTagAutoAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11328,6 +11696,7 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Get telecomExpenseManagementPartners from deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_ListTelecomExpenseManagementPartners parameters: - $ref: '#/components/parameters/top' @@ -11423,12 +11792,14 @@ paths: tags: - deviceManagement.telecomExpenseManagementPartner summary: Get telecomExpenseManagementPartners from deviceManagement + description: The telecom expense management partners. operationId: deviceManagement_GetTelecomExpenseManagementPartners parameters: - name: telecomExpenseManagementPartner-id in: path description: 'key: id of telecomExpenseManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: telecomExpenseManagementPartner @@ -11481,6 +11852,7 @@ paths: in: path description: 'key: id of telecomExpenseManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: telecomExpenseManagementPartner @@ -11507,12 +11879,14 @@ paths: in: path description: 'key: id of telecomExpenseManagementPartner' required: true + style: simple schema: type: string x-ms-docs-key-type: telecomExpenseManagementPartner - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11526,6 +11900,7 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_ListTermsAndConditions parameters: - $ref: '#/components/parameters/top' @@ -11642,12 +12017,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: The terms and conditions associated with device management of the company. operationId: deviceManagement_GetTermsAndConditions parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11724,6 +12101,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11750,12 +12128,14 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11769,12 +12149,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get acceptanceStatuses from deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_ListAcceptanceStatuses parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11853,6 +12235,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11878,12 +12261,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get acceptanceStatuses from deviceManagement + description: The list of acceptance statuses for this T&C policy. operationId: deviceManagement.termsAndConditions_GetAcceptanceStatuses parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11891,6 +12276,7 @@ paths: in: path description: 'key: id of termsAndConditionsAcceptanceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAcceptanceStatus @@ -11950,6 +12336,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11957,6 +12344,7 @@ paths: in: path description: 'key: id of termsAndConditionsAcceptanceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAcceptanceStatus @@ -11983,6 +12371,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -11990,12 +12379,14 @@ paths: in: path description: 'key: id of termsAndConditionsAcceptanceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAcceptanceStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12009,12 +12400,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.acceptanceStatuses_GetTermsAndConditions parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12022,6 +12415,7 @@ paths: in: path description: 'key: id of termsAndConditionsAcceptanceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAcceptanceStatus @@ -12096,12 +12490,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get assignments from deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_ListAssignments parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12169,6 +12565,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12194,12 +12591,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get assignments from deviceManagement + description: The list of assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_GetAssignments parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12207,6 +12606,7 @@ paths: in: path description: 'key: id of termsAndConditionsAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAssignment @@ -12255,6 +12655,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12262,6 +12663,7 @@ paths: in: path description: 'key: id of termsAndConditionsAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAssignment @@ -12288,6 +12690,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12295,12 +12698,14 @@ paths: in: path description: 'key: id of termsAndConditionsAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12314,12 +12719,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get groupAssignments from deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_ListGroupAssignments parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12389,6 +12796,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12414,12 +12822,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get groupAssignments from deviceManagement + description: The list of group assignments for this T&C policy. operationId: deviceManagement.termsAndConditions_GetGroupAssignments parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12427,6 +12837,7 @@ paths: in: path description: 'key: id of termsAndConditionsGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsGroupAssignment @@ -12483,6 +12894,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12490,6 +12902,7 @@ paths: in: path description: 'key: id of termsAndConditionsGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsGroupAssignment @@ -12516,6 +12929,7 @@ paths: in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12523,12 +12937,14 @@ paths: in: path description: 'key: id of termsAndConditionsGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsGroupAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12542,12 +12958,14 @@ paths: tags: - deviceManagement.termsAndConditions summary: Get termsAndConditions from deviceManagement + description: Navigation link to the terms and conditions that are assigned. operationId: deviceManagement.termsAndConditions.groupAssignments_GetTermsAndConditions parameters: - name: termsAndConditions-id in: path description: 'key: id of termsAndConditions' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditions @@ -12555,6 +12973,7 @@ paths: in: path description: 'key: id of termsAndConditionsGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: termsAndConditionsGroupAssignment @@ -12629,6 +13048,7 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Get userPfxCertificates from deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_ListUserPfxCertificates parameters: - $ref: '#/components/parameters/top' @@ -12745,12 +13165,14 @@ paths: tags: - deviceManagement.userPFXCertificate summary: Get userPfxCertificates from deviceManagement + description: Collection of PFX certificates associated with a user. operationId: deviceManagement_GetUserPfxCertificates parameters: - name: userPFXCertificate-id in: path description: 'key: id of userPFXCertificate' required: true + style: simple schema: type: string x-ms-docs-key-type: userPFXCertificate @@ -12810,6 +13232,7 @@ paths: in: path description: 'key: id of userPFXCertificate' required: true + style: simple schema: type: string x-ms-docs-key-type: userPFXCertificate @@ -12836,12 +13259,14 @@ paths: in: path description: 'key: id of userPFXCertificate' required: true + style: simple schema: type: string x-ms-docs-key-type: userPFXCertificate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12969,6 +13394,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12982,6 +13408,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get auditEvents from deviceManagement + description: Cloud PC audit event. operationId: deviceManagement.virtualEndpoint_ListAuditEvents parameters: - $ref: '#/components/parameters/top' @@ -13095,12 +13522,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get auditEvents from deviceManagement + description: Cloud PC audit event. operationId: deviceManagement.virtualEndpoint_GetAuditEvents parameters: - name: cloudPcAuditEvent-id in: path description: 'key: id of cloudPcAuditEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcAuditEvent @@ -13159,6 +13588,7 @@ paths: in: path description: 'key: id of cloudPcAuditEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcAuditEvent @@ -13185,12 +13615,14 @@ paths: in: path description: 'key: id of cloudPcAuditEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcAuditEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13204,6 +13636,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get cloudPCs from deviceManagement + description: Cloud managed virtual desktops. operationId: deviceManagement.virtualEndpoint_ListCloudPCs parameters: - $ref: '#/components/parameters/top' @@ -13227,6 +13660,8 @@ paths: - aadDeviceId desc - connectivityResult - connectivityResult desc + - diskEncryptionState + - diskEncryptionState desc - displayName - displayName desc - gracePeriodEndDateTime @@ -13279,6 +13714,7 @@ paths: - id - aadDeviceId - connectivityResult + - diskEncryptionState - displayName - gracePeriodEndDateTime - imageDisplayName @@ -13347,12 +13783,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get cloudPCs from deviceManagement + description: Cloud managed virtual desktops. operationId: deviceManagement.virtualEndpoint_GetCloudPCs parameters: - name: cloudPC-id in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -13369,6 +13807,7 @@ paths: - id - aadDeviceId - connectivityResult + - diskEncryptionState - displayName - gracePeriodEndDateTime - imageDisplayName @@ -13423,6 +13862,8 @@ paths: operationId: deviceManagement.virtualEndpoint.cloudPCs.cloudPC.rename reprovision: operationId: deviceManagement.virtualEndpoint.cloudPCs.cloudPC.reprovision + restore: + operationId: deviceManagement.virtualEndpoint.cloudPCs.cloudPC.restore troubleshoot: operationId: deviceManagement.virtualEndpoint.cloudPCs.cloudPC.troubleshoot default: @@ -13438,6 +13879,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -13464,12 +13906,14 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13483,6 +13927,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get deviceImages from deviceManagement + description: The image resource on Cloud PC. operationId: deviceManagement.virtualEndpoint_ListDeviceImages parameters: - $ref: '#/components/parameters/top' @@ -13593,12 +14038,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get deviceImages from deviceManagement + description: The image resource on Cloud PC. operationId: deviceManagement.virtualEndpoint_GetDeviceImages parameters: - name: cloudPcDeviceImage-id in: path description: 'key: id of cloudPcDeviceImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcDeviceImage @@ -13659,6 +14106,7 @@ paths: in: path description: 'key: id of cloudPcDeviceImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcDeviceImage @@ -13685,12 +14133,14 @@ paths: in: path description: 'key: id of cloudPcDeviceImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcDeviceImage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13704,6 +14154,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get externalPartnerSettings from deviceManagement + description: The external partner settings on a Cloud PC. operationId: deviceManagement.virtualEndpoint_ListExternalPartnerSettings parameters: - $ref: '#/components/parameters/top' @@ -13799,12 +14250,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get externalPartnerSettings from deviceManagement + description: The external partner settings on a Cloud PC. operationId: deviceManagement.virtualEndpoint_GetExternalPartnerSettings parameters: - name: cloudPcExternalPartnerSetting-id in: path description: 'key: id of cloudPcExternalPartnerSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcExternalPartnerSetting @@ -13857,6 +14310,7 @@ paths: in: path description: 'key: id of cloudPcExternalPartnerSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcExternalPartnerSetting @@ -13883,12 +14337,14 @@ paths: in: path description: 'key: id of cloudPcExternalPartnerSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcExternalPartnerSetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13902,6 +14358,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get galleryImages from deviceManagement + description: The gallery image resource on Cloud PC. operationId: deviceManagement.virtualEndpoint_ListGalleryImages parameters: - $ref: '#/components/parameters/top' @@ -14018,12 +14475,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get galleryImages from deviceManagement + description: The gallery image resource on Cloud PC. operationId: deviceManagement.virtualEndpoint_GetGalleryImages parameters: - name: cloudPcGalleryImage-id in: path description: 'key: id of cloudPcGalleryImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcGalleryImage @@ -14083,6 +14542,7 @@ paths: in: path description: 'key: id of cloudPcGalleryImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcGalleryImage @@ -14109,12 +14569,14 @@ paths: in: path description: 'key: id of cloudPcGalleryImage' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcGalleryImage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14128,6 +14590,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get onPremisesConnections from deviceManagement + description: A defined collection of Azure resource information that can be used to establish on-premises network connectivity for Cloud PCs. operationId: deviceManagement.virtualEndpoint_ListOnPremisesConnections parameters: - $ref: '#/components/parameters/top' @@ -14256,12 +14719,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get onPremisesConnections from deviceManagement + description: A defined collection of Azure resource information that can be used to establish on-premises network connectivity for Cloud PCs. operationId: deviceManagement.virtualEndpoint_GetOnPremisesConnections parameters: - name: cloudPcOnPremisesConnection-id in: path description: 'key: id of cloudPcOnPremisesConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcOnPremisesConnection @@ -14330,6 +14795,7 @@ paths: in: path description: 'key: id of cloudPcOnPremisesConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcOnPremisesConnection @@ -14356,12 +14822,14 @@ paths: in: path description: 'key: id of cloudPcOnPremisesConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcOnPremisesConnection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14375,6 +14843,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get organizationSettings from deviceManagement + description: The Cloud PC organization settings for a tenant. operationId: deviceManagement.virtualEndpoint_GetOrganizationSettings parameters: - name: $select @@ -14388,6 +14857,7 @@ paths: items: enum: - id + - enableMEMAutoEnroll - osVersion - userAccountType - windowsSettings @@ -14441,6 +14911,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14454,6 +14925,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get provisioningPolicies from deviceManagement + description: Cloud PC provisioning policy. operationId: deviceManagement.virtualEndpoint_ListProvisioningPolicies parameters: - $ref: '#/components/parameters/top' @@ -14578,12 +15050,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get provisioningPolicies from deviceManagement + description: Cloud PC provisioning policy. operationId: deviceManagement.virtualEndpoint_GetProvisioningPolicies parameters: - name: cloudPcProvisioningPolicy-id in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14654,6 +15128,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14680,12 +15155,14 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14699,12 +15176,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get assignments from deviceManagement + description: A defined collection of provisioning policy assignments. Represents the set of Microsoft 365 groups and security groups in Azure AD that have provisioning policy assigned. Returned only on $expand. See an example of getting the assignments relationship. operationId: deviceManagement.virtualEndpoint.provisioningPolicies_ListAssignments parameters: - name: cloudPcProvisioningPolicy-id in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14772,6 +15251,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14797,12 +15277,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get assignments from deviceManagement + description: A defined collection of provisioning policy assignments. Represents the set of Microsoft 365 groups and security groups in Azure AD that have provisioning policy assigned. Returned only on $expand. See an example of getting the assignments relationship. operationId: deviceManagement.virtualEndpoint.provisioningPolicies_GetAssignments parameters: - name: cloudPcProvisioningPolicy-id in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14810,6 +15292,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicyAssignment @@ -14858,6 +15341,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14865,6 +15349,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicyAssignment @@ -14891,6 +15376,7 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicy @@ -14898,12 +15384,14 @@ paths: in: path description: 'key: id of cloudPcProvisioningPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcProvisioningPolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14917,6 +15405,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get servicePlans from deviceManagement + description: Cloud PC service plans. operationId: deviceManagement.virtualEndpoint_ListServicePlans parameters: - $ref: '#/components/parameters/top' @@ -15015,12 +15504,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get servicePlans from deviceManagement + description: Cloud PC service plans. operationId: deviceManagement.virtualEndpoint_GetServicePlans parameters: - name: cloudPcServicePlan-id in: path description: 'key: id of cloudPcServicePlan' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcServicePlan @@ -15074,6 +15565,7 @@ paths: in: path description: 'key: id of cloudPcServicePlan' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcServicePlan @@ -15100,12 +15592,14 @@ paths: in: path description: 'key: id of cloudPcServicePlan' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcServicePlan - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15119,6 +15613,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get snapshots from deviceManagement + description: Cloud PC snapshots. operationId: deviceManagement.virtualEndpoint_ListSnapshots parameters: - $ref: '#/components/parameters/top' @@ -15211,12 +15706,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get snapshots from deviceManagement + description: Cloud PC snapshots. operationId: deviceManagement.virtualEndpoint_GetSnapshots parameters: - name: cloudPcSnapshot-id in: path description: 'key: id of cloudPcSnapshot' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcSnapshot @@ -15268,6 +15765,7 @@ paths: in: path description: 'key: id of cloudPcSnapshot' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcSnapshot @@ -15294,12 +15792,14 @@ paths: in: path description: 'key: id of cloudPcSnapshot' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcSnapshot - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15313,6 +15813,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get supportedRegions from deviceManagement + description: Cloud PC supported regions. operationId: deviceManagement.virtualEndpoint_ListSupportedRegions parameters: - $ref: '#/components/parameters/top' @@ -15336,6 +15837,8 @@ paths: - displayName desc - regionStatus - regionStatus desc + - supportedSolution + - supportedSolution desc type: string - name: $select in: query @@ -15350,6 +15853,7 @@ paths: - id - displayName - regionStatus + - supportedSolution type: string - name: $expand in: query @@ -15399,12 +15903,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get supportedRegions from deviceManagement + description: Cloud PC supported regions. operationId: deviceManagement.virtualEndpoint_GetSupportedRegions parameters: - name: cloudPcSupportedRegion-id in: path description: 'key: id of cloudPcSupportedRegion' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcSupportedRegion @@ -15421,6 +15927,7 @@ paths: - id - displayName - regionStatus + - supportedSolution type: string - name: $expand in: query @@ -15454,6 +15961,7 @@ paths: in: path description: 'key: id of cloudPcSupportedRegion' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcSupportedRegion @@ -15480,12 +15988,14 @@ paths: in: path description: 'key: id of cloudPcSupportedRegion' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcSupportedRegion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15499,6 +16009,7 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get userSettings from deviceManagement + description: Cloud PC user settings. operationId: deviceManagement.virtualEndpoint_ListUserSettings parameters: - $ref: '#/components/parameters/top' @@ -15599,12 +16110,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get userSettings from deviceManagement + description: Cloud PC user settings. operationId: deviceManagement.virtualEndpoint_GetUserSettings parameters: - name: cloudPcUserSetting-id in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15667,6 +16180,7 @@ paths: in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15693,12 +16207,14 @@ paths: in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15712,12 +16228,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get assignments from deviceManagement + description: 'Represents the set of Microsoft 365 groups and security groups in Azure AD that have cloudPCUserSetting assigned. Returned only on $expand. For an example, see Get cloudPcUserSettingample.' operationId: deviceManagement.virtualEndpoint.userSettings_ListAssignments parameters: - name: cloudPcUserSetting-id in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15788,6 +16306,7 @@ paths: in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15813,12 +16332,14 @@ paths: tags: - deviceManagement.virtualEndpoint summary: Get assignments from deviceManagement + description: 'Represents the set of Microsoft 365 groups and security groups in Azure AD that have cloudPCUserSetting assigned. Returned only on $expand. For an example, see Get cloudPcUserSettingample.' operationId: deviceManagement.virtualEndpoint.userSettings_GetAssignments parameters: - name: cloudPcUserSetting-id in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15826,6 +16347,7 @@ paths: in: path description: 'key: id of cloudPcUserSettingAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSettingAssignment @@ -15875,6 +16397,7 @@ paths: in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15882,6 +16405,7 @@ paths: in: path description: 'key: id of cloudPcUserSettingAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSettingAssignment @@ -15908,6 +16432,7 @@ paths: in: path description: 'key: id of cloudPcUserSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSetting @@ -15915,12 +16440,14 @@ paths: in: path description: 'key: id of cloudPcUserSettingAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPcUserSettingAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17179,6 +17706,9 @@ components: windowsEnabled: type: boolean description: 'For Windows, get or set whether data from the data sync partner should be used during compliance evaluations' + windowsMobileApplicationManagementEnabled: + type: boolean + description: 'When TRUE, app protection policies using the Device Threat Level rule will evaluate devices including data from this connector for Windows. When FALSE, Intune will not use device risk details sent over this connector during app protection policies calculation for policies with a Device Threat Level configured. Existing devices that are not compliant due to risk levels obtained from this connector will also become compliant.' additionalProperties: type: object description: Entity which represents a connection to Mobile threat defense partner. @@ -17742,6 +18272,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -18009,6 +18541,10 @@ components: - title: cloudPcOrganizationSettings type: object properties: + enableMEMAutoEnroll: + type: boolean + description: Specifies whether new Cloud PCs will be automatically enrolled in Microsoft Endpoint Manager(MEM). The default value is false. + nullable: true osVersion: $ref: '#/components/schemas/microsoft.graph.cloudPcOperatingSystem' userAccountType: @@ -18162,6 +18698,8 @@ components: description: The name for the supported region. Read-only. regionStatus: $ref: '#/components/schemas/microsoft.graph.cloudPcSupportedRegionStatus' + supportedSolution: + $ref: '#/components/schemas/microsoft.graph.cloudPcManagementService' additionalProperties: type: object microsoft.graph.cloudPcUserSetting: @@ -18239,6 +18777,10 @@ components: type: string description: AAD Application Id. nullable: true + auditActorType: + type: string + description: Actor Type. + nullable: true ipAddress: type: string description: IPAddress. @@ -18285,6 +18827,10 @@ components: title: auditResource type: object properties: + auditResourceType: + type: string + description: Audit resource's type. + nullable: true displayName: type: string description: Display name. @@ -18611,7 +19157,15 @@ components: - eligibleButNotAzureAdJoined - needsOsUpdate - ineligible + - scheduledForEnrollment type: string + x-ms-enum: + name: comanagementEligibleType + modelAsString: false + values: + - value: scheduledForEnrollment + description: Devices scheduled for Co-Management enrollment + name: scheduledForEnrollment microsoft.graph.complianceManagementPartnerAssignment: title: complianceManagementPartnerAssignment type: object @@ -19691,14 +20245,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -20790,12 +21355,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -20931,6 +21499,8 @@ components: - endpointConnectivityCheckCloudPcUrlNotAllowListed - endpointConnectivityCheckWVDUrlNotAllowListed - endpointConnectivityCheckIntuneUrlNotAllowListed + - endpointConnectivityCheckAzureADUrlNotAllowListed + - endpointConnectivityCheckLocaleUrlNotAllowListed - endpointConnectivityCheckUnknownError - azureAdDeviceSyncCheckDeviceNotFound - azureAdDeviceSyncCheckLongSyncCircle @@ -21311,6 +21881,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -21319,6 +21891,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -21326,18 +21900,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/DeviceManagement.Enrolment.yml b/openApiDocs/beta/DeviceManagement.Enrolment.yml index 3b726369a7a..1323d792391 100644 --- a/openApiDocs/beta/DeviceManagement.Enrolment.yml +++ b/openApiDocs/beta/DeviceManagement.Enrolment.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get androidDeviceOwnerEnrollmentProfiles from deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_ListAndroidDeviceOwnerEnrollmentProfiles parameters: - $ref: '#/components/parameters/top' @@ -32,6 +33,8 @@ paths: - id desc - accountId - accountId desc + - configureWifi + - configureWifi desc - createdDateTime - createdDateTime desc - description @@ -81,6 +84,7 @@ paths: enum: - id - accountId + - configureWifi - createdDateTime - description - displayName @@ -148,12 +152,14 @@ paths: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get androidDeviceOwnerEnrollmentProfiles from deviceManagement + description: Android device owner enrollment profile entities. operationId: deviceManagement_GetAndroidDeviceOwnerEnrollmentProfiles parameters: - name: androidDeviceOwnerEnrollmentProfile-id in: path description: 'key: id of androidDeviceOwnerEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile @@ -169,6 +175,7 @@ paths: enum: - id - accountId + - configureWifi - createdDateTime - description - displayName @@ -225,6 +232,7 @@ paths: in: path description: 'key: id of androidDeviceOwnerEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile @@ -251,12 +259,14 @@ paths: in: path description: 'key: id of androidDeviceOwnerEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -270,6 +280,7 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get androidForWorkEnrollmentProfiles from deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_ListAndroidGraphFPreWorkEnrollmentProfiles parameters: - $ref: '#/components/parameters/top' @@ -380,12 +391,14 @@ paths: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get androidForWorkEnrollmentProfiles from deviceManagement + description: Android for Work enrollment profile entities. operationId: deviceManagement_GetAndroidGraphFPreWorkEnrollmentProfiles parameters: - name: androidForWorkEnrollmentProfile-id in: path description: 'key: id of androidForWorkEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile @@ -448,6 +461,7 @@ paths: in: path description: 'key: id of androidForWorkEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile @@ -474,12 +488,14 @@ paths: in: path description: 'key: id of androidForWorkEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -493,6 +509,7 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get appleUserInitiatedEnrollmentProfiles from deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_ListAppleUserInitiatedEnrollmentProfiles parameters: - $ref: '#/components/parameters/top' @@ -599,12 +616,14 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get appleUserInitiatedEnrollmentProfiles from deviceManagement + description: Apple user initiated enrollment profiles operationId: deviceManagement_GetAppleUserInitiatedEnrollmentProfiles parameters: - name: appleUserInitiatedEnrollmentProfile-id in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -669,6 +688,7 @@ paths: in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -695,12 +715,14 @@ paths: in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -714,12 +736,14 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get assignments from deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_ListAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -787,6 +811,7 @@ paths: in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -812,12 +837,14 @@ paths: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get assignments from deviceManagement + description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles_GetAssignments parameters: - name: appleUserInitiatedEnrollmentProfile-id in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -825,6 +852,7 @@ paths: in: path description: 'key: id of appleEnrollmentProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appleEnrollmentProfileAssignment @@ -873,6 +901,7 @@ paths: in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -880,6 +909,7 @@ paths: in: path description: 'key: id of appleEnrollmentProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appleEnrollmentProfileAssignment @@ -906,6 +936,7 @@ paths: in: path description: 'key: id of appleUserInitiatedEnrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile @@ -913,12 +944,14 @@ paths: in: path description: 'key: id of appleEnrollmentProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: appleEnrollmentProfileAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -932,6 +965,7 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get autopilotEvents from deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_ListAutopilotEvents parameters: - $ref: '#/components/parameters/top' @@ -1092,12 +1126,14 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get autopilotEvents from deviceManagement + description: The list of autopilot events for the tenant. operationId: deviceManagement_GetAutopilotEvents parameters: - name: deviceManagementAutopilotEvent-id in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1178,6 +1214,7 @@ paths: in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1204,12 +1241,14 @@ paths: in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1223,12 +1262,14 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get policyStatusDetails from deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_ListPolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1311,6 +1352,7 @@ paths: in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1336,12 +1378,14 @@ paths: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get policyStatusDetails from deviceManagement + description: Policy and application status details for this device. operationId: deviceManagement.autopilotEvents_GetPolicyStatusDetails parameters: - name: deviceManagementAutopilotEvent-id in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1349,6 +1393,7 @@ paths: in: path description: 'key: id of deviceManagementAutopilotPolicyStatusDetail' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotPolicyStatusDetail @@ -1402,6 +1447,7 @@ paths: in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1409,6 +1455,7 @@ paths: in: path description: 'key: id of deviceManagementAutopilotPolicyStatusDetail' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotPolicyStatusDetail @@ -1435,6 +1482,7 @@ paths: in: path description: 'key: id of deviceManagementAutopilotEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent @@ -1442,12 +1490,14 @@ paths: in: path description: 'key: id of deviceManagementAutopilotPolicyStatusDetail' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementAutopilotPolicyStatusDetail - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1461,6 +1511,7 @@ paths: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Get conditionalAccessSettings from deviceManagement + description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement_GetConditionalAccessSettings parameters: - name: $select @@ -1528,6 +1579,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1541,6 +1593,7 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get depOnboardingSettings from deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_ListDepOnboardingSettings parameters: - $ref: '#/components/parameters/top' @@ -1665,12 +1718,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get depOnboardingSettings from deviceManagement + description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement_GetDepOnboardingSettings parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -1767,6 +1822,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -1793,12 +1849,14 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1812,12 +1870,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get defaultIosEnrollmentProfile from deviceManagement + description: Default iOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings_GetDefaultIosEnrollmentProfile parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -1914,12 +1974,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get defaultMacOsEnrollmentProfile from deviceManagement + description: Default MacOs Enrollment Profile operationId: deviceManagement.depOnboardingSettings_GetDefaultMacOsEnrollmentProfile parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -1962,11 +2024,25 @@ paths: - accessibilityScreenDisabled - autoUnlockWithWatchDisabled - chooseYourLockScreenDisabled + - dontAutoPopulatePrimaryAccountInfo + - enableRestrictEditing - fileVaultDisabled - iCloudDiagnosticsDisabled - iCloudStorageDisabled + - isLocalPrimaryAccount + - isPrimaryUser + - lockPrimaryAccountInfo + - managedLocalUserShortName - passCodeDisabled + - prefillAccountInfo + - primaryAccountFullName + - primaryAccountUserName + - primaryUser + - primaryUserFullName - registrationDisabled + - requestRequiresNetworkTether + - setPrimarySetupAccountAsRegularUser + - skipPrimarySetupAccountCreation - zoomDisabled type: string - name: $expand @@ -1996,12 +2072,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get enrollmentProfiles from deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_ListEnrollmentProfiles parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2084,6 +2162,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2109,12 +2188,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get enrollmentProfiles from deviceManagement + description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings_GetEnrollmentProfiles parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2122,6 +2203,7 @@ paths: in: path description: 'key: id of enrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentProfile @@ -2182,6 +2264,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2189,6 +2272,7 @@ paths: in: path description: 'key: id of enrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentProfile @@ -2215,6 +2299,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2222,12 +2307,14 @@ paths: in: path description: 'key: id of enrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2241,12 +2328,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get importedAppleDeviceIdentities from deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_ListImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2344,6 +2433,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2369,12 +2459,14 @@ paths: tags: - deviceManagement.depOnboardingSetting summary: Get importedAppleDeviceIdentities from deviceManagement + description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings_GetImportedAppleDeviceIdentities parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2382,6 +2474,7 @@ paths: in: path description: 'key: id of importedAppleDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedAppleDeviceIdentity @@ -2440,6 +2533,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2447,6 +2541,7 @@ paths: in: path description: 'key: id of importedAppleDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedAppleDeviceIdentity @@ -2473,6 +2568,7 @@ paths: in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -2480,12 +2576,14 @@ paths: in: path description: 'key: id of importedAppleDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedAppleDeviceIdentity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2499,6 +2597,7 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_ListDeviceEnrollmentConfigurations parameters: - $ref: '#/components/parameters/top' @@ -2605,12 +2704,14 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from deviceManagement + description: The list of device enrollment configurations operationId: deviceManagement_GetDeviceEnrollmentConfigurations parameters: - name: deviceEnrollmentConfiguration-id in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2677,6 +2778,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2703,12 +2805,14 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2722,12 +2826,14 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_ListAssignments parameters: - name: deviceEnrollmentConfiguration-id in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2801,6 +2907,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2826,12 +2933,14 @@ paths: tags: - deviceManagement.deviceEnrollmentConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the device configuration profile operationId: deviceManagement.deviceEnrollmentConfigurations_GetAssignments parameters: - name: deviceEnrollmentConfiguration-id in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2839,6 +2948,7 @@ paths: in: path description: 'key: id of enrollmentConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentConfigurationAssignment @@ -2889,6 +2999,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2896,6 +3007,7 @@ paths: in: path description: 'key: id of enrollmentConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentConfigurationAssignment @@ -2922,6 +3034,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -2929,12 +3042,14 @@ paths: in: path description: 'key: id of enrollmentConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2948,6 +3063,7 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Get importedDeviceIdentities from deviceManagement + description: The imported device identities. operationId: deviceManagement_ListImportedDeviceIdentities parameters: - $ref: '#/components/parameters/top' @@ -3052,12 +3168,14 @@ paths: tags: - deviceManagement.importedDeviceIdentity summary: Get importedDeviceIdentities from deviceManagement + description: The imported device identities. operationId: deviceManagement_GetImportedDeviceIdentities parameters: - name: importedDeviceIdentity-id in: path description: 'key: id of importedDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedDeviceIdentity @@ -3113,6 +3231,7 @@ paths: in: path description: 'key: id of importedDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedDeviceIdentity @@ -3139,12 +3258,14 @@ paths: in: path description: 'key: id of importedDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedDeviceIdentity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3158,6 +3279,7 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Get importedWindowsAutopilotDeviceIdentities from deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_ListImportedWindowsAutopilotDeviceIdentities parameters: - $ref: '#/components/parameters/top' @@ -3259,12 +3381,14 @@ paths: tags: - deviceManagement.importedWindowsAutopilotDeviceIdentity summary: Get importedWindowsAutopilotDeviceIdentities from deviceManagement + description: Collection of imported Windows autopilot devices. operationId: deviceManagement_GetImportedWindowsAutopilotDeviceIdentities parameters: - name: importedWindowsAutopilotDeviceIdentity-id in: path description: 'key: id of importedWindowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedWindowsAutopilotDeviceIdentity @@ -3319,6 +3443,7 @@ paths: in: path description: 'key: id of importedWindowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedWindowsAutopilotDeviceIdentity @@ -3345,12 +3470,14 @@ paths: in: path description: 'key: id of importedWindowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: importedWindowsAutopilotDeviceIdentity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3364,6 +3491,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_ListUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - $ref: '#/components/parameters/top' @@ -3471,12 +3599,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_GetUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id in: path description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice @@ -3533,6 +3663,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice @@ -3559,12 +3690,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3578,6 +3711,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get windowsAutopilotDeploymentProfiles from deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_ListWindowsAutopilotDeploymentProfiles parameters: - $ref: '#/components/parameters/top' @@ -3701,12 +3835,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get windowsAutopilotDeploymentProfiles from deviceManagement + description: Windows auto pilot deployment profiles operationId: deviceManagement_GetWindowsAutopilotDeploymentProfiles parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -3782,6 +3918,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -3808,12 +3945,14 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3827,12 +3966,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignedDevices from deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_ListAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -3976,6 +4117,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4001,12 +4143,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignedDevices from deviceManagement + description: The list of assigned devices for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_GetAssignedDevices parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4014,6 +4158,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4111,6 +4256,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4118,6 +4264,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4144,6 +4291,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4151,12 +4299,14 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4170,12 +4320,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get deploymentProfile from deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_GetDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4183,6 +4335,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4253,12 +4406,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get intendedDeploymentProfile from deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeploymentProfiles.assignedDevices_GetIntendedDeploymentProfile parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4266,6 +4421,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4336,12 +4492,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_ListAssignments parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4415,6 +4573,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4440,12 +4599,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeploymentProfile summary: Get assignments from deviceManagement + description: The list of group assignments for the profile. operationId: deviceManagement.windowsAutopilotDeploymentProfiles_GetAssignments parameters: - name: windowsAutopilotDeploymentProfile-id in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4453,6 +4614,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfileAssignment @@ -4503,6 +4665,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4510,6 +4673,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfileAssignment @@ -4536,6 +4700,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfile @@ -4543,12 +4708,14 @@ paths: in: path description: 'key: id of windowsAutopilotDeploymentProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeploymentProfileAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4562,6 +4729,7 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get windowsAutopilotDeviceIdentities from deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_ListWindowsAutopilotDeviceIdentities parameters: - $ref: '#/components/parameters/top' @@ -4721,12 +4889,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get windowsAutopilotDeviceIdentities from deviceManagement + description: The Windows autopilot device identities contained collection. operationId: deviceManagement_GetWindowsAutopilotDeviceIdentities parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4822,6 +4992,7 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4848,12 +5019,14 @@ paths: in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4867,12 +5040,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get deploymentProfile from deviceManagement + description: Deployment profile currently assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_GetDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -4941,12 +5116,14 @@ paths: tags: - deviceManagement.windowsAutopilotDeviceIdentity summary: Get intendedDeploymentProfile from deviceManagement + description: Deployment profile intended to be assigned to the Windows autopilot device. operationId: deviceManagement.windowsAutopilotDeviceIdentities_GetIntendedDeploymentProfile parameters: - name: windowsAutopilotDeviceIdentity-id in: path description: 'key: id of windowsAutopilotDeviceIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsAutopilotDeviceIdentity @@ -5015,6 +5192,7 @@ paths: tags: - deviceManagement.windowsAutopilotSettings summary: Get windowsAutopilotSettings from deviceManagement + description: The Windows autopilot account settings. operationId: deviceManagement_GetWindowsAutopilotSettings parameters: - name: $select @@ -5084,6 +5262,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5097,6 +5276,7 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get windowsFeatureUpdateProfiles from deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_ListWindowsFeatureUpdateProfiles parameters: - $ref: '#/components/parameters/top' @@ -5206,12 +5386,14 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get windowsFeatureUpdateProfiles from deviceManagement + description: A collection of windows feature update profiles operationId: deviceManagement_GetWindowsFeatureUpdateProfiles parameters: - name: windowsFeatureUpdateProfile-id in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5277,6 +5459,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5303,12 +5486,14 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5322,12 +5507,14 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get assignments from deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_ListAssignments parameters: - name: windowsFeatureUpdateProfile-id in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5395,6 +5582,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5420,12 +5608,14 @@ paths: tags: - deviceManagement.windowsFeatureUpdateProfile summary: Get assignments from deviceManagement + description: The list of group assignments of the profile. operationId: deviceManagement.windowsFeatureUpdateProfiles_GetAssignments parameters: - name: windowsFeatureUpdateProfile-id in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5433,6 +5623,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfileAssignment @@ -5481,6 +5672,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5488,6 +5680,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfileAssignment @@ -5514,6 +5707,7 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfile @@ -5521,12 +5715,14 @@ paths: in: path description: 'key: id of windowsFeatureUpdateProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsFeatureUpdateProfileAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5691,6 +5887,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5795,6 +5992,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -5852,6 +6050,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -5878,12 +6077,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5903,6 +6104,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -5938,12 +6140,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.cloudPC.resourceNamespaces_ListResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6022,6 +6226,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6047,12 +6252,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.cloudPC.resourceNamespaces_GetResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6060,6 +6267,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -6119,6 +6327,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6126,6 +6335,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -6152,6 +6362,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6159,12 +6370,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6184,6 +6397,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6191,6 +6405,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -6241,6 +6456,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6248,6 +6464,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -6274,6 +6491,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -6281,12 +6499,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6415,6 +6635,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6494,6 +6715,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6520,12 +6742,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6539,12 +6763,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get appScopes from roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. operationId: roleManagement.cloudPC.roleAssignments_ListAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6615,6 +6841,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6640,12 +6867,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get appScopes from roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. operationId: roleManagement.cloudPC.roleAssignments_GetAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6653,6 +6882,7 @@ paths: in: path description: 'key: id of appScope' required: true + style: simple schema: type: string x-ms-docs-key-type: appScope @@ -6702,6 +6932,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6709,6 +6940,7 @@ paths: in: path description: 'key: id of appScope' required: true + style: simple schema: type: string x-ms-docs-key-type: appScope @@ -6735,6 +6967,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6742,12 +6975,14 @@ paths: in: path description: 'key: id of appScope' required: true + style: simple schema: type: string x-ms-docs-key-type: appScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6761,12 +6996,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get directoryScopes from roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.cloudPC.roleAssignments_ListDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6829,12 +7066,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get directoryScopes from roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.cloudPC.roleAssignments_GetDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6842,6 +7081,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -6885,12 +7125,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get principals from roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.cloudPC.roleAssignments_ListPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6953,12 +7195,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get principals from roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.cloudPC.roleAssignments_GetPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -6966,6 +7210,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7009,12 +7254,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get roleDefinition from roleManagement + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' operationId: roleManagement.cloudPC.roleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -7184,6 +7431,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7248,6 +7496,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7274,12 +7523,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7293,12 +7544,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.cloudPC.roleDefinitions_ListInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7389,6 +7642,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7414,12 +7668,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.cloudPC.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7427,6 +7683,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7492,6 +7749,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7499,6 +7757,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7525,6 +7784,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7532,12 +7792,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7557,6 +7819,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -7564,23 +7827,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -7612,23 +7882,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -7654,6 +7931,7 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get deviceManagement from roleManagement + description: The RbacApplication for Device Management operationId: roleManagement_GetDeviceManagement parameters: - name: $select @@ -7730,6 +8008,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7834,6 +8113,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -7891,6 +8171,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -7917,12 +8198,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7942,6 +8225,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -7977,12 +8261,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.deviceManagement.resourceNamespaces_ListResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8061,6 +8347,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8086,12 +8373,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.deviceManagement.resourceNamespaces_GetResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8099,6 +8388,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -8158,6 +8448,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8165,6 +8456,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -8191,6 +8483,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8198,12 +8491,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8223,6 +8518,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8230,6 +8526,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -8280,6 +8577,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8287,6 +8585,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -8313,6 +8612,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -8320,12 +8620,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8454,6 +8756,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8533,6 +8836,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8559,12 +8863,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8578,12 +8884,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get appScopes from roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. operationId: roleManagement.deviceManagement.roleAssignments_ListAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8654,6 +8962,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8679,12 +8988,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get appScopes from roleManagement + description: Read-only collection with details of the app specific scopes when the assignment scopes are app specific. Containment entity. Read-only. operationId: roleManagement.deviceManagement.roleAssignments_GetAppScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8692,6 +9003,7 @@ paths: in: path description: 'key: id of appScope' required: true + style: simple schema: type: string x-ms-docs-key-type: appScope @@ -8741,6 +9053,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8748,6 +9061,7 @@ paths: in: path description: 'key: id of appScope' required: true + style: simple schema: type: string x-ms-docs-key-type: appScope @@ -8774,6 +9088,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8781,12 +9096,14 @@ paths: in: path description: 'key: id of appScope' required: true + style: simple schema: type: string x-ms-docs-key-type: appScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8800,12 +9117,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get directoryScopes from roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.deviceManagement.roleAssignments_ListDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8868,12 +9187,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get directoryScopes from roleManagement + description: Read-only collection referencing the directory objects that are scope of the assignment. Provided so that callers can get the directory objects using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.deviceManagement.roleAssignments_GetDirectoryScopes parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8881,6 +9202,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -8924,12 +9246,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get principals from roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.deviceManagement.roleAssignments_ListPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -8992,12 +9316,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get principals from roleManagement + description: Read-only collection referencing the assigned principals. Provided so that callers can get the principals using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.deviceManagement.roleAssignments_GetPrincipals parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -9005,6 +9331,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -9048,12 +9375,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get roleDefinition from roleManagement + description: 'Specifies the roleDefinition that the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. Supports $filter (eq operator on id, isBuiltIn, and displayName, and startsWith operator on displayName) and $expand.' operationId: roleManagement.deviceManagement.roleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignmentMultiple-id in: path description: 'key: id of unifiedRoleAssignmentMultiple' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentMultiple @@ -9223,6 +9552,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9287,6 +9617,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9313,12 +9644,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9332,12 +9665,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.deviceManagement.roleDefinitions_ListInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9428,6 +9763,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9453,12 +9789,14 @@ paths: tags: - roleManagement.rbacApplicationMultiple summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.deviceManagement.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9466,6 +9804,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9531,6 +9870,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9538,6 +9878,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9564,6 +9905,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9571,12 +9913,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9596,6 +9940,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -9603,23 +9948,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -9651,23 +10003,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -9805,6 +10164,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9823,24 +10183,32 @@ paths: - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: appScopeId in: query description: 'Usage: appScopeId=''{appScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: principalId in: query description: 'Usage: principalId=''{principalId}''' + style: form + explode: false schema: type: string nullable: true - name: roleDefinitionId in: query description: 'Usage: roleDefinitionId=''{roleDefinitionId}''' + style: form + explode: false schema: type: string nullable: true @@ -9872,24 +10240,32 @@ paths: - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: appScopeId in: query description: 'Usage: appScopeId=''{appScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: principalId in: query description: 'Usage: principalId=''{principalId}''' + style: form + explode: false schema: type: string nullable: true - name: roleDefinitionId in: query description: 'Usage: roleDefinitionId=''{roleDefinitionId}''' + style: form + explode: false schema: type: string nullable: true @@ -10007,6 +10383,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10064,6 +10441,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10090,12 +10468,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10115,6 +10495,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10150,12 +10531,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.directory.resourceNamespaces_ListResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10234,6 +10617,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10259,12 +10643,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.directory.resourceNamespaces_GetResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10272,6 +10658,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -10331,6 +10718,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10338,6 +10726,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -10364,6 +10753,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10371,12 +10761,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10396,6 +10788,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10403,6 +10796,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -10453,6 +10847,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10460,6 +10855,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -10486,6 +10882,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -10493,12 +10890,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10600,6 +10999,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10654,6 +11054,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10680,12 +11081,14 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10705,6 +11108,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10790,6 +11194,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10821,6 +11226,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10828,6 +11234,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -10882,6 +11289,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10889,6 +11297,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -10915,6 +11324,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -10922,12 +11332,14 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10947,6 +11359,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.approvalFilterByCurrentUserOptions' responses: @@ -11087,6 +11500,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11166,6 +11580,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11192,12 +11607,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11211,12 +11628,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. operationId: roleManagement.directory.roleAssignments_GetAppScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11266,6 +11685,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11292,12 +11712,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11311,12 +11733,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.directory.roleAssignments_GetDirectoryScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11360,12 +11784,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.directory.roleAssignments_GetPrincipal parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11409,12 +11835,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. operationId: roleManagement.directory.roleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -11598,6 +12026,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance @@ -11686,6 +12115,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance @@ -11712,12 +12142,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11731,12 +12163,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it is null. Supports $expand.' operationId: roleManagement.directory.roleAssignmentScheduleInstances_GetActivatedUsing parameters: - name: unifiedRoleAssignmentScheduleInstance-id in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance @@ -11818,6 +12252,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions' responses: @@ -11989,6 +12424,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12091,6 +12527,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12117,12 +12554,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12136,12 +12575,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it''s null. Supports $expand.' operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetActivatedUsing parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12219,12 +12660,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Read-only property with details of the app-specific scope when the assignment is scoped to an app. Nullable. Supports $expand. operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetAppScope parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12269,12 +12712,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Read-only. Supports $expand. operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetDirectoryScope parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12324,6 +12769,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12338,12 +12784,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The principal that's getting a role assignment through the request. Supports $expand. operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetPrincipal parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12387,12 +12835,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand. operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetRoleDefinition parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12450,12 +12900,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get targetSchedule from roleManagement + description: The schedule for an eligible role assignment that is referenced through the targetScheduleId property. Supports $expand. operationId: roleManagement.directory.roleAssignmentScheduleRequests_GetTargetSchedule parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -12546,6 +12998,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleRequestFilterByCurrentUserOptions' responses: @@ -12700,6 +13153,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule @@ -12789,6 +13243,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule @@ -12815,12 +13270,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12834,12 +13291,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it is null. Supports $expand.' operationId: roleManagement.directory.roleAssignmentSchedules_GetActivatedUsing parameters: - name: unifiedRoleAssignmentSchedule-id in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule @@ -12923,6 +13382,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleFilterByCurrentUserOptions' responses: @@ -13060,6 +13520,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13124,6 +13585,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13150,12 +13612,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13169,12 +13633,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.directory.roleDefinitions_ListInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13265,6 +13731,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13290,12 +13757,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.directory.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13303,6 +13772,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13368,6 +13838,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13375,6 +13846,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13401,6 +13873,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13408,12 +13881,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13433,6 +13908,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -13440,23 +13916,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -13488,23 +13971,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -13648,6 +14138,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance @@ -13728,6 +14219,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance @@ -13754,12 +14246,14 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13779,6 +14273,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions' responses: @@ -13948,6 +14443,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14044,6 +14540,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14070,12 +14567,14 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14089,12 +14588,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Read-only property with details of the app-specific scope when the role eligibility is scoped to an app. Nullable. Supports $expand. operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetAppScope parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14139,12 +14640,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the role eligibility. Read-only. Supports $expand. operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetDirectoryScope parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14194,6 +14697,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14208,12 +14712,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The principal that's getting a role eligibility through the request. Supports $expand. operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetPrincipal parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14257,12 +14763,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand. operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetRoleDefinition parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14320,12 +14828,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get targetSchedule from roleManagement + description: The schedule for a role eligibility that is referenced through the targetScheduleId property. Supports $expand. operationId: roleManagement.directory.roleEligibilityScheduleRequests_GetTargetSchedule parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -14409,6 +14919,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleRequestFilterByCurrentUserOptions' responses: @@ -14558,6 +15069,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilitySchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilitySchedule @@ -14640,6 +15152,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilitySchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilitySchedule @@ -14666,12 +15179,14 @@ paths: in: path description: 'key: id of unifiedRoleEligibilitySchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilitySchedule - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14691,6 +15206,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleFilterByCurrentUserOptions' responses: @@ -14831,6 +15347,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -14910,6 +15427,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -14936,12 +15454,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14955,12 +15475,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. operationId: roleManagement.directory.transitiveRoleAssignments_GetAppScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -15010,6 +15532,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -15036,12 +15559,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15055,12 +15580,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.directory.transitiveRoleAssignments_GetDirectoryScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -15104,12 +15631,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.directory.transitiveRoleAssignments_GetPrincipal parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -15153,12 +15682,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. operationId: roleManagement.directory.transitiveRoleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -15216,6 +15747,7 @@ paths: tags: - roleManagement.rbacApplication summary: Get entitlementManagement from roleManagement + description: The RbacApplication for Entitlement Management operationId: roleManagement_GetEntitlementManagement parameters: - name: $select @@ -15328,6 +15860,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15346,24 +15879,32 @@ paths: - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: appScopeId in: query description: 'Usage: appScopeId=''{appScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: principalId in: query description: 'Usage: principalId=''{principalId}''' + style: form + explode: false schema: type: string nullable: true - name: roleDefinitionId in: query description: 'Usage: roleDefinitionId=''{roleDefinitionId}''' + style: form + explode: false schema: type: string nullable: true @@ -15395,24 +15936,32 @@ paths: - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: appScopeId in: query description: 'Usage: appScopeId=''{appScopeId}''' + style: form + explode: false schema: type: string nullable: true - name: principalId in: query description: 'Usage: principalId=''{principalId}''' + style: form + explode: false schema: type: string nullable: true - name: roleDefinitionId in: query description: 'Usage: roleDefinitionId=''{roleDefinitionId}''' + style: form + explode: false schema: type: string nullable: true @@ -15530,6 +16079,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15587,6 +16137,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15613,12 +16164,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15638,6 +16191,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15673,12 +16227,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.entitlementManagement.resourceNamespaces_ListResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15757,6 +16313,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15782,12 +16339,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get resourceActions from roleManagement + description: Operations that an authorized principal are allowed to perform. operationId: roleManagement.entitlementManagement.resourceNamespaces_GetResourceActions parameters: - name: unifiedRbacResourceNamespace-id in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15795,6 +16354,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -15854,6 +16414,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15861,6 +16422,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -15887,6 +16449,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15894,12 +16457,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15919,6 +16484,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15926,6 +16492,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -15976,6 +16543,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -15983,6 +16551,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction @@ -16009,6 +16578,7 @@ paths: in: path description: 'key: id of unifiedRbacResourceNamespace' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceNamespace @@ -16016,12 +16586,14 @@ paths: in: path description: 'key: id of unifiedRbacResourceAction' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRbacResourceAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16123,6 +16695,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16177,6 +16750,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16203,12 +16777,14 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16228,6 +16804,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16313,6 +16890,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16344,6 +16922,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16351,6 +16930,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -16405,6 +16985,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16412,6 +16993,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -16438,6 +17020,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16445,12 +17028,14 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16470,6 +17055,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.approvalFilterByCurrentUserOptions' responses: @@ -16610,6 +17196,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -16689,6 +17276,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -16715,12 +17303,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16734,12 +17324,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. operationId: roleManagement.entitlementManagement.roleAssignments_GetAppScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -16789,6 +17381,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -16815,12 +17408,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16834,12 +17429,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignments_GetDirectoryScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -16883,12 +17480,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignments_GetPrincipal parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -16932,12 +17531,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -17121,6 +17722,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance @@ -17209,6 +17811,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance @@ -17235,12 +17838,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17254,12 +17859,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it is null. Supports $expand.' operationId: roleManagement.entitlementManagement.roleAssignmentScheduleInstances_GetActivatedUsing parameters: - name: unifiedRoleAssignmentScheduleInstance-id in: path description: 'key: id of unifiedRoleAssignmentScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleInstance @@ -17341,6 +17948,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleInstanceFilterByCurrentUserOptions' responses: @@ -17512,6 +18120,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17614,6 +18223,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17640,12 +18250,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17659,12 +18271,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it''s null. Supports $expand.' operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetActivatedUsing parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17742,12 +18356,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Read-only property with details of the app-specific scope when the assignment is scoped to an app. Nullable. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetAppScope parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17792,12 +18408,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Read-only. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetDirectoryScope parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17847,6 +18465,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17861,12 +18480,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The principal that's getting a role assignment through the request. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetPrincipal parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17910,12 +18531,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetRoleDefinition parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -17973,12 +18596,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get targetSchedule from roleManagement + description: The schedule for an eligible role assignment that is referenced through the targetScheduleId property. Supports $expand. operationId: roleManagement.entitlementManagement.roleAssignmentScheduleRequests_GetTargetSchedule parameters: - name: unifiedRoleAssignmentScheduleRequest-id in: path description: 'key: id of unifiedRoleAssignmentScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentScheduleRequest @@ -18069,6 +18694,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleRequestFilterByCurrentUserOptions' responses: @@ -18223,6 +18849,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule @@ -18312,6 +18939,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule @@ -18338,12 +18966,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18357,12 +18987,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get activatedUsing from roleManagement + description: 'If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it is null. Supports $expand.' operationId: roleManagement.entitlementManagement.roleAssignmentSchedules_GetActivatedUsing parameters: - name: unifiedRoleAssignmentSchedule-id in: path description: 'key: id of unifiedRoleAssignmentSchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignmentSchedule @@ -18446,6 +19078,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleAssignmentScheduleFilterByCurrentUserOptions' responses: @@ -18583,6 +19216,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18647,6 +19281,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18673,12 +19308,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18692,12 +19329,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.entitlementManagement.roleDefinitions_ListInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18788,6 +19427,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18813,12 +19453,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get inheritsPermissionsFrom from roleManagement + description: Read-only collection of role definitions that the given role definition inherits from. Only Azure AD built-in roles support this attribute. operationId: roleManagement.entitlementManagement.roleDefinitions_GetInheritsPermissionsFrom parameters: - name: unifiedRoleDefinition-id in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18826,6 +19468,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18891,6 +19534,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18898,6 +19542,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18924,6 +19569,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18931,12 +19577,14 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18956,6 +19604,7 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition @@ -18963,23 +19612,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -19011,23 +19667,30 @@ paths: in: path description: 'key: id of unifiedRoleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleDefinition - name: transitive in: query description: 'Usage: transitive={transitive}' + style: form + explode: false schema: type: boolean default: false - name: directoryScopeType in: query description: 'Usage: directoryScopeType=''{directoryScopeType}''' + style: form + explode: false schema: type: string - name: directoryScopeId in: query description: 'Usage: directoryScopeId=''{directoryScopeId}''' + style: form + explode: false schema: type: string responses: @@ -19171,6 +19834,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance @@ -19251,6 +19915,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance @@ -19277,12 +19942,14 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19302,6 +19969,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleInstanceFilterByCurrentUserOptions' responses: @@ -19471,6 +20139,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19567,6 +20236,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19593,12 +20263,14 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19612,12 +20284,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Read-only property with details of the app-specific scope when the role eligibility is scoped to an app. Nullable. Supports $expand. operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetAppScope parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19662,12 +20336,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the role eligibility. Read-only. Supports $expand. operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetDirectoryScope parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19717,6 +20393,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19731,12 +20408,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The principal that's getting a role eligibility through the request. Supports $expand. operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetPrincipal parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19780,12 +20459,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand. operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetRoleDefinition parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19843,12 +20524,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get targetSchedule from roleManagement + description: The schedule for a role eligibility that is referenced through the targetScheduleId property. Supports $expand. operationId: roleManagement.entitlementManagement.roleEligibilityScheduleRequests_GetTargetSchedule parameters: - name: unifiedRoleEligibilityScheduleRequest-id in: path description: 'key: id of unifiedRoleEligibilityScheduleRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilityScheduleRequest @@ -19932,6 +20615,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleRequestFilterByCurrentUserOptions' responses: @@ -20081,6 +20765,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilitySchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilitySchedule @@ -20163,6 +20848,7 @@ paths: in: path description: 'key: id of unifiedRoleEligibilitySchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilitySchedule @@ -20189,12 +20875,14 @@ paths: in: path description: 'key: id of unifiedRoleEligibilitySchedule' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleEligibilitySchedule - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20214,6 +20902,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.roleEligibilityScheduleFilterByCurrentUserOptions' responses: @@ -20354,6 +21043,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20433,6 +21123,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20459,12 +21150,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20478,12 +21171,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get appScope from roleManagement + description: Details of the app specific scope when the assignment scope is app specific. Containment entity. operationId: roleManagement.entitlementManagement.transitiveRoleAssignments_GetAppScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20533,6 +21228,7 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20559,12 +21255,14 @@ paths: in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20578,12 +21276,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get directoryScope from roleManagement + description: The directory object that is the scope of the assignment. Provided so that callers can get the directory object using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.entitlementManagement.transitiveRoleAssignments_GetDirectoryScope parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20627,12 +21327,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get principal from roleManagement + description: The assigned principal. Provided so that callers can get the principal using $expand at the same time as getting the role assignment. Read-only. Supports $expand. operationId: roleManagement.entitlementManagement.transitiveRoleAssignments_GetPrincipal parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20676,12 +21378,14 @@ paths: tags: - roleManagement.rbacApplication summary: Get roleDefinition from roleManagement + description: The roleDefinition the assignment is for. Provided so that callers can get the role definition using $expand at the same time as getting the role assignment. roleDefinition.id will be auto expanded. Supports $expand. operationId: roleManagement.entitlementManagement.transitiveRoleAssignments_GetRoleDefinition parameters: - name: unifiedRoleAssignment-id in: path description: 'key: id of unifiedRoleAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: unifiedRoleAssignment @@ -20746,6 +21450,9 @@ components: type: string description: Tenant GUID the enrollment profile belongs to. nullable: true + configureWifi: + type: boolean + description: 'Boolean that indicates that the Wi-Fi network should be configured during device provisioning. When set to TRUE, device provisioning will use Wi-Fi related properties to automatically connect to Wi-Fi networks. When set to FALSE or undefined, other Wi-Fi related properties will be ignored. Default value is TRUE. Returned by default.' createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -21318,6 +22025,12 @@ components: chooseYourLockScreenDisabled: type: boolean description: Indicates if iCloud Documents and Desktop screen is disabled + dontAutoPopulatePrimaryAccountInfo: + type: boolean + description: Indicates whether Setup Assistant will auto populate the primary account information + enableRestrictEditing: + type: boolean + description: Indicates whether the user will enable blockediting fileVaultDisabled: type: boolean description: Indicates if file vault is disabled @@ -21327,12 +22040,52 @@ components: iCloudStorageDisabled: type: boolean description: Indicates if iCloud Documents and Desktop screen is disabled + isLocalPrimaryAccount: + type: boolean + description: Indicates whether the profile is a local account + isPrimaryUser: + type: boolean + description: Indicates whether the profile is a primary user + lockPrimaryAccountInfo: + type: boolean + description: Indicates whether the primary account information will be locked + managedLocalUserShortName: + type: boolean + description: Indicates whether or not this is the short name of the local account to manage passCodeDisabled: type: boolean description: Indicates if Passcode setup pane is disabled + prefillAccountInfo: + type: boolean + description: Indicates whether the user will prefill their account info + primaryAccountFullName: + type: string + description: Indicates what the full name for the primary account is + nullable: true + primaryAccountUserName: + type: string + description: Indicates what the account name for the primary account is + nullable: true + primaryUser: + type: string + description: Indicates who the primary user of the profile is + nullable: true + primaryUserFullName: + type: string + description: Indicates who the primary user of the profile is + nullable: true registrationDisabled: type: boolean description: Indicates if registration is disabled + requestRequiresNetworkTether: + type: boolean + description: Indicates if the device is network-tethered to run the command + setPrimarySetupAccountAsRegularUser: + type: boolean + description: Indicates whether Setup Assistant will set the account as a regular user + skipPrimarySetupAccountCreation: + type: boolean + description: Indicates whether Setup Assistant will skip the user interface for primary account setup zoomDisabled: type: boolean description: Indicates if zoom setup pane is disabled @@ -22120,12 +22873,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignment' - description: Resource to grant access to users or groups. roleDefinitions: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleDefinition' - description: Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. transitiveRoleAssignments: type: array items: @@ -22138,32 +22889,26 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleInstance' - description: Instances for active role assignments. roleAssignmentScheduleRequests: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentScheduleRequest' - description: Requests for active role assignments to principals through PIM. roleAssignmentSchedules: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleAssignmentSchedule' - description: Schedules for active role assignment operations. roleEligibilityScheduleInstances: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleInstance' - description: Instances for role eligibility requests. roleEligibilityScheduleRequests: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilityScheduleRequest' - description: Requests for role eligibilities for principals through PIM. roleEligibilitySchedules: type: array items: $ref: '#/components/schemas/microsoft.graph.unifiedRoleEligibilitySchedule' - description: Schedules for role eligibility operations. additionalProperties: type: object microsoft.graph.unifiedRoleScheduleInstanceBase: @@ -22448,7 +23193,7 @@ components: nullable: true principalId: type: string - description: 'Identifier of the principal that has been granted the assignment. Supports $filter (eq, ne).' + description: 'Identifier of the principal that has been granted the assignment. Can be a user, role-assignable group, or a service principal. Supports $filter (eq, ne).' nullable: true roleDefinitionId: type: string @@ -22558,7 +23303,7 @@ components: nullable: true principalId: type: string - description: 'Identifier of the principal that has been granted the role eligibility. Supports $filter (eq, ne).' + description: 'Identifier of the principal that has been granted the role eligibility. Can be a user or a role-assignable group. You can grant only active assignments service principals. Supports $filter (eq, ne).' nullable: true roleDefinitionId: type: string @@ -23398,7 +24143,6 @@ components: items: type: string nullable: true - description: Set of tasks that may not be performed on a resource. Not yet supported. additionalProperties: type: object microsoft.graph.identity: @@ -23407,11 +24151,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -24396,6 +25140,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -24404,6 +25150,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -24411,18 +25159,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/DeviceManagement.Functions.yml b/openApiDocs/beta/DeviceManagement.Functions.yml index ed40b2088e6..92c417af0e5 100644 --- a/openApiDocs/beta/DeviceManagement.Functions.yml +++ b/openApiDocs/beta/DeviceManagement.Functions.yml @@ -11,6 +11,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function downloadApplePushNotificationCertificateSigningRequest + description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate_downloadApplePushNotificationCertificateSigningRequest responses: '200': @@ -39,6 +40,7 @@ paths: in: path description: 'key: id of deviceAndAppManagementAssignmentFilter' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementAssignmentFilter @@ -71,6 +73,7 @@ paths: in: path description: 'Usage: platform=''{platform}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.devicePlatformType' responses: @@ -118,6 +121,7 @@ paths: in: path description: 'Usage: category=''{category}''' required: true + style: simple schema: type: string nullable: true @@ -176,6 +180,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -208,6 +213,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -232,6 +238,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -262,6 +269,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -294,6 +302,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -307,6 +316,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/comanagedDevices/{managedDevice-id}/microsoft.graph.retrieveRemoteHelpSession(sessionKey=''{sessionKey}'')': + get: + tags: + - deviceManagement.Functions + summary: Invoke function retrieveRemoteHelpSession + operationId: deviceManagement.comanagedDevices_retrieveRemoteHelpSession + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: managedDevice + - name: sessionKey + in: path + description: 'Usage: sessionKey=''{sessionKey}''' + required: true + style: simple + schema: + type: string + nullable: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.retrieveRemoteHelpSessionResponse' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/comanagedDevices/microsoft.graph.appDiagnostics(upn=''{upn}'')': get: tags: @@ -318,6 +360,7 @@ paths: in: path description: 'Usage: upn=''{upn}''' required: true + style: simple schema: type: string nullable: true @@ -350,6 +393,7 @@ paths: in: path description: 'Usage: policyId=''{policyId}''' required: true + style: simple schema: type: string nullable: true @@ -368,12 +412,14 @@ paths: tags: - deviceManagement.Functions summary: Invoke function exportMobileConfig + description: Exports the mobile configuration operationId: deviceManagement.depOnboardingSettings.enrollmentProfiles_exportMobileConfig parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -381,6 +427,7 @@ paths: in: path description: 'key: id of enrollmentProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentProfile @@ -405,12 +452,14 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getEncryptionPublicKey + description: Get a public key to use to encrypt the Apple device enrollment program token operationId: deviceManagement.depOnboardingSettings_getEncryptionPublicKey parameters: - name: depOnboardingSetting-id in: path description: 'key: id of depOnboardingSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: depOnboardingSetting @@ -441,6 +490,7 @@ paths: in: path description: 'Usage: expiringBeforeDateTime=''{expiringBeforeDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -497,6 +547,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -504,6 +555,7 @@ paths: in: path description: 'Usage: secretReferenceValueId=''{secretReferenceValueId}''' required: true + style: simple schema: type: string nullable: true @@ -552,12 +604,14 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getRemediationHistory + description: Function to get the number of remediations by a device health scripts operationId: deviceManagement.deviceHealthScripts_getRemediationHistory parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -614,6 +668,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -621,6 +676,7 @@ paths: in: path description: 'Usage: templateId=''{templateId}''' required: true + style: simple schema: type: string nullable: true @@ -653,6 +709,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -685,6 +742,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -709,6 +767,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -739,6 +798,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -771,6 +831,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -784,6 +845,39 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + '/deviceManagement/managedDevices/{managedDevice-id}/microsoft.graph.retrieveRemoteHelpSession(sessionKey=''{sessionKey}'')': + get: + tags: + - deviceManagement.Functions + summary: Invoke function retrieveRemoteHelpSession + operationId: deviceManagement.managedDevices_retrieveRemoteHelpSession + parameters: + - name: managedDevice-id + in: path + description: 'key: id of managedDevice' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: managedDevice + - name: sessionKey + in: path + description: 'Usage: sessionKey=''{sessionKey}''' + required: true + style: simple + schema: + type: string + nullable: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.retrieveRemoteHelpSessionResponse' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/managedDevices/microsoft.graph.appDiagnostics(upn=''{upn}'')': get: tags: @@ -795,6 +889,7 @@ paths: in: path description: 'Usage: upn=''{upn}''' required: true + style: simple schema: type: string nullable: true @@ -821,6 +916,7 @@ paths: tags: - deviceManagement.Functions summary: Invoke function getAssignedRoleDetails + description: Retrieves the assigned role definitions and role assignments of the currently authenticated user. operationId: deviceManagement_getAssignedRoleDetails responses: '200': @@ -900,6 +996,7 @@ paths: in: path description: 'Usage: scope=''{scope}''' required: true + style: simple schema: type: string nullable: true @@ -932,6 +1029,7 @@ paths: in: path description: 'Usage: ids={ids}' required: true + style: simple schema: type: array items: @@ -965,6 +1063,7 @@ paths: in: path description: 'Usage: resource=''{resource}''' required: true + style: simple schema: type: string nullable: true @@ -997,6 +1096,7 @@ paths: in: path description: 'Usage: enrollmentType=''{enrollmentType}''' required: true + style: simple schema: type: string nullable: true @@ -1021,6 +1121,7 @@ paths: in: path description: 'Usage: resource=''{resource}''' required: true + style: simple schema: type: string nullable: true @@ -1067,6 +1168,7 @@ paths: in: path description: 'Usage: domainName=''{domainName}''' required: true + style: simple schema: type: string nullable: true @@ -1086,6 +1188,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function + /deviceManagement/monitoring/alertRecords/microsoft.graph.deviceManagement.getPortalNotifications(): + get: + tags: + - deviceManagement.Functions + summary: Invoke function getPortalNotifications + operationId: deviceManagement.monitoring.alertRecords_getPortalNotifications + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of alertRecord + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.portalNotification' + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function '/deviceManagement/resourceOperations/{resourceOperation-id}/microsoft.graph.getScopesForUser(userid=''{userid}'')': get: tags: @@ -1097,6 +1223,7 @@ paths: in: path description: 'key: id of resourceOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceOperation @@ -1104,6 +1231,7 @@ paths: in: path description: 'Usage: userid=''{userid}''' required: true + style: simple schema: type: string nullable: true @@ -1159,6 +1287,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -1166,6 +1295,7 @@ paths: in: path description: 'Usage: templateId=''{templateId}''' required: true + style: simple schema: type: string nullable: true @@ -1198,6 +1328,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -1205,6 +1336,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -1212,6 +1344,7 @@ paths: in: path description: 'Usage: templateId=''{templateId}''' required: true + style: simple schema: type: string nullable: true @@ -1260,6 +1393,7 @@ paths: in: path description: 'Usage: summarizeBy=''{summarizeBy}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsSummarizedBy' responses: @@ -1291,6 +1425,7 @@ paths: in: path description: 'Usage: summarizeBy=''{summarizeBy}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsSummarizedBy' responses: @@ -1314,6 +1449,7 @@ paths: in: path description: 'Usage: summarizeBy=''{summarizeBy}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsSummarizedBy' responses: @@ -1345,6 +1481,7 @@ paths: in: path description: 'Usage: summarizeBy=''{summarizeBy}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsSummarizedBy' responses: @@ -1401,6 +1538,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -1433,6 +1571,7 @@ paths: in: path description: 'key: id of cloudPC' required: true + style: simple schema: type: string x-ms-docs-key-type: cloudPC @@ -1506,6 +1645,7 @@ paths: in: path description: 'Usage: subscriptionId=''{subscriptionId}''' required: true + style: simple schema: type: string nullable: true @@ -1691,6 +1831,10 @@ components: type: string description: The name of the Azure Storage account in which the Cloud PC snapshot is being saved. nullable: true + azureStorageContainerName: + type: string + description: The name of the container in an Azure Storage account in which the Cloud PC snapshot is being saved. + nullable: true inReview: type: boolean description: True if the Cloud PC is set to in review by the administrator. @@ -1801,6 +1945,42 @@ components: additionalProperties: type: object description: OEM Warranty information for a given device + microsoft.graph.retrieveRemoteHelpSessionResponse: + title: retrieveRemoteHelpSessionResponse + type: object + properties: + acsGroupId: + type: string + description: ACS Group Id + acsHelperUserId: + type: string + description: Helper ACS User Id + acsHelperUserToken: + type: string + description: Helper ACS User Token + acsSharerUserId: + type: string + description: Sharer ACS User Id + deviceName: + type: string + description: Android Device Name + pubSubGroupId: + type: string + description: Azure Pubsub Group Id + pubSubHelperAccessUri: + type: string + description: Azure Pubsub Group Id + sessionExpirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Azure Pubsub Session Expiration Date Time. + format: date-time + sessionKey: + type: string + description: The unique identifier for a session + additionalProperties: + type: object + description: Remote help - response we provide back to the helper on retrieve session API call microsoft.graph.powerliftIncidentMetadata: title: powerliftIncidentMetadata type: object @@ -2296,6 +2476,33 @@ components: additionalProperties: type: object description: The user experience analytics Work From Anywhere metrics devices summary. + microsoft.graph.deviceManagement.portalNotification: + title: portalNotification + type: object + properties: + alertImpact: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertImpact' + alertRecordId: + type: string + nullable: true + alertRuleId: + type: string + nullable: true + alertRuleName: + type: string + nullable: true + alertRuleTemplate: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertRuleTemplate' + id: + type: string + nullable: true + isPortalNotificationSent: + type: boolean + nullable: true + severity: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.ruleSeverityType' + additionalProperties: + type: object microsoft.graph.tenantAttachRBACState: title: tenantAttachRBACState type: object @@ -2582,9 +2789,11 @@ components: eventDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Indicates the date and time when this event was created. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time eventName: type: string + description: Name of the event. nullable: true eventResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityEventResult' @@ -2592,6 +2801,7 @@ components: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityEventType' message: type: string + description: Additional message for this event. nullable: true additionalProperties: type: object @@ -3171,6 +3381,37 @@ components: additionalProperties: type: object description: The user experience analytics work from anywhere Windows 10 devices summary. + microsoft.graph.deviceManagement.alertImpact: + title: alertImpact + type: object + properties: + aggregationType: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.aggregationType' + value: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + additionalProperties: + type: object + microsoft.graph.deviceManagement.alertRuleTemplate: + title: alertRuleTemplate + enum: + - cloudPcProvisionScenario + - cloudPcImageUploadScenario + - cloudPcOnPremiseNetworkConnectionCheckScenario + - unknownFutureValue + type: string + microsoft.graph.deviceManagement.ruleSeverityType: + title: ruleSeverityType + enum: + - unknown + - informational + - warning + - critical + - unknownFutureValue + type: string microsoft.graph.diskType: title: diskType enum: @@ -3311,6 +3552,15 @@ components: additionalProperties: type: object description: Base type for assignment targets. + microsoft.graph.deviceManagement.aggregationType: + title: aggregationType + enum: + - count + - percentage + - affectedCloudPcCount + - affectedCloudPcPercentage + - unknownFutureValue + type: string microsoft.graph.ODataErrors.MainError: required: - code diff --git a/openApiDocs/beta/DeviceManagement.yml b/openApiDocs/beta/DeviceManagement.yml index b6cce61a23a..4e5261189ea 100644 --- a/openApiDocs/beta/DeviceManagement.yml +++ b/openApiDocs/beta/DeviceManagement.yml @@ -34,12 +34,14 @@ paths: - intuneBrand - accountMoveCompletionDateTime - adminConsent + - dataProcessorServiceForWindowsFeaturesOnboarding - deviceProtectionOverview - managedDeviceCleanupSettings - subscriptions - subscriptionState - userExperienceAnalyticsSettings - windowsMalwareOverview + - monitoring - virtualEndpoint - androidDeviceOwnerEnrollmentProfiles - androidForWorkAppConfigurationSchemas @@ -209,6 +211,7 @@ paths: items: enum: - '*' + - monitoring - virtualEndpoint - androidDeviceOwnerEnrollmentProfiles - androidForWorkAppConfigurationSchemas @@ -375,6 +378,8 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagement' links: + monitoring: + operationId: deviceManagement.GetMonitoring virtualEndpoint: operationId: deviceManagement.GetVirtualEndpoint androidDeviceOwnerEnrollmentProfiles: @@ -747,6 +752,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingStateSummary from deviceManagement + description: The summary state of ATP onboarding state for this account. operationId: deviceManagement_GetAdvancedThreatProtectionOnboardingStateSummary parameters: - name: $select @@ -823,6 +829,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -836,6 +843,7 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingDeviceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_ListAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - $ref: '#/components/parameters/top' @@ -952,12 +960,14 @@ paths: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingDeviceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary_GetAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - name: advancedThreatProtectionOnboardingDeviceSettingState-id in: path description: 'key: id of advancedThreatProtectionOnboardingDeviceSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: advancedThreatProtectionOnboardingDeviceSettingState @@ -1017,6 +1027,7 @@ paths: in: path description: 'key: id of advancedThreatProtectionOnboardingDeviceSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: advancedThreatProtectionOnboardingDeviceSettingState @@ -1043,12 +1054,14 @@ paths: in: path description: 'key: id of advancedThreatProtectionOnboardingDeviceSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: advancedThreatProtectionOnboardingDeviceSettingState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1062,6 +1075,7 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get androidForWorkAppConfigurationSchemas from deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_ListAndroidGraphFPreWorkAppConfigurationSchemas parameters: - $ref: '#/components/parameters/top' @@ -1148,12 +1162,14 @@ paths: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get androidForWorkAppConfigurationSchemas from deviceManagement + description: Android for Work app configuration schema entities. operationId: deviceManagement_GetAndroidGraphFPreWorkAppConfigurationSchemas parameters: - name: androidForWorkAppConfigurationSchema-id in: path description: 'key: id of androidForWorkAppConfigurationSchema' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkAppConfigurationSchema @@ -1203,6 +1219,7 @@ paths: in: path description: 'key: id of androidForWorkAppConfigurationSchema' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkAppConfigurationSchema @@ -1229,12 +1246,14 @@ paths: in: path description: 'key: id of androidForWorkAppConfigurationSchema' required: true + style: simple schema: type: string x-ms-docs-key-type: androidForWorkAppConfigurationSchema - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1248,6 +1267,7 @@ paths: tags: - deviceManagement.androidForWorkSettings summary: Get androidForWorkSettings from deviceManagement + description: The singleton Android for Work settings entity. operationId: deviceManagement_GetAndroidGraphFPreWorkSettings parameters: - name: $select @@ -1329,6 +1349,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1342,6 +1363,7 @@ paths: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Get androidManagedStoreAccountEnterpriseSettings from deviceManagement + description: The singleton Android managed store account enterprise settings entity. operationId: deviceManagement_GetAndroidManagedStoreAccountEnterpriseSettings parameters: - name: $select @@ -1432,6 +1454,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1445,6 +1468,7 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get androidManagedStoreAppConfigurationSchemas from deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_ListAndroidManagedStoreAppConfigurationSchemas parameters: - $ref: '#/components/parameters/top' @@ -1534,12 +1558,14 @@ paths: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get androidManagedStoreAppConfigurationSchemas from deviceManagement + description: Android Enterprise app configuration schema entities. operationId: deviceManagement_GetAndroidManagedStoreAppConfigurationSchemas parameters: - name: androidManagedStoreAppConfigurationSchema-id in: path description: 'key: id of androidManagedStoreAppConfigurationSchema' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedStoreAppConfigurationSchema @@ -1590,6 +1616,7 @@ paths: in: path description: 'key: id of androidManagedStoreAppConfigurationSchema' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedStoreAppConfigurationSchema @@ -1616,12 +1643,14 @@ paths: in: path description: 'key: id of androidManagedStoreAppConfigurationSchema' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedStoreAppConfigurationSchema - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1635,6 +1664,7 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get assignmentFilters from deviceManagement + description: The list of assignment filters operationId: deviceManagement_ListAssignmentFilters parameters: - $ref: '#/components/parameters/top' @@ -1736,12 +1766,14 @@ paths: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get assignmentFilters from deviceManagement + description: The list of assignment filters operationId: deviceManagement_GetAssignmentFilters parameters: - name: deviceAndAppManagementAssignmentFilter-id in: path description: 'key: id of deviceAndAppManagementAssignmentFilter' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementAssignmentFilter @@ -1799,6 +1831,7 @@ paths: in: path description: 'key: id of deviceAndAppManagementAssignmentFilter' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementAssignmentFilter @@ -1825,12 +1858,14 @@ paths: in: path description: 'key: id of deviceAndAppManagementAssignmentFilter' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAndAppManagementAssignmentFilter - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1844,6 +1879,7 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get categories from deviceManagement + description: The available categories operationId: deviceManagement_ListCategories parameters: - $ref: '#/components/parameters/top' @@ -1932,12 +1968,14 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get categories from deviceManagement + description: The available categories operationId: deviceManagement_GetCategories parameters: - name: deviceManagementSettingCategory-id in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -1994,6 +2032,7 @@ paths: in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -2020,12 +2059,14 @@ paths: in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2039,12 +2080,14 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get settingDefinitions from deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_ListSettingDefinitions parameters: - name: deviceManagementSettingCategory-id in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -2142,6 +2185,7 @@ paths: in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -2167,12 +2211,14 @@ paths: tags: - deviceManagement.deviceManagementSettingCategory summary: Get settingDefinitions from deviceManagement + description: The setting definitions this category contains operationId: deviceManagement.categories_GetSettingDefinitions parameters: - name: deviceManagementSettingCategory-id in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -2180,6 +2226,7 @@ paths: in: path description: 'key: id of deviceManagementSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition @@ -2238,6 +2285,7 @@ paths: in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -2245,6 +2293,7 @@ paths: in: path description: 'key: id of deviceManagementSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition @@ -2271,6 +2320,7 @@ paths: in: path description: 'key: id of deviceManagementSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory @@ -2278,12 +2328,14 @@ paths: in: path description: 'key: id of deviceManagementSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2297,6 +2349,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get comanagedDevices from deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_ListComanagedDevices parameters: - $ref: '#/components/parameters/top' @@ -2640,12 +2693,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get comanagedDevices from deviceManagement + description: The list of co-managed devices report operationId: deviceManagement_GetComanagedDevices parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -2830,6 +2885,8 @@ paths: operationId: deviceManagement.comanagedDevices.managedDevice.cleanWindowsDevice createDeviceLogCollectionRequest: operationId: deviceManagement.comanagedDevices.managedDevice.createDeviceLogCollectionRequest + createRemoteHelpSession: + operationId: deviceManagement.comanagedDevices.managedDevice.createRemoteHelpSession deleteUserFromSharedAppleDevice: operationId: deviceManagement.comanagedDevices.managedDevice.deleteUserFromSharedAppleDevice deprovision: @@ -2872,6 +2929,8 @@ paths: operationId: deviceManagement.comanagedDevices.managedDevice.reprovisionCloudPc requestRemoteAssistance: operationId: deviceManagement.comanagedDevices.managedDevice.requestRemoteAssistance + requestRemoteHelpSessionAccess: + operationId: deviceManagement.comanagedDevices.managedDevice.requestRemoteHelpSessionAccess resetPasscode: operationId: deviceManagement.comanagedDevices.managedDevice.resetPasscode resizeCloudPc: @@ -2880,6 +2939,8 @@ paths: operationId: deviceManagement.comanagedDevices.managedDevice.restoreCloudPc retire: operationId: deviceManagement.comanagedDevices.managedDevice.retire + retrieveRemoteHelpSession: + operationId: deviceManagement.comanagedDevices.managedDevice.retrieveRemoteHelpSession revokeAppleVppLicenses: operationId: deviceManagement.comanagedDevices.managedDevice.revokeAppleVppLicenses rotateBitLockerKeys: @@ -2919,6 +2980,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -2945,12 +3007,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2964,12 +3028,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_ListAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3037,6 +3103,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3062,12 +3129,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_GetAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3075,6 +3144,7 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails @@ -3123,6 +3193,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3130,6 +3201,7 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails @@ -3156,6 +3228,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3163,12 +3236,14 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3182,12 +3257,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices_ListDetectedApps parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3212,6 +3289,10 @@ paths: - deviceCount desc - displayName - displayName desc + - platform + - platform desc + - publisher + - publisher desc - sizeInByte - sizeInByte desc - version @@ -3230,6 +3311,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -3261,12 +3344,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices_GetDetectedApps parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3274,6 +3359,7 @@ paths: in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -3290,6 +3376,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -3328,12 +3416,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCategory from deviceManagement + description: Device category operationId: deviceManagement.comanagedDevices_GetDeviceCategory parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3384,6 +3474,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3410,12 +3501,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3429,12 +3522,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_ListDeviceCompliancePolicyStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3523,6 +3618,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3548,12 +3644,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices_GetDeviceCompliancePolicyStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3561,6 +3659,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState @@ -3616,6 +3715,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3623,6 +3723,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState @@ -3649,6 +3750,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3656,12 +3758,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3675,12 +3779,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_ListDeviceConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3769,6 +3875,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3794,12 +3901,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices_GetDeviceConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3807,6 +3916,7 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState @@ -3862,6 +3972,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3869,6 +3980,7 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState @@ -3895,6 +4007,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -3902,12 +4015,14 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3921,12 +4036,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_ListLogCollectionRequests parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4015,6 +4132,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4040,12 +4158,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.comanagedDevices_GetLogCollectionRequests parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4053,6 +4173,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -4111,6 +4232,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4118,6 +4240,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -4144,6 +4267,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4151,12 +4275,14 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4170,12 +4296,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_ListManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4264,6 +4392,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4289,12 +4418,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices_GetManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4302,6 +4433,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState @@ -4357,6 +4489,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4364,6 +4497,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState @@ -4390,6 +4524,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4397,12 +4532,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4416,12 +4553,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_ListSecurityBaselineStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4500,6 +4639,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4525,12 +4665,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices_GetSecurityBaselineStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4538,6 +4680,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4597,6 +4740,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4604,6 +4748,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4630,6 +4775,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4637,12 +4783,14 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4656,12 +4804,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_ListSettingStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4669,6 +4819,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4757,6 +4908,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4764,6 +4916,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4789,12 +4942,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates_GetSettingStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4802,6 +4957,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4809,6 +4965,7 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState @@ -4864,6 +5021,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4871,6 +5029,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4878,6 +5037,7 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState @@ -4904,6 +5064,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -4911,6 +5072,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -4918,12 +5080,14 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4937,12 +5101,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices_ListUsers parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5003,6 +5169,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -5155,6 +5323,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -5372,12 +5541,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get windowsProtectionState from deviceManagement + description: The device protection status. This property is read-only. operationId: deviceManagement.comanagedDevices_GetWindowsProtectionState parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5452,6 +5623,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5478,12 +5650,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5497,12 +5671,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_ListDetectedMalwareState parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5597,6 +5773,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5622,12 +5799,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState_GetDetectedMalwareState parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5635,6 +5814,7 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState @@ -5692,6 +5872,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5699,6 +5880,7 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState @@ -5725,6 +5907,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -5732,12 +5915,14 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5751,6 +5936,7 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get compliancePolicies from deviceManagement + description: List of all compliance policies operationId: deviceManagement_ListCompliancePolicies parameters: - $ref: '#/components/parameters/top' @@ -5867,12 +6053,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get compliancePolicies from deviceManagement + description: List of all compliance policies operationId: deviceManagement_GetCompliancePolicies parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -5953,6 +6141,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -5979,12 +6168,14 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5998,12 +6189,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get assignments from deviceManagement + description: Policy assignments operationId: deviceManagement.compliancePolicies_ListAssignments parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6077,6 +6270,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6102,12 +6296,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get assignments from deviceManagement + description: Policy assignments operationId: deviceManagement.compliancePolicies_GetAssignments parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6115,6 +6311,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment @@ -6165,6 +6362,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6172,6 +6370,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment @@ -6198,6 +6397,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6205,12 +6405,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6224,12 +6426,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.compliancePolicies_ListScheduledActionsGraphFPreRule parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6299,6 +6503,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6324,12 +6529,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.compliancePolicies_GetScheduledActionsGraphFPreRule parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6337,6 +6544,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6393,6 +6601,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6400,6 +6609,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6426,6 +6636,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6433,12 +6644,14 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6452,12 +6665,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. This collection can contain a maximum of 100 elements. operationId: deviceManagement.compliancePolicies.scheduledActionsGraphFPreRule_ListScheduledActionConfigurations parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6465,6 +6680,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6541,6 +6757,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6548,6 +6765,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6573,12 +6791,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. This collection can contain a maximum of 100 elements. operationId: deviceManagement.compliancePolicies.scheduledActionsGraphFPreRule_GetScheduledActionConfigurations parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6586,6 +6806,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6593,6 +6814,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceActionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceActionItem @@ -6644,6 +6866,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6651,6 +6874,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6658,6 +6882,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceActionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceActionItem @@ -6684,6 +6909,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6691,6 +6917,7 @@ paths: in: path description: 'key: id of deviceManagementComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule @@ -6698,12 +6925,14 @@ paths: in: path description: 'key: id of deviceManagementComplianceActionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementComplianceActionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6717,12 +6946,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settings from deviceManagement + description: Policy settings operationId: deviceManagement.compliancePolicies_ListSettings parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6792,6 +7023,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6817,12 +7049,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settings from deviceManagement + description: Policy settings operationId: deviceManagement.compliancePolicies_GetSettings parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6830,6 +7064,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -6886,6 +7121,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6893,6 +7129,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -6919,6 +7156,7 @@ paths: in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6926,12 +7164,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6945,12 +7185,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settingDefinitions from deviceManagement + description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.compliancePolicies.settings_ListSettingDefinitions parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -6958,6 +7200,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -7071,12 +7314,14 @@ paths: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settingDefinitions from deviceManagement + description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.compliancePolicies.settings_GetSettingDefinitions parameters: - name: deviceManagementCompliancePolicy-id in: path description: 'key: id of deviceManagementCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy @@ -7084,6 +7329,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -7091,6 +7337,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -7151,6 +7398,7 @@ paths: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get complianceSettings from deviceManagement + description: List of all ComplianceSettings operationId: deviceManagement_ListComplianceSettings parameters: - $ref: '#/components/parameters/top' @@ -7285,12 +7533,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get complianceSettings from deviceManagement + description: List of all ComplianceSettings operationId: deviceManagement_GetComplianceSettings parameters: - name: deviceManagementConfigurationSettingDefinition-id in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -7356,6 +7606,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -7382,12 +7633,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7401,6 +7654,7 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get configurationPolicies from deviceManagement + description: List of all Configuration policies operationId: deviceManagement_ListConfigurationPolicies parameters: - $ref: '#/components/parameters/top' @@ -7518,12 +7772,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get configurationPolicies from deviceManagement + description: List of all Configuration policies operationId: deviceManagement_GetConfigurationPolicies parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7599,6 +7855,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7625,12 +7882,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7644,12 +7903,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get assignments from deviceManagement + description: Policy assignments operationId: deviceManagement.configurationPolicies_ListAssignments parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7723,6 +7984,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7748,12 +8010,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get assignments from deviceManagement + description: Policy assignments operationId: deviceManagement.configurationPolicies_GetAssignments parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7761,6 +8025,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment @@ -7811,6 +8076,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7818,6 +8084,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment @@ -7844,6 +8111,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7851,12 +8119,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7870,12 +8140,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settings from deviceManagement + description: Policy settings operationId: deviceManagement.configurationPolicies_ListSettings parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7945,6 +8217,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7970,12 +8243,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settings from deviceManagement + description: Policy settings operationId: deviceManagement.configurationPolicies_GetSettings parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -7983,6 +8258,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -8039,6 +8315,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -8046,6 +8323,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -8072,6 +8350,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -8079,12 +8358,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8098,12 +8379,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settingDefinitions from deviceManagement + description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.configurationPolicies.settings_ListSettingDefinitions parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -8111,6 +8394,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -8224,12 +8508,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settingDefinitions from deviceManagement + description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.configurationPolicies.settings_GetSettingDefinitions parameters: - name: deviceManagementConfigurationPolicy-id in: path description: 'key: id of deviceManagementConfigurationPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy @@ -8237,6 +8523,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSetting' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting @@ -8244,6 +8531,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -8304,6 +8592,7 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get configurationPolicyTemplates from deviceManagement + description: List of all templates operationId: deviceManagement_ListConfigurationPolicyTemplates parameters: - $ref: '#/components/parameters/top' @@ -8419,12 +8708,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get configurationPolicyTemplates from deviceManagement + description: List of all templates operationId: deviceManagement_GetConfigurationPolicyTemplates parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8490,6 +8781,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8516,12 +8808,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8535,12 +8829,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingTemplates from deviceManagement + description: Setting templates operationId: deviceManagement.configurationPolicyTemplates_ListSettingTemplates parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8610,6 +8906,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8635,12 +8932,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingTemplates from deviceManagement + description: Setting templates operationId: deviceManagement.configurationPolicyTemplates_GetSettingTemplates parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8648,6 +8947,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -8704,6 +9004,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8711,6 +9012,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -8737,6 +9039,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8744,12 +9047,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8763,12 +9068,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingDefinitions from deviceManagement + description: List of related Setting Definitions operationId: deviceManagement.configurationPolicyTemplates.settingTemplates_ListSettingDefinitions parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8776,6 +9083,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -8894,6 +9202,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8901,6 +9210,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -8926,12 +9236,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingDefinitions from deviceManagement + description: List of related Setting Definitions operationId: deviceManagement.configurationPolicyTemplates.settingTemplates_GetSettingDefinitions parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -8939,6 +9251,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -8946,6 +9259,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -9011,6 +9325,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -9018,6 +9333,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -9025,6 +9341,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -9051,6 +9368,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationPolicyTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate @@ -9058,6 +9376,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate @@ -9065,12 +9384,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9084,6 +9405,7 @@ paths: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get configurationSettings from deviceManagement + description: List of all ConfigurationSettings operationId: deviceManagement_ListConfigurationSettings parameters: - $ref: '#/components/parameters/top' @@ -9218,12 +9540,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get configurationSettings from deviceManagement + description: List of all ConfigurationSettings operationId: deviceManagement_GetConfigurationSettings parameters: - name: deviceManagementConfigurationSettingDefinition-id in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -9289,6 +9613,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -9315,12 +9640,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9334,6 +9661,7 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Get dataSharingConsents from deviceManagement + description: Data sharing consents. operationId: deviceManagement_ListDataSharingConsents parameters: - $ref: '#/components/parameters/top' @@ -9432,12 +9760,14 @@ paths: tags: - deviceManagement.dataSharingConsent summary: Get dataSharingConsents from deviceManagement + description: Data sharing consents. operationId: deviceManagement_GetDataSharingConsents parameters: - name: dataSharingConsent-id in: path description: 'key: id of dataSharingConsent' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSharingConsent @@ -9494,6 +9824,7 @@ paths: in: path description: 'key: id of dataSharingConsent' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSharingConsent @@ -9520,12 +9851,14 @@ paths: in: path description: 'key: id of dataSharingConsent' required: true + style: simple schema: type: string x-ms-docs-key-type: dataSharingConsent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9539,6 +9872,7 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get derivedCredentials from deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_ListDerivedCredentials parameters: - $ref: '#/components/parameters/top' @@ -9634,12 +9968,14 @@ paths: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get derivedCredentials from deviceManagement + description: Collection of Derived credential settings associated with account. operationId: deviceManagement_GetDerivedCredentials parameters: - name: deviceManagementDerivedCredentialSettings-id in: path description: 'key: id of deviceManagementDerivedCredentialSettings' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementDerivedCredentialSettings @@ -9692,6 +10028,7 @@ paths: in: path description: 'key: id of deviceManagementDerivedCredentialSettings' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementDerivedCredentialSettings @@ -9718,12 +10055,14 @@ paths: in: path description: 'key: id of deviceManagementDerivedCredentialSettings' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementDerivedCredentialSettings - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9737,6 +10076,7 @@ paths: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_ListDetectedApps parameters: - $ref: '#/components/parameters/top' @@ -9760,6 +10100,10 @@ paths: - deviceCount desc - displayName - displayName desc + - platform + - platform desc + - publisher + - publisher desc - sizeInByte - sizeInByte desc - version @@ -9778,6 +10122,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -9831,12 +10177,14 @@ paths: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement + description: The list of detected apps associated with a device. operationId: deviceManagement_GetDetectedApps parameters: - name: detectedApp-id in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -9853,6 +10201,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -9895,6 +10245,7 @@ paths: in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -9921,12 +10272,14 @@ paths: in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9940,12 +10293,14 @@ paths: tags: - deviceManagement.detectedApp summary: Get managedDevices from deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_ListManagedDevices parameters: - name: detectedApp-id in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -10268,12 +10623,14 @@ paths: tags: - deviceManagement.detectedApp summary: Get managedDevices from deviceManagement + description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps_GetManagedDevices parameters: - name: detectedApp-id in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -10281,6 +10638,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -10475,6 +10833,7 @@ paths: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_ListDeviceCategories parameters: - $ref: '#/components/parameters/top' @@ -10564,12 +10923,14 @@ paths: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement + description: The list of device categories with the tenant. operationId: deviceManagement_GetDeviceCategories parameters: - name: deviceCategory-id in: path description: 'key: id of deviceCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCategory @@ -10620,6 +10981,7 @@ paths: in: path description: 'key: id of deviceCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCategory @@ -10646,12 +11008,14 @@ paths: in: path description: 'key: id of deviceCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10665,6 +11029,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement + description: The device compliance policies. operationId: deviceManagement_ListDeviceCompliancePolicies parameters: - $ref: '#/components/parameters/top' @@ -10777,12 +11142,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement + description: The device compliance policies. operationId: deviceManagement_GetDeviceCompliancePolicies parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -10883,6 +11250,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -10909,12 +11277,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10928,12 +11298,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_ListAssignments parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11007,6 +11379,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11032,12 +11405,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement + description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies_GetAssignments parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11045,6 +11420,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyAssignment @@ -11095,6 +11471,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11102,6 +11479,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyAssignment @@ -11128,6 +11506,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11135,12 +11514,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11154,12 +11535,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_ListDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11251,6 +11634,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11276,12 +11660,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement + description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies_GetDeviceSettingStateSummaries parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11289,6 +11675,7 @@ paths: in: path description: 'key: id of settingStateDeviceSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: settingStateDeviceSummary @@ -11345,6 +11732,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11352,6 +11740,7 @@ paths: in: path description: 'key: id of settingStateDeviceSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: settingStateDeviceSummary @@ -11378,6 +11767,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11385,12 +11775,14 @@ paths: in: path description: 'key: id of settingStateDeviceSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: settingStateDeviceSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11404,12 +11796,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_ListDeviceStatuses parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11498,6 +11892,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11523,12 +11918,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement + description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies_GetDeviceStatuses parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11536,6 +11933,7 @@ paths: in: path description: 'key: id of deviceComplianceDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceDeviceStatus @@ -11591,6 +11989,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11598,6 +11997,7 @@ paths: in: path description: 'key: id of deviceComplianceDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceDeviceStatus @@ -11624,6 +12024,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11631,12 +12032,14 @@ paths: in: path description: 'key: id of deviceComplianceDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceDeviceStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11650,12 +12053,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatusOverview from deviceManagement + description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies_GetDeviceStatusOverview parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11712,6 +12117,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11738,12 +12144,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11757,12 +12165,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_ListScheduledActionsGraphFPreRule parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11832,6 +12242,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11857,12 +12268,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement + description: The list of scheduled action for this rule operationId: deviceManagement.deviceCompliancePolicies_GetScheduledActionsGraphFPreRule parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11870,6 +12283,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -11926,6 +12340,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11933,6 +12348,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -11959,6 +12375,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11966,12 +12383,14 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11985,12 +12404,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsGraphFPreRule_ListScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -11998,6 +12419,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -12074,6 +12496,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12081,6 +12504,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -12106,12 +12530,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement + description: The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsGraphFPreRule_GetScheduledActionConfigurations parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12119,6 +12545,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -12126,6 +12553,7 @@ paths: in: path description: 'key: id of deviceComplianceActionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceActionItem @@ -12177,6 +12605,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12184,6 +12613,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -12191,6 +12621,7 @@ paths: in: path description: 'key: id of deviceComplianceActionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceActionItem @@ -12217,6 +12648,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12224,6 +12656,7 @@ paths: in: path description: 'key: id of deviceComplianceScheduledActionForRule' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule @@ -12231,12 +12664,14 @@ paths: in: path description: 'key: id of deviceComplianceActionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceActionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12250,12 +12685,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_ListUserStatuses parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12335,6 +12772,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12360,12 +12798,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement + description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies_GetUserStatuses parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12373,6 +12813,7 @@ paths: in: path description: 'key: id of deviceComplianceUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceUserStatus @@ -12425,6 +12866,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12432,6 +12874,7 @@ paths: in: path description: 'key: id of deviceComplianceUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceUserStatus @@ -12458,6 +12901,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12465,12 +12909,14 @@ paths: in: path description: 'key: id of deviceComplianceUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceUserStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12484,12 +12930,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatusOverview from deviceManagement + description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies_GetUserStatusOverview parameters: - name: deviceCompliancePolicy-id in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12545,6 +12993,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy @@ -12571,12 +13020,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12590,6 +13041,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Get deviceCompliancePolicyDeviceStateSummary from deviceManagement + description: The device compliance state summary for this account. operationId: deviceManagement_GetDeviceCompliancePolicyDeviceStateSummary parameters: - name: $select @@ -12662,6 +13114,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12675,6 +13128,7 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_ListDeviceCompliancePolicySettingStateSummaries parameters: - $ref: '#/components/parameters/top' @@ -12787,12 +13241,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement + description: The summary states of compliance policy settings for this account. operationId: deviceManagement_GetDeviceCompliancePolicySettingStateSummaries parameters: - name: deviceCompliancePolicySettingStateSummary-id in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -12857,6 +13313,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -12883,12 +13340,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12902,12 +13361,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_ListDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -13008,6 +13469,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -13033,12 +13495,14 @@ paths: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement + description: Not yet documented operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries_GetDeviceComplianceSettingStates parameters: - name: deviceCompliancePolicySettingStateSummary-id in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -13046,6 +13510,7 @@ paths: in: path description: 'key: id of deviceComplianceSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceSettingState @@ -13105,6 +13570,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -13112,6 +13578,7 @@ paths: in: path description: 'key: id of deviceComplianceSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceSettingState @@ -13138,6 +13605,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicySettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary @@ -13145,12 +13613,14 @@ paths: in: path description: 'key: id of deviceComplianceSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceComplianceSettingState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13164,6 +13634,7 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get deviceConfigurationConflictSummary from deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_ListDeviceConfigurationConflictSummary parameters: - $ref: '#/components/parameters/top' @@ -13253,12 +13724,14 @@ paths: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get deviceConfigurationConflictSummary from deviceManagement + description: Summary of policies in conflict state for this account. operationId: deviceManagement_GetDeviceConfigurationConflictSummary parameters: - name: deviceConfigurationConflictSummary-id in: path description: 'key: id of deviceConfigurationConflictSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationConflictSummary @@ -13309,6 +13782,7 @@ paths: in: path description: 'key: id of deviceConfigurationConflictSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationConflictSummary @@ -13335,12 +13809,14 @@ paths: in: path description: 'key: id of deviceConfigurationConflictSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationConflictSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13354,6 +13830,7 @@ paths: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Get deviceConfigurationDeviceStateSummaries from deviceManagement + description: The device configuration device state summary for this account. operationId: deviceManagement_GetDeviceConfigurationDeviceStateSummaries parameters: - name: $select @@ -13424,6 +13901,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13437,6 +13915,7 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement + description: The device configurations. operationId: deviceManagement_ListDeviceConfigurations parameters: - $ref: '#/components/parameters/top' @@ -13561,12 +14040,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement + description: The device configurations. operationId: deviceManagement_GetDeviceConfigurations parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13675,6 +14156,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13701,12 +14183,14 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13720,12 +14204,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_ListAssignments parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13802,6 +14288,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13827,12 +14314,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_GetAssignments parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13840,6 +14329,7 @@ paths: in: path description: 'key: id of deviceConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationAssignment @@ -13891,6 +14381,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13898,6 +14389,7 @@ paths: in: path description: 'key: id of deviceConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationAssignment @@ -13924,6 +14416,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -13931,12 +14424,14 @@ paths: in: path description: 'key: id of deviceConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13950,12 +14445,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_ListDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14047,6 +14544,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14072,12 +14570,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement + description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations_GetDeviceSettingStateSummaries parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14085,6 +14585,7 @@ paths: in: path description: 'key: id of settingStateDeviceSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: settingStateDeviceSummary @@ -14141,6 +14642,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14148,6 +14650,7 @@ paths: in: path description: 'key: id of settingStateDeviceSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: settingStateDeviceSummary @@ -14174,6 +14677,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14181,12 +14685,14 @@ paths: in: path description: 'key: id of settingStateDeviceSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: settingStateDeviceSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14200,12 +14706,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_ListDeviceStatuses parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14294,6 +14802,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14319,12 +14828,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement + description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations_GetDeviceStatuses parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14332,6 +14843,7 @@ paths: in: path description: 'key: id of deviceConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationDeviceStatus @@ -14387,6 +14899,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14394,6 +14907,7 @@ paths: in: path description: 'key: id of deviceConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationDeviceStatus @@ -14420,6 +14934,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14427,12 +14942,14 @@ paths: in: path description: 'key: id of deviceConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationDeviceStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14446,12 +14963,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatusOverview from deviceManagement + description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations_GetDeviceStatusOverview parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14508,6 +15027,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14534,12 +15054,14 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14553,12 +15075,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_ListGroupAssignments parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14631,6 +15155,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14656,12 +15181,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations_GetGroupAssignments parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14669,6 +15196,7 @@ paths: in: path description: 'key: id of deviceConfigurationGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationGroupAssignment @@ -14726,6 +15254,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14733,6 +15262,7 @@ paths: in: path description: 'key: id of deviceConfigurationGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationGroupAssignment @@ -14759,6 +15289,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14766,12 +15297,14 @@ paths: in: path description: 'key: id of deviceConfigurationGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationGroupAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14785,12 +15318,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfiguration from deviceManagement + description: The navigation link to the Device Configuration being targeted. operationId: deviceManagement.deviceConfigurations.groupAssignments_GetDeviceConfiguration parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14798,6 +15333,7 @@ paths: in: path description: 'key: id of deviceConfigurationGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationGroupAssignment @@ -14900,12 +15436,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_ListUserStatuses parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -14985,6 +15523,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -15010,12 +15549,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement + description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations_GetUserStatuses parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -15023,6 +15564,7 @@ paths: in: path description: 'key: id of deviceConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationUserStatus @@ -15075,6 +15617,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -15082,6 +15625,7 @@ paths: in: path description: 'key: id of deviceConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationUserStatus @@ -15108,6 +15652,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -15115,12 +15660,14 @@ paths: in: path description: 'key: id of deviceConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationUserStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15134,12 +15681,14 @@ paths: tags: - deviceManagement.deviceConfiguration summary: Get userStatusOverview from deviceManagement + description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations_GetUserStatusOverview parameters: - name: deviceConfiguration-id in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -15195,6 +15744,7 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration @@ -15221,12 +15771,14 @@ paths: in: path description: 'key: id of deviceConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15240,6 +15792,7 @@ paths: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Get deviceConfigurationUserStateSummaries from deviceManagement + description: The device configuration user state summary for this account. operationId: deviceManagement_GetDeviceConfigurationUserStateSummaries parameters: - name: $select @@ -15310,6 +15863,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15323,6 +15877,7 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceHealthScripts from deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_ListDeviceHealthScripts parameters: - $ref: '#/components/parameters/top' @@ -15457,12 +16012,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceHealthScripts from deviceManagement + description: The list of device health scripts associated with the tenant. operationId: deviceManagement_GetDeviceHealthScripts parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15553,6 +16110,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15579,12 +16137,14 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15598,12 +16158,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_ListAssignments parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15677,6 +16239,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15702,12 +16265,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device health script operationId: deviceManagement.deviceHealthScripts_GetAssignments parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15715,6 +16280,7 @@ paths: in: path description: 'key: id of deviceHealthScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptAssignment @@ -15765,6 +16331,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15772,6 +16339,7 @@ paths: in: path description: 'key: id of deviceHealthScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptAssignment @@ -15798,6 +16366,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15805,12 +16374,14 @@ paths: in: path description: 'key: id of deviceHealthScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15824,12 +16395,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceRunStates from deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_ListDeviceRunStates parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15929,6 +16502,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15954,12 +16528,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get deviceRunStates from deviceManagement + description: List of run states for the device health script across all devices operationId: deviceManagement.deviceHealthScripts_GetDeviceRunStates parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -15967,6 +16543,7 @@ paths: in: path description: 'key: id of deviceHealthScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptDeviceState @@ -16033,6 +16610,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -16040,6 +16618,7 @@ paths: in: path description: 'key: id of deviceHealthScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptDeviceState @@ -16066,6 +16645,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -16073,12 +16653,14 @@ paths: in: path description: 'key: id of deviceHealthScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16092,12 +16674,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get managedDevice from deviceManagement + description: The managed device on which the device health script executed operationId: deviceManagement.deviceHealthScripts.deviceRunStates_GetManagedDevice parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -16105,6 +16689,7 @@ paths: in: path description: 'key: id of deviceHealthScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScriptDeviceState @@ -16299,12 +16884,14 @@ paths: tags: - deviceManagement.deviceHealthScript summary: Get runSummary from deviceManagement + description: High level run summary for device health script. operationId: deviceManagement.deviceHealthScripts_GetRunSummary parameters: - name: deviceHealthScript-id in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -16363,6 +16950,7 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript @@ -16389,12 +16977,14 @@ paths: in: path description: 'key: id of deviceHealthScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceHealthScript - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16408,6 +16998,7 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceManagementScripts from deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_ListDeviceManagementScripts parameters: - $ref: '#/components/parameters/top' @@ -16528,12 +17119,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceManagementScripts from deviceManagement + description: The list of device management scripts associated with the tenant. operationId: deviceManagement_GetDeviceManagementScripts parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16624,6 +17217,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16650,12 +17244,14 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16669,12 +17265,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_ListAssignments parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16742,6 +17340,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16767,12 +17366,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_GetAssignments parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16780,6 +17381,7 @@ paths: in: path description: 'key: id of deviceManagementScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment @@ -16828,6 +17430,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16835,6 +17438,7 @@ paths: in: path description: 'key: id of deviceManagementScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment @@ -16861,6 +17465,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16868,12 +17473,14 @@ paths: in: path description: 'key: id of deviceManagementScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16887,12 +17494,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_ListDeviceRunStates parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16974,6 +17583,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -16999,12 +17609,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceManagementScripts_GetDeviceRunStates parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17012,6 +17624,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -17072,6 +17685,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17079,6 +17693,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -17105,6 +17720,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17112,12 +17728,14 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17131,12 +17749,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.deviceRunStates_GetManagedDevice parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17144,6 +17764,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -17338,12 +17959,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_ListGroupAssignments parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17411,6 +18034,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17436,12 +18060,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceManagementScripts_GetGroupAssignments parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17449,6 +18075,7 @@ paths: in: path description: 'key: id of deviceManagementScriptGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment @@ -17497,6 +18124,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17504,6 +18132,7 @@ paths: in: path description: 'key: id of deviceManagementScriptGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment @@ -17530,6 +18159,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17537,12 +18167,14 @@ paths: in: path description: 'key: id of deviceManagementScriptGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17556,12 +18188,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get runSummary from deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceManagementScripts_GetRunSummary parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17608,12 +18242,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_ListUserRunStates parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17689,6 +18325,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17714,12 +18351,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceManagementScripts_GetUserRunStates parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17727,6 +18366,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -17785,6 +18425,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17792,6 +18433,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -17818,6 +18460,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17825,12 +18468,14 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17844,12 +18489,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_ListDeviceRunStates parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17857,6 +18504,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -17938,6 +18586,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17945,6 +18594,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -17970,12 +18620,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceManagementScripts.userRunStates_GetDeviceRunStates parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -17983,6 +18635,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -17990,6 +18643,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -18051,6 +18705,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -18058,6 +18713,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -18065,6 +18721,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -18091,6 +18748,7 @@ paths: in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -18098,6 +18756,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -18105,12 +18764,14 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18124,12 +18785,14 @@ paths: tags: - deviceManagement.deviceManagementScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceManagementScripts.userRunStates.deviceRunStates_GetManagedDevice parameters: - name: deviceManagementScript-id in: path description: 'key: id of deviceManagementScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScript @@ -18137,6 +18800,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -18144,6 +18808,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -18348,6 +19013,7 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceShellScripts from deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_ListDeviceShellScripts parameters: - $ref: '#/components/parameters/top' @@ -18471,12 +19137,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceShellScripts from deviceManagement + description: The list of device shell scripts associated with the tenant. operationId: deviceManagement_GetDeviceShellScripts parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18568,6 +19236,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18594,12 +19263,14 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18613,12 +19284,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_ListAssignments parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18686,6 +19359,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18711,12 +19385,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get assignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_GetAssignments parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18724,6 +19400,7 @@ paths: in: path description: 'key: id of deviceManagementScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment @@ -18772,6 +19449,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18779,6 +19457,7 @@ paths: in: path description: 'key: id of deviceManagementScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment @@ -18805,6 +19484,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18812,12 +19492,14 @@ paths: in: path description: 'key: id of deviceManagementScriptAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18831,12 +19513,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_ListDeviceRunStates parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18918,6 +19602,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18943,12 +19628,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices. operationId: deviceManagement.deviceShellScripts_GetDeviceRunStates parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -18956,6 +19643,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -19016,6 +19704,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19023,6 +19712,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -19049,6 +19739,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19056,12 +19747,14 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19075,12 +19768,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.deviceRunStates_GetManagedDevice parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19088,6 +19783,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -19282,12 +19978,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_ListGroupAssignments parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19355,6 +20053,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19380,12 +20079,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get groupAssignments from deviceManagement + description: The list of group assignments for the device management script. operationId: deviceManagement.deviceShellScripts_GetGroupAssignments parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19393,6 +20094,7 @@ paths: in: path description: 'key: id of deviceManagementScriptGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment @@ -19441,6 +20143,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19448,6 +20151,7 @@ paths: in: path description: 'key: id of deviceManagementScriptGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment @@ -19474,6 +20178,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19481,12 +20186,14 @@ paths: in: path description: 'key: id of deviceManagementScriptGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19500,12 +20207,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get runSummary from deviceManagement + description: Run summary for device management script. operationId: deviceManagement.deviceShellScripts_GetRunSummary parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19552,12 +20261,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_ListUserRunStates parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19633,6 +20344,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19658,12 +20370,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get userRunStates from deviceManagement + description: List of run states for this script across all users. operationId: deviceManagement.deviceShellScripts_GetUserRunStates parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19671,6 +20385,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -19729,6 +20444,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19736,6 +20452,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -19762,6 +20479,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19769,12 +20487,14 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19788,12 +20508,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_ListDeviceRunStates parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19801,6 +20523,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -19882,6 +20605,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19889,6 +20613,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -19914,12 +20639,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get deviceRunStates from deviceManagement + description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceShellScripts.userRunStates_GetDeviceRunStates parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -19927,6 +20654,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -19934,6 +20662,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -19995,6 +20724,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -20002,6 +20732,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -20009,6 +20740,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -20035,6 +20767,7 @@ paths: in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -20042,6 +20775,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -20049,12 +20783,14 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20068,12 +20804,14 @@ paths: tags: - deviceManagement.deviceShellScript summary: Get managedDevice from deviceManagement + description: The managed devices that executes the device management script. operationId: deviceManagement.deviceShellScripts.userRunStates.deviceRunStates_GetManagedDevice parameters: - name: deviceShellScript-id in: path description: 'key: id of deviceShellScript' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceShellScript @@ -20081,6 +20819,7 @@ paths: in: path description: 'key: id of deviceManagementScriptUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState @@ -20088,6 +20827,7 @@ paths: in: path description: 'key: id of deviceManagementScriptDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState @@ -20292,6 +21032,7 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get embeddedSIMActivationCodePools from deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_ListEmbeddedSIMActivationCodePools parameters: - $ref: '#/components/parameters/top' @@ -20391,12 +21132,14 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get embeddedSIMActivationCodePools from deviceManagement + description: The embedded SIM activation code pools created by this account. operationId: deviceManagement_GetEmbeddedSIMActivationCodePools parameters: - name: embeddedSIMActivationCodePool-id in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20464,6 +21207,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20490,12 +21234,14 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20509,12 +21255,14 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get assignments from deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_ListAssignments parameters: - name: embeddedSIMActivationCodePool-id in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20582,6 +21330,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20607,12 +21356,14 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get assignments from deviceManagement + description: Navigational property to a list of targets to which this pool is assigned. operationId: deviceManagement.embeddedSIMActivationCodePools_GetAssignments parameters: - name: embeddedSIMActivationCodePool-id in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20620,6 +21371,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePoolAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePoolAssignment @@ -20668,6 +21420,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20675,6 +21428,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePoolAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePoolAssignment @@ -20701,6 +21455,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20708,12 +21463,14 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePoolAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePoolAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20727,12 +21484,14 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get deviceStates from deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_ListDeviceStates parameters: - name: embeddedSIMActivationCodePool-id in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20821,6 +21580,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20846,12 +21606,14 @@ paths: tags: - deviceManagement.embeddedSIMActivationCodePool summary: Get deviceStates from deviceManagement + description: Navigational property to a list of device states for this pool. operationId: deviceManagement.embeddedSIMActivationCodePools_GetDeviceStates parameters: - name: embeddedSIMActivationCodePool-id in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20859,6 +21621,7 @@ paths: in: path description: 'key: id of embeddedSIMDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMDeviceState @@ -20914,6 +21677,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20921,6 +21685,7 @@ paths: in: path description: 'key: id of embeddedSIMDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMDeviceState @@ -20947,6 +21712,7 @@ paths: in: path description: 'key: id of embeddedSIMActivationCodePool' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMActivationCodePool @@ -20954,12 +21720,14 @@ paths: in: path description: 'key: id of embeddedSIMDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: embeddedSIMDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20973,6 +21741,7 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get groupPolicyConfigurations from deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_ListGroupPolicyConfigurations parameters: - $ref: '#/components/parameters/top' @@ -21075,12 +21844,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get groupPolicyConfigurations from deviceManagement + description: The group policy configurations created by this account. operationId: deviceManagement_GetGroupPolicyConfigurations parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21151,6 +21922,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21177,12 +21949,14 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21196,12 +21970,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_ListAssignments parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21272,6 +22048,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21297,12 +22074,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get assignments from deviceManagement + description: The list of group assignments for the configuration. operationId: deviceManagement.groupPolicyConfigurations_GetAssignments parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21310,6 +22089,7 @@ paths: in: path description: 'key: id of groupPolicyConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfigurationAssignment @@ -21359,6 +22139,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21366,6 +22147,7 @@ paths: in: path description: 'key: id of groupPolicyConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfigurationAssignment @@ -21392,6 +22174,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21399,12 +22182,14 @@ paths: in: path description: 'key: id of groupPolicyConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21418,12 +22203,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definitionValues from deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_ListDefinitionValues parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21504,6 +22291,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21529,12 +22317,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definitionValues from deviceManagement + description: The list of enabled or disabled group policy definition values for the configuration. operationId: deviceManagement.groupPolicyConfigurations_GetDefinitionValues parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21542,6 +22332,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21608,6 +22399,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21615,6 +22407,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21641,6 +22434,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21648,12 +22442,14 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21667,12 +22463,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definition from deviceManagement + description: The associated group policy definition with the value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_GetDefinition parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21680,6 +22478,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21770,12 +22569,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get presentationValues from deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_ListPresentationValues parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21783,6 +22584,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21857,6 +22659,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21864,6 +22667,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21889,12 +22693,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get presentationValues from deviceManagement + description: The associated group policy presentation values with the definition value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues_GetPresentationValues parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21902,6 +22708,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21909,6 +22716,7 @@ paths: in: path description: 'key: id of groupPolicyPresentationValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentationValue @@ -21975,6 +22783,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -21982,6 +22791,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -21989,6 +22799,7 @@ paths: in: path description: 'key: id of groupPolicyPresentationValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentationValue @@ -22015,6 +22826,7 @@ paths: in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -22022,6 +22834,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -22029,12 +22842,14 @@ paths: in: path description: 'key: id of groupPolicyPresentationValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentationValue - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22048,12 +22863,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get definitionValue from deviceManagement + description: The group policy definition value associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_GetDefinitionValue parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -22061,6 +22878,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -22068,6 +22886,7 @@ paths: in: path description: 'key: id of groupPolicyPresentationValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentationValue @@ -22131,12 +22950,14 @@ paths: tags: - deviceManagement.groupPolicyConfiguration summary: Get presentation from deviceManagement + description: The group policy presentation associated with the presentation value. operationId: deviceManagement.groupPolicyConfigurations.definitionValues.presentationValues_GetPresentation parameters: - name: groupPolicyConfiguration-id in: path description: 'key: id of groupPolicyConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyConfiguration @@ -22144,6 +22965,7 @@ paths: in: path description: 'key: id of groupPolicyDefinitionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyDefinitionValue @@ -22151,6 +22973,7 @@ paths: in: path description: 'key: id of groupPolicyPresentationValue' required: true + style: simple schema: type: string x-ms-docs-key-type: groupPolicyPresentationValue @@ -22204,6 +23027,7 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get intents from deviceManagement + description: The device management intents operationId: deviceManagement_ListIntents parameters: - $ref: '#/components/parameters/top' @@ -22318,12 +23142,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get intents from deviceManagement + description: The device management intents operationId: deviceManagement_GetIntents parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22436,6 +23262,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22462,12 +23289,14 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22481,12 +23310,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get assignments from deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_ListAssignments parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22554,6 +23385,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22579,12 +23411,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get assignments from deviceManagement + description: Collection of assignments operationId: deviceManagement.intents_GetAssignments parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22592,6 +23426,7 @@ paths: in: path description: 'key: id of deviceManagementIntentAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentAssignment @@ -22640,6 +23475,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22647,6 +23483,7 @@ paths: in: path description: 'key: id of deviceManagementIntentAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentAssignment @@ -22673,6 +23510,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22680,12 +23518,14 @@ paths: in: path description: 'key: id of deviceManagementIntentAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22699,12 +23539,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get categories from deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_ListCategories parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22779,6 +23621,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22804,12 +23647,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get categories from deviceManagement + description: Collection of setting categories within the intent operationId: deviceManagement.intents_GetCategories parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22817,6 +23662,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -22881,6 +23727,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22888,6 +23735,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -22914,6 +23762,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22921,12 +23770,14 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22940,12 +23791,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_ListSettings parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -22953,6 +23806,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -23023,6 +23877,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23030,6 +23885,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -23055,12 +23911,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: The settings this category contains operationId: deviceManagement.intents.categories_GetSettings parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23068,6 +23926,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -23075,6 +23934,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -23124,6 +23984,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23131,6 +23992,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -23138,6 +24000,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -23164,6 +24027,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23171,6 +24035,7 @@ paths: in: path description: 'key: id of deviceManagementIntentSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentSettingCategory @@ -23178,12 +24043,14 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23197,12 +24064,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceSettingStateSummaries from deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_ListDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23288,6 +24157,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23313,12 +24183,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceSettingStateSummaries from deviceManagement + description: Collection of settings and their states and counts of devices that belong to corresponding state for all settings within the intent operationId: deviceManagement.intents_GetDeviceSettingStateSummaries parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23326,6 +24198,7 @@ paths: in: path description: 'key: id of deviceManagementIntentDeviceSettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentDeviceSettingStateSummary @@ -23380,6 +24253,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23387,6 +24261,7 @@ paths: in: path description: 'key: id of deviceManagementIntentDeviceSettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentDeviceSettingStateSummary @@ -23413,6 +24288,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23420,12 +24296,14 @@ paths: in: path description: 'key: id of deviceManagementIntentDeviceSettingStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentDeviceSettingStateSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23439,12 +24317,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceStates from deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_ListDeviceStates parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23527,6 +24407,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23552,12 +24433,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceStates from deviceManagement + description: Collection of states of all devices that the intent is applied to operationId: deviceManagement.intents_GetDeviceStates parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23565,6 +24448,7 @@ paths: in: path description: 'key: id of deviceManagementIntentDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentDeviceState @@ -23618,6 +24502,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23625,6 +24510,7 @@ paths: in: path description: 'key: id of deviceManagementIntentDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentDeviceState @@ -23651,6 +24537,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23658,12 +24545,14 @@ paths: in: path description: 'key: id of deviceManagementIntentDeviceState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentDeviceState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23677,12 +24566,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get deviceStateSummary from deviceManagement + description: A summary of device states and counts of devices that belong to corresponding state for all devices that the intent is applied to operationId: deviceManagement.intents_GetDeviceStateSummary parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23736,6 +24627,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23762,12 +24654,14 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23781,12 +24675,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_ListSettings parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23857,6 +24753,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23882,12 +24779,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get settings from deviceManagement + description: Collection of all settings to be applied operationId: deviceManagement.intents_GetSettings parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23895,6 +24794,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -23944,6 +24844,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23951,6 +24852,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -23977,6 +24879,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -23984,12 +24887,14 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24003,12 +24908,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get userStates from deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_ListUserStates parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24088,6 +24995,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24113,12 +25021,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get userStates from deviceManagement + description: Collection of states of all users that the intent is applied to operationId: deviceManagement.intents_GetUserStates parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24126,6 +25036,7 @@ paths: in: path description: 'key: id of deviceManagementIntentUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentUserState @@ -24178,6 +25089,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24185,6 +25097,7 @@ paths: in: path description: 'key: id of deviceManagementIntentUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentUserState @@ -24211,6 +25124,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24218,12 +25132,14 @@ paths: in: path description: 'key: id of deviceManagementIntentUserState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntentUserState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24237,12 +25153,14 @@ paths: tags: - deviceManagement.deviceManagementIntent summary: Get userStateSummary from deviceManagement + description: A summary of user states and counts of users that belong to corresponding state for all users that the intent is applied to operationId: deviceManagement.intents_GetUserStateSummary parameters: - name: deviceManagementIntent-id in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24295,6 +25213,7 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent @@ -24321,12 +25240,14 @@ paths: in: path description: 'key: id of deviceManagementIntent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementIntent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24340,6 +25261,7 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get macOSSoftwareUpdateAccountSummaries from deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_ListMacOSSoftwareUpdateAccountSummaries parameters: - $ref: '#/components/parameters/top' @@ -24452,12 +25374,14 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get macOSSoftwareUpdateAccountSummaries from deviceManagement + description: The MacOS software update account summaries for this account. operationId: deviceManagement_GetMacOSSoftwareUpdateAccountSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24522,6 +25446,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24548,12 +25473,14 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24567,12 +25494,14 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get categorySummaries from deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_ListCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24663,6 +25592,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24688,12 +25618,14 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get categorySummaries from deviceManagement + description: Summary of the updates by category. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries_GetCategorySummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24701,6 +25633,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -24764,6 +25697,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24771,6 +25705,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -24797,6 +25732,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24804,12 +25740,14 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24823,12 +25761,14 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get updateStateSummaries from deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_ListUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24836,6 +25776,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -24918,6 +25859,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24925,6 +25867,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -24950,12 +25893,14 @@ paths: tags: - deviceManagement.macOSSoftwareUpdateAccountSummary summary: Get updateStateSummaries from deviceManagement + description: Summary of the update states. operationId: deviceManagement.macOSSoftwareUpdateAccountSummaries.categorySummaries_GetUpdateStateSummaries parameters: - name: macOSSoftwareUpdateAccountSummary-id in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -24963,6 +25908,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -24970,6 +25916,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateStateSummary @@ -25023,6 +25970,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -25030,6 +25978,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -25037,6 +25986,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateStateSummary @@ -25063,6 +26013,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateAccountSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateAccountSummary @@ -25070,6 +26021,7 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateCategorySummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateCategorySummary @@ -25077,12 +26029,14 @@ paths: in: path description: 'key: id of macOSSoftwareUpdateStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: macOSSoftwareUpdateStateSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25096,6 +26050,7 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Get managedDeviceEncryptionStates from deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_ListManagedDeviceEncryptionStates parameters: - $ref: '#/components/parameters/top' @@ -25209,12 +26164,14 @@ paths: tags: - deviceManagement.managedDeviceEncryptionState summary: Get managedDeviceEncryptionStates from deviceManagement + description: Encryption report for devices in this account operationId: deviceManagement_GetManagedDeviceEncryptionStates parameters: - name: managedDeviceEncryptionState-id in: path description: 'key: id of managedDeviceEncryptionState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceEncryptionState @@ -25273,6 +26230,7 @@ paths: in: path description: 'key: id of managedDeviceEncryptionState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceEncryptionState @@ -25299,12 +26257,14 @@ paths: in: path description: 'key: id of managedDeviceEncryptionState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceEncryptionState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25318,6 +26278,7 @@ paths: tags: - deviceManagement.managedDeviceOverview summary: Get managedDeviceOverview from deviceManagement + description: Device overview operationId: deviceManagement_GetManagedDeviceOverview parameters: - name: $select @@ -25366,6 +26327,7 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDevices from deviceManagement + description: The list of managed devices. operationId: deviceManagement_ListManagedDevices parameters: - $ref: '#/components/parameters/top' @@ -25709,12 +26671,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDevices from deviceManagement + description: The list of managed devices. operationId: deviceManagement_GetManagedDevices parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -25899,6 +26863,8 @@ paths: operationId: deviceManagement.managedDevices.managedDevice.cleanWindowsDevice createDeviceLogCollectionRequest: operationId: deviceManagement.managedDevices.managedDevice.createDeviceLogCollectionRequest + createRemoteHelpSession: + operationId: deviceManagement.managedDevices.managedDevice.createRemoteHelpSession deleteUserFromSharedAppleDevice: operationId: deviceManagement.managedDevices.managedDevice.deleteUserFromSharedAppleDevice deprovision: @@ -25941,6 +26907,8 @@ paths: operationId: deviceManagement.managedDevices.managedDevice.reprovisionCloudPc requestRemoteAssistance: operationId: deviceManagement.managedDevices.managedDevice.requestRemoteAssistance + requestRemoteHelpSessionAccess: + operationId: deviceManagement.managedDevices.managedDevice.requestRemoteHelpSessionAccess resetPasscode: operationId: deviceManagement.managedDevices.managedDevice.resetPasscode resizeCloudPc: @@ -25949,6 +26917,8 @@ paths: operationId: deviceManagement.managedDevices.managedDevice.restoreCloudPc retire: operationId: deviceManagement.managedDevices.managedDevice.retire + retrieveRemoteHelpSession: + operationId: deviceManagement.managedDevices.managedDevice.retrieveRemoteHelpSession revokeAppleVppLicenses: operationId: deviceManagement.managedDevices.managedDevice.revokeAppleVppLicenses rotateBitLockerKeys: @@ -25988,6 +26958,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26014,12 +26985,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26033,12 +27006,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_ListAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26106,6 +27081,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26131,12 +27107,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_GetAssignmentFilterEvaluationStatusDetails parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26144,6 +27122,7 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails @@ -26192,6 +27171,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26199,6 +27179,7 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails @@ -26225,6 +27206,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26232,12 +27214,14 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26251,12 +27235,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.managedDevices_ListDetectedApps parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26281,6 +27267,10 @@ paths: - deviceCount desc - displayName - displayName desc + - platform + - platform desc + - publisher + - publisher desc - sizeInByte - sizeInByte desc - version @@ -26299,6 +27289,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -26330,12 +27322,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement + description: All applications currently installed on the device operationId: deviceManagement.managedDevices_GetDetectedApps parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26343,6 +27337,7 @@ paths: in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -26359,6 +27354,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -26397,12 +27394,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCategory from deviceManagement + description: Device category operationId: deviceManagement.managedDevices_GetDeviceCategory parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26453,6 +27452,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26479,12 +27479,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26498,12 +27500,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_ListDeviceCompliancePolicyStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26592,6 +27596,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26617,12 +27622,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement + description: Device compliance policy states for this device. operationId: deviceManagement.managedDevices_GetDeviceCompliancePolicyStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26630,6 +27637,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState @@ -26685,6 +27693,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26692,6 +27701,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState @@ -26718,6 +27728,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26725,12 +27736,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26744,12 +27757,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_ListDeviceConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26838,6 +27853,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26863,12 +27879,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement + description: Device configuration states for this device. operationId: deviceManagement.managedDevices_GetDeviceConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26876,6 +27894,7 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState @@ -26931,6 +27950,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26938,6 +27958,7 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState @@ -26964,6 +27985,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -26971,12 +27993,14 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26990,12 +28014,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_ListLogCollectionRequests parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27084,6 +28110,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27109,12 +28136,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement + description: List of log collection requests operationId: deviceManagement.managedDevices_GetLogCollectionRequests parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27122,6 +28151,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -27180,6 +28210,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27187,6 +28218,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -27213,6 +28245,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27220,12 +28253,14 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27239,12 +28274,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_ListManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27333,6 +28370,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27358,12 +28396,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement + description: Managed device mobile app configuration states for this device. operationId: deviceManagement.managedDevices_GetManagedDeviceMobileAppConfigurationStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27371,6 +28411,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState @@ -27426,6 +28467,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27433,6 +28475,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState @@ -27459,6 +28502,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27466,12 +28510,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27485,12 +28531,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_ListSecurityBaselineStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27569,6 +28617,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27594,12 +28643,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement + description: Security baseline states for this device. operationId: deviceManagement.managedDevices_GetSecurityBaselineStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27607,6 +28658,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27666,6 +28718,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27673,6 +28726,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27699,6 +28753,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27706,12 +28761,14 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27725,12 +28782,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_ListSettingStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27738,6 +28797,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27826,6 +28886,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27833,6 +28894,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27858,12 +28920,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement + description: The security baseline state for different settings for a device operationId: deviceManagement.managedDevices.securityBaselineStates_GetSettingStates parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27871,6 +28935,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27878,6 +28943,7 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState @@ -27933,6 +28999,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27940,6 +29007,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27947,6 +29015,7 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState @@ -27973,6 +29042,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -27980,6 +29050,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -27987,12 +29058,14 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28006,12 +29079,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement + description: The primary users associated with the managed device. operationId: deviceManagement.managedDevices_ListUsers parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28072,6 +29147,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -28224,6 +29301,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -28441,12 +29519,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get windowsProtectionState from deviceManagement + description: The device protection status. This property is read-only. operationId: deviceManagement.managedDevices_GetWindowsProtectionState parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28521,6 +29601,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28547,12 +29628,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28566,12 +29649,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_ListDetectedMalwareState parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28666,6 +29751,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28691,12 +29777,14 @@ paths: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement + description: Device malware list operationId: deviceManagement.managedDevices.windowsProtectionState_GetDetectedMalwareState parameters: - name: managedDevice-id in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28704,6 +29792,7 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState @@ -28761,6 +29850,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28768,6 +29858,7 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState @@ -28794,6 +29885,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -28801,12 +29893,14 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28820,6 +29914,7 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Get microsoftTunnelConfigurations from deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelConfigurations parameters: - $ref: '#/components/parameters/top' @@ -28939,12 +30034,14 @@ paths: tags: - deviceManagement.microsoftTunnelConfiguration summary: Get microsoftTunnelConfigurations from deviceManagement + description: Collection of MicrosoftTunnelConfiguration settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelConfigurations parameters: - name: microsoftTunnelConfiguration-id in: path description: 'key: id of microsoftTunnelConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelConfiguration @@ -29005,6 +30102,7 @@ paths: in: path description: 'key: id of microsoftTunnelConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelConfiguration @@ -29031,12 +30129,14 @@ paths: in: path description: 'key: id of microsoftTunnelConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29050,6 +30150,7 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Get microsoftTunnelHealthThresholds from deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelHealthThresholds parameters: - $ref: '#/components/parameters/top' @@ -29142,12 +30243,14 @@ paths: tags: - deviceManagement.microsoftTunnelHealthThreshold summary: Get microsoftTunnelHealthThresholds from deviceManagement + description: Collection of MicrosoftTunnelHealthThreshold settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelHealthThresholds parameters: - name: microsoftTunnelHealthThreshold-id in: path description: 'key: id of microsoftTunnelHealthThreshold' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelHealthThreshold @@ -29199,6 +30302,7 @@ paths: in: path description: 'key: id of microsoftTunnelHealthThreshold' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelHealthThreshold @@ -29225,12 +30329,14 @@ paths: in: path description: 'key: id of microsoftTunnelHealthThreshold' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelHealthThreshold - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29244,6 +30350,7 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Get microsoftTunnelServerLogCollectionResponses from deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelServerLogCollectionResponses parameters: - $ref: '#/components/parameters/top' @@ -29345,12 +30452,14 @@ paths: tags: - deviceManagement.microsoftTunnelServerLogCollectionResponse summary: Get microsoftTunnelServerLogCollectionResponses from deviceManagement + description: Collection of MicrosoftTunnelServerLogCollectionResponse settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelServerLogCollectionResponses parameters: - name: microsoftTunnelServerLogCollectionResponse-id in: path description: 'key: id of microsoftTunnelServerLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServerLogCollectionResponse @@ -29408,6 +30517,7 @@ paths: in: path description: 'key: id of microsoftTunnelServerLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServerLogCollectionResponse @@ -29434,12 +30544,14 @@ paths: in: path description: 'key: id of microsoftTunnelServerLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServerLogCollectionResponse - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29453,6 +30565,7 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelSites from deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_ListMicrosoftTunnelSites parameters: - $ref: '#/components/parameters/top' @@ -29570,12 +30683,14 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelSites from deviceManagement + description: Collection of MicrosoftTunnelSite settings associated with account. operationId: deviceManagement_GetMicrosoftTunnelSites parameters: - name: microsoftTunnelSite-id in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29649,6 +30764,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29675,12 +30791,14 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29694,12 +30812,14 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelConfiguration from deviceManagement + description: The MicrosoftTunnelConfiguration that has been applied to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_GetMicrosoftTunnelConfiguration parameters: - name: microsoftTunnelSite-id in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29760,6 +30880,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29786,12 +30907,14 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29805,12 +30928,14 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelServers from deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_ListMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29890,6 +31015,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29915,12 +31041,14 @@ paths: tags: - deviceManagement.microsoftTunnelSite summary: Get microsoftTunnelServers from deviceManagement + description: A list of MicrosoftTunnelServers that are registered to this MicrosoftTunnelSite operationId: deviceManagement.microsoftTunnelSites_GetMicrosoftTunnelServers parameters: - name: microsoftTunnelSite-id in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29928,6 +31056,7 @@ paths: in: path description: 'key: id of microsoftTunnelServer' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServer @@ -29987,6 +31116,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -29994,6 +31124,7 @@ paths: in: path description: 'key: id of microsoftTunnelServer' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServer @@ -30020,6 +31151,7 @@ paths: in: path description: 'key: id of microsoftTunnelSite' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelSite @@ -30027,12 +31159,14 @@ paths: in: path description: 'key: id of microsoftTunnelServer' required: true + style: simple schema: type: string x-ms-docs-key-type: microsoftTunnelServer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30046,6 +31180,7 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_ListMobileAppTroubleshootingEvents parameters: - $ref: '#/components/parameters/top' @@ -30155,12 +31290,14 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from deviceManagement + description: The collection property of MobileAppTroubleshootingEvent. operationId: deviceManagement_GetMobileAppTroubleshootingEvents parameters: - name: mobileAppTroubleshootingEvent-id in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30224,6 +31361,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30250,12 +31388,14 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30269,12 +31409,14 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_ListAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30351,6 +31493,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30376,12 +31519,14 @@ paths: tags: - deviceManagement.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from deviceManagement + description: The collection property of AppLogUploadRequest. operationId: deviceManagement.mobileAppTroubleshootingEvents_GetAppLogCollectionRequests parameters: - name: mobileAppTroubleshootingEvent-id in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30389,6 +31534,7 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest @@ -30443,6 +31589,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30450,6 +31597,7 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest @@ -30476,6 +31624,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -30483,12 +31632,14 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30502,6 +31653,7 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get notificationMessageTemplates from deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_ListNotificationMessageTemplates parameters: - $ref: '#/components/parameters/top' @@ -30599,12 +31751,14 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get notificationMessageTemplates from deviceManagement + description: The Notification Message Templates. operationId: deviceManagement_GetNotificationMessageTemplates parameters: - name: notificationMessageTemplate-id in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30666,6 +31820,7 @@ paths: in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30692,12 +31847,14 @@ paths: in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30711,12 +31868,14 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get localizedNotificationMessages from deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_ListLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30796,6 +31955,7 @@ paths: in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30821,12 +31981,14 @@ paths: tags: - deviceManagement.notificationMessageTemplate summary: Get localizedNotificationMessages from deviceManagement + description: The list of localized messages for this Notification Message Template. operationId: deviceManagement.notificationMessageTemplates_GetLocalizedNotificationMessages parameters: - name: notificationMessageTemplate-id in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30834,6 +31996,7 @@ paths: in: path description: 'key: id of localizedNotificationMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: localizedNotificationMessage @@ -30886,6 +32049,7 @@ paths: in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30893,6 +32057,7 @@ paths: in: path description: 'key: id of localizedNotificationMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: localizedNotificationMessage @@ -30919,6 +32084,7 @@ paths: in: path description: 'key: id of notificationMessageTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: notificationMessageTemplate @@ -30926,12 +32092,14 @@ paths: in: path description: 'key: id of localizedNotificationMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: localizedNotificationMessage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30945,6 +32113,7 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Get remoteActionAudits from deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_ListRemoteActionAudits parameters: - $ref: '#/components/parameters/top' @@ -31052,12 +32221,14 @@ paths: tags: - deviceManagement.remoteActionAudit summary: Get remoteActionAudits from deviceManagement + description: The list of device remote action audits with the tenant. operationId: deviceManagement_GetRemoteActionAudits parameters: - name: remoteActionAudit-id in: path description: 'key: id of remoteActionAudit' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteActionAudit @@ -31114,6 +32285,7 @@ paths: in: path description: 'key: id of remoteActionAudit' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteActionAudit @@ -31140,12 +32312,14 @@ paths: in: path description: 'key: id of remoteActionAudit' required: true + style: simple schema: type: string x-ms-docs-key-type: remoteActionAudit - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31159,6 +32333,7 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get resourceAccessProfiles from deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_ListResourceAccessProfiles parameters: - $ref: '#/components/parameters/top' @@ -31259,12 +32434,14 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get resourceAccessProfiles from deviceManagement + description: Collection of resource access settings associated with account. operationId: deviceManagement_GetResourceAccessProfiles parameters: - name: deviceManagementResourceAccessProfileBase-id in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31327,6 +32504,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31353,12 +32531,14 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31372,12 +32552,14 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_ListAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31451,6 +32633,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31476,12 +32659,14 @@ paths: tags: - deviceManagement.deviceManagementResourceAccessProfileBase summary: Get assignments from deviceManagement + description: The list of assignments for the device configuration profile. operationId: deviceManagement.resourceAccessProfiles_GetAssignments parameters: - name: deviceManagementResourceAccessProfileBase-id in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31489,6 +32674,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileAssignment @@ -31539,6 +32725,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31546,6 +32733,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileAssignment @@ -31572,6 +32760,7 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileBase' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileBase @@ -31579,12 +32768,14 @@ paths: in: path description: 'key: id of deviceManagementResourceAccessProfileAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementResourceAccessProfileAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31598,6 +32789,7 @@ paths: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get reusableSettings from deviceManagement + description: List of all reusable settings operationId: deviceManagement_ListReusableSettings parameters: - $ref: '#/components/parameters/top' @@ -31732,12 +32924,14 @@ paths: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get reusableSettings from deviceManagement + description: List of all reusable settings operationId: deviceManagement_GetReusableSettings parameters: - name: deviceManagementConfigurationSettingDefinition-id in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -31803,6 +32997,7 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition @@ -31829,12 +33024,14 @@ paths: in: path description: 'key: id of deviceManagementConfigurationSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31848,6 +33045,7 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Get settingDefinitions from deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_ListSettingDefinitions parameters: - $ref: '#/components/parameters/top' @@ -31961,12 +33159,14 @@ paths: tags: - deviceManagement.deviceManagementSettingDefinition summary: Get settingDefinitions from deviceManagement + description: The device management intent setting definitions operationId: deviceManagement_GetSettingDefinitions parameters: - name: deviceManagementSettingDefinition-id in: path description: 'key: id of deviceManagementSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition @@ -32025,6 +33225,7 @@ paths: in: path description: 'key: id of deviceManagementSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition @@ -32051,12 +33252,14 @@ paths: in: path description: 'key: id of deviceManagementSettingDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32070,6 +33273,7 @@ paths: tags: - deviceManagement.softwareUpdateStatusSummary summary: Get softwareUpdateStatusSummary from deviceManagement + description: The software update status summary. operationId: deviceManagement_GetSoftwareUpdateStatusSummary parameters: - name: $select @@ -32126,6 +33330,7 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get templates from deviceManagement + description: The available templates operationId: deviceManagement_ListTemplates parameters: - $ref: '#/components/parameters/top' @@ -32239,12 +33444,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get templates from deviceManagement + description: The available templates operationId: deviceManagement_GetTemplates parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32324,6 +33531,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32350,12 +33558,14 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32369,12 +33579,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get categories from deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_ListCategories parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32449,6 +33661,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32474,12 +33687,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get categories from deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates_GetCategories parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32487,6 +33702,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32551,6 +33767,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32558,6 +33775,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32584,6 +33802,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32591,12 +33810,14 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32610,12 +33831,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get recommendedSettings from deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_ListRecommendedSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32623,6 +33846,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32693,6 +33917,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32700,6 +33925,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32725,12 +33951,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get recommendedSettings from deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.categories_GetRecommendedSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32738,6 +33966,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32745,6 +33974,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -32794,6 +34024,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32801,6 +34032,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32808,6 +34040,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -32834,6 +34067,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32841,6 +34075,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -32848,12 +34083,14 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32867,12 +34104,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get migratableTo from deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_ListMigratableTo parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32970,6 +34209,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -32995,12 +34235,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get migratableTo from deviceManagement + description: Collection of templates this template can migrate to operationId: deviceManagement.templates_GetMigratableTo parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33008,6 +34250,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33090,6 +34333,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33097,6 +34341,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33123,6 +34368,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33130,12 +34376,14 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33149,12 +34397,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get categories from deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates.migratableTo_ListCategories parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33162,6 +34412,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33236,6 +34487,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33243,6 +34495,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33268,12 +34521,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get categories from deviceManagement + description: Collection of setting categories within the template operationId: deviceManagement.templates.migratableTo_GetCategories parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33281,6 +34536,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33288,6 +34544,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33354,6 +34611,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33361,6 +34619,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33368,6 +34627,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33394,6 +34654,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33401,6 +34662,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33408,12 +34670,14 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33427,12 +34691,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get recommendedSettings from deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.migratableTo.categories_ListRecommendedSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33440,6 +34706,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33447,6 +34714,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33517,6 +34785,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33524,6 +34793,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33531,6 +34801,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33556,12 +34827,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get recommendedSettings from deviceManagement + description: The settings this category contains operationId: deviceManagement.templates.migratableTo.categories_GetRecommendedSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33569,6 +34842,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33576,6 +34850,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33583,6 +34858,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -33632,6 +34908,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33639,6 +34916,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33646,6 +34924,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33653,6 +34932,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -33679,6 +34959,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33686,6 +34967,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33693,6 +34975,7 @@ paths: in: path description: 'key: id of deviceManagementTemplateSettingCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplateSettingCategory @@ -33700,12 +34983,14 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33719,12 +35004,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get settings from deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates.migratableTo_ListSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33732,6 +35019,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33802,6 +35090,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33809,6 +35098,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33834,12 +35124,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get settings from deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates.migratableTo_GetSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33847,6 +35139,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33854,6 +35147,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -33903,6 +35197,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33910,6 +35205,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33917,6 +35213,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -33943,6 +35240,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33950,6 +35248,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -33957,12 +35256,14 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33976,12 +35277,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get settings from deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_ListSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -34052,6 +35355,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -34077,12 +35381,14 @@ paths: tags: - deviceManagement.deviceManagementTemplate summary: Get settings from deviceManagement + description: Collection of all settings this template has operationId: deviceManagement.templates_GetSettings parameters: - name: deviceManagementTemplate-id in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -34090,6 +35396,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -34139,6 +35446,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -34146,6 +35454,7 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance @@ -34172,6 +35481,7 @@ paths: in: path description: 'key: id of deviceManagementTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTemplate @@ -34179,12 +35489,14 @@ paths: in: path description: 'key: id of deviceManagementSettingInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementSettingInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34198,6 +35510,7 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Get troubleshootingEvents from deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_ListTroubleshootingEvents parameters: - $ref: '#/components/parameters/top' @@ -34293,12 +35606,14 @@ paths: tags: - deviceManagement.deviceManagementTroubleshootingEvent summary: Get troubleshootingEvents from deviceManagement + description: The list of troubleshooting events for the tenant. operationId: deviceManagement_GetTroubleshootingEvents parameters: - name: deviceManagementTroubleshootingEvent-id in: path description: 'key: id of deviceManagementTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTroubleshootingEvent @@ -34351,6 +35666,7 @@ paths: in: path description: 'key: id of deviceManagementTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTroubleshootingEvent @@ -34377,12 +35693,14 @@ paths: in: path description: 'key: id of deviceManagementTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTroubleshootingEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34396,6 +35714,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Get userExperienceAnalyticsAppHealthApplicationPerformance from deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformance parameters: - $ref: '#/components/parameters/top' @@ -34506,12 +35825,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthApplicationPerformance summary: Get userExperienceAnalyticsAppHealthApplicationPerformance from deviceManagement + description: User experience analytics appHealth Application Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformance parameters: - name: userExperienceAnalyticsAppHealthApplicationPerformance-id in: path description: 'key: id of userExperienceAnalyticsAppHealthApplicationPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthApplicationPerformance @@ -34569,6 +35890,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthApplicationPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthApplicationPerformance @@ -34595,12 +35917,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthApplicationPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthApplicationPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34614,6 +35938,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion from deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreAppVersion parameters: - $ref: '#/components/parameters/top' @@ -34715,12 +36040,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion from deviceManagement + description: User experience analytics appHealth Application Performance by App Version operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreAppVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion @@ -34775,6 +36102,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion @@ -34801,12 +36129,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34820,6 +36150,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails from deviceManagement + description: User experience analytics appHealth Application Performance by App Version details operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreAppVersionDetails parameters: - $ref: '#/components/parameters/top' @@ -34924,12 +36255,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails from deviceManagement + description: User experience analytics appHealth Application Performance by App Version details operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreAppVersionDetails parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails @@ -34985,6 +36318,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails @@ -35011,12 +36345,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35030,6 +36366,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId from deviceManagement + description: User experience analytics appHealth Application Performance by App Version Device Id operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreAppVersionDeviceId parameters: - $ref: '#/components/parameters/top' @@ -35134,12 +36471,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId from deviceManagement + description: User experience analytics appHealth Application Performance by App Version Device Id operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreAppVersionDeviceId parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId @@ -35195,6 +36534,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId @@ -35221,12 +36561,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35240,6 +36582,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion from deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreOSVersion parameters: - $ref: '#/components/parameters/top' @@ -35347,12 +36690,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthAppPerformanceByOSVersion summary: Get userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion from deviceManagement + description: User experience analytics appHealth Application Performance by OS Version operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthApplicationPerformanceGraphBPreOSVersion parameters: - name: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByOSVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion @@ -35409,6 +36754,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByOSVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion @@ -35435,12 +36781,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthAppPerformanceByOSVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthAppPerformanceByOSVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35454,6 +36802,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Get userExperienceAnalyticsAppHealthDeviceModelPerformance from deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthDeviceModelPerformance parameters: - $ref: '#/components/parameters/top' @@ -35555,12 +36904,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDeviceModelPerformance summary: Get userExperienceAnalyticsAppHealthDeviceModelPerformance from deviceManagement + description: User experience analytics appHealth Model Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthDeviceModelPerformance parameters: - name: userExperienceAnalyticsAppHealthDeviceModelPerformance-id in: path description: 'key: id of userExperienceAnalyticsAppHealthDeviceModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDeviceModelPerformance @@ -35615,6 +36966,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthDeviceModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDeviceModelPerformance @@ -35641,12 +36993,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthDeviceModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDeviceModelPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35660,6 +37014,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Get userExperienceAnalyticsAppHealthDevicePerformance from deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthDevicePerformance parameters: - $ref: '#/components/parameters/top' @@ -35776,12 +37131,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformance summary: Get userExperienceAnalyticsAppHealthDevicePerformance from deviceManagement + description: User experience analytics appHealth Device Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthDevicePerformance parameters: - name: userExperienceAnalyticsAppHealthDevicePerformance-id in: path description: 'key: id of userExperienceAnalyticsAppHealthDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDevicePerformance @@ -35841,6 +37198,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDevicePerformance @@ -35867,12 +37225,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDevicePerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35886,6 +37246,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Get userExperienceAnalyticsAppHealthDevicePerformanceDetails from deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthDevicePerformanceDetails parameters: - $ref: '#/components/parameters/top' @@ -35987,12 +37348,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthDevicePerformanceDetails summary: Get userExperienceAnalyticsAppHealthDevicePerformanceDetails from deviceManagement + description: User experience analytics device performance details operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthDevicePerformanceDetails parameters: - name: userExperienceAnalyticsAppHealthDevicePerformanceDetails-id in: path description: 'key: id of userExperienceAnalyticsAppHealthDevicePerformanceDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDevicePerformanceDetails @@ -36047,6 +37410,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthDevicePerformanceDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDevicePerformanceDetails @@ -36073,12 +37437,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthDevicePerformanceDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthDevicePerformanceDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36092,6 +37458,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Get userExperienceAnalyticsAppHealthOSVersionPerformance from deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_ListUserExperienceAnalyticsAppHealthOSVersionPerformance parameters: - $ref: '#/components/parameters/top' @@ -36190,12 +37557,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsAppHealthOSVersionPerformance summary: Get userExperienceAnalyticsAppHealthOSVersionPerformance from deviceManagement + description: User experience analytics appHealth OS version Performance operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthOSVersionPerformance parameters: - name: userExperienceAnalyticsAppHealthOSVersionPerformance-id in: path description: 'key: id of userExperienceAnalyticsAppHealthOSVersionPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthOSVersionPerformance @@ -36249,6 +37618,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthOSVersionPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthOSVersionPerformance @@ -36275,12 +37645,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsAppHealthOSVersionPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsAppHealthOSVersionPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36294,6 +37666,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get userExperienceAnalyticsAppHealthOverview from deviceManagement + description: User experience analytics appHealth overview operationId: deviceManagement_GetUserExperienceAnalyticsAppHealthOverview parameters: - name: $select @@ -36363,6 +37736,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36376,6 +37750,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_ListMetricValues parameters: - $ref: '#/components/parameters/top' @@ -36462,12 +37837,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsAppHealthOverview_GetMetricValues parameters: - name: userExperienceAnalyticsMetric-id in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -36517,6 +37894,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -36543,12 +37921,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36562,6 +37942,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get userExperienceAnalyticsBaselines from deviceManagement + description: User experience analytics baselines operationId: deviceManagement_ListUserExperienceAnalyticsBaselines parameters: - $ref: '#/components/parameters/top' @@ -36665,12 +38046,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get userExperienceAnalyticsBaselines from deviceManagement + description: User experience analytics baselines operationId: deviceManagement_GetUserExperienceAnalyticsBaselines parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -36764,6 +38147,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -36790,12 +38174,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36809,12 +38195,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get appHealthMetrics from deviceManagement + description: The user experience analytics app health metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetAppHealthMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -36865,12 +38253,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get batteryHealthMetrics from deviceManagement + description: The user experience analytics battery health metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetBatteryHealthMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -36921,12 +38311,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get bestPracticesMetrics from deviceManagement + description: The user experience analytics best practices metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetBestPracticesMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -36977,12 +38369,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get deviceBootPerformanceMetrics from deviceManagement + description: The user experience analytics device boot performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetDeviceBootPerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -37033,12 +38427,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get rebootAnalyticsMetrics from deviceManagement + description: The user experience analytics reboot analytics metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetRebootAnalyticsMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -37089,12 +38485,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get resourcePerformanceMetrics from deviceManagement + description: The user experience analytics resource performance metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetResourcePerformanceMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -37145,12 +38543,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBaseline summary: Get workFromAnywhereMetrics from deviceManagement + description: The user experience analytics work from anywhere metrics. operationId: deviceManagement.userExperienceAnalyticsBaselines_GetWorkFromAnywhereMetrics parameters: - name: userExperienceAnalyticsBaseline-id in: path description: 'key: id of userExperienceAnalyticsBaseline' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBaseline @@ -37201,6 +38601,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthAppImpact summary: Get userExperienceAnalyticsBatteryHealthAppImpact from deviceManagement + description: User Experience Analytics Battery Health App Impact operationId: deviceManagement_ListUserExperienceAnalyticsBatteryHealthAppImpact parameters: - $ref: '#/components/parameters/top' @@ -37299,12 +38700,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthAppImpact summary: Get userExperienceAnalyticsBatteryHealthAppImpact from deviceManagement + description: User Experience Analytics Battery Health App Impact operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthAppImpact parameters: - name: userExperienceAnalyticsBatteryHealthAppImpact-id in: path description: 'key: id of userExperienceAnalyticsBatteryHealthAppImpact' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthAppImpact @@ -37358,6 +38761,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthAppImpact' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthAppImpact @@ -37384,12 +38788,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthAppImpact' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthAppImpact - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37403,6 +38809,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthCapacityDetails summary: Get userExperienceAnalyticsBatteryHealthCapacityDetails from deviceManagement + description: User Experience Analytics Battery Health Capacity Details operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthCapacityDetails parameters: - name: $select @@ -37471,6 +38878,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37484,6 +38892,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthDeviceAppImpact summary: Get userExperienceAnalyticsBatteryHealthDeviceAppImpact from deviceManagement + description: User Experience Analytics Battery Health Device App Impact operationId: deviceManagement_ListUserExperienceAnalyticsBatteryHealthDeviceAppImpact parameters: - $ref: '#/components/parameters/top' @@ -37582,12 +38991,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthDeviceAppImpact summary: Get userExperienceAnalyticsBatteryHealthDeviceAppImpact from deviceManagement + description: User Experience Analytics Battery Health Device App Impact operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthDeviceAppImpact parameters: - name: userExperienceAnalyticsBatteryHealthDeviceAppImpact-id in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDeviceAppImpact' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDeviceAppImpact @@ -37641,6 +39052,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDeviceAppImpact' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDeviceAppImpact @@ -37667,12 +39079,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDeviceAppImpact' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDeviceAppImpact - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37686,6 +39100,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthDevicePerformance summary: Get userExperienceAnalyticsBatteryHealthDevicePerformance from deviceManagement + description: User Experience Analytics Battery Health Device Performance operationId: deviceManagement_ListUserExperienceAnalyticsBatteryHealthDevicePerformance parameters: - $ref: '#/components/parameters/top' @@ -37793,12 +39208,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthDevicePerformance summary: Get userExperienceAnalyticsBatteryHealthDevicePerformance from deviceManagement + description: User Experience Analytics Battery Health Device Performance operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthDevicePerformance parameters: - name: userExperienceAnalyticsBatteryHealthDevicePerformance-id in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDevicePerformance @@ -37855,6 +39272,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDevicePerformance @@ -37881,12 +39299,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDevicePerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37900,6 +39320,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory summary: Get userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory from deviceManagement + description: User Experience Analytics Battery Health Device Runtime History operationId: deviceManagement_ListUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory parameters: - $ref: '#/components/parameters/top' @@ -37989,12 +39410,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory summary: Get userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory from deviceManagement + description: User Experience Analytics Battery Health Device Runtime History operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory parameters: - name: userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory @@ -38045,6 +39468,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory @@ -38071,12 +39495,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38090,6 +39516,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthModelPerformance summary: Get userExperienceAnalyticsBatteryHealthModelPerformance from deviceManagement + description: User Experience Analytics Battery Health Model Performance operationId: deviceManagement_ListUserExperienceAnalyticsBatteryHealthModelPerformance parameters: - $ref: '#/components/parameters/top' @@ -38191,12 +39618,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthModelPerformance summary: Get userExperienceAnalyticsBatteryHealthModelPerformance from deviceManagement + description: User Experience Analytics Battery Health Model Performance operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthModelPerformance parameters: - name: userExperienceAnalyticsBatteryHealthModelPerformance-id in: path description: 'key: id of userExperienceAnalyticsBatteryHealthModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthModelPerformance @@ -38251,6 +39680,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthModelPerformance @@ -38277,12 +39707,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthModelPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38296,6 +39728,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthOsPerformance summary: Get userExperienceAnalyticsBatteryHealthOsPerformance from deviceManagement + description: User Experience Analytics Battery Health Os Performance operationId: deviceManagement_ListUserExperienceAnalyticsBatteryHealthOsPerformance parameters: - $ref: '#/components/parameters/top' @@ -38394,12 +39827,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthOsPerformance summary: Get userExperienceAnalyticsBatteryHealthOsPerformance from deviceManagement + description: User Experience Analytics Battery Health Os Performance operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthOsPerformance parameters: - name: userExperienceAnalyticsBatteryHealthOsPerformance-id in: path description: 'key: id of userExperienceAnalyticsBatteryHealthOsPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthOsPerformance @@ -38453,6 +39888,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthOsPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthOsPerformance @@ -38479,12 +39915,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsBatteryHealthOsPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsBatteryHealthOsPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38498,6 +39936,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsBatteryHealthRuntimeDetails summary: Get userExperienceAnalyticsBatteryHealthRuntimeDetails from deviceManagement + description: User Experience Analytics Battery Health Runtime Details operationId: deviceManagement_GetUserExperienceAnalyticsBatteryHealthRuntimeDetails parameters: - name: $select @@ -38566,6 +40005,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38579,6 +40019,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get userExperienceAnalyticsCategories from deviceManagement + description: User experience analytics categories operationId: deviceManagement_ListUserExperienceAnalyticsCategories parameters: - $ref: '#/components/parameters/top' @@ -38664,12 +40105,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get userExperienceAnalyticsCategories from deviceManagement + description: User experience analytics categories operationId: deviceManagement_GetUserExperienceAnalyticsCategories parameters: - name: userExperienceAnalyticsCategory-id in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38725,6 +40168,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38751,12 +40195,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38770,12 +40216,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_ListMetricValues parameters: - name: userExperienceAnalyticsCategory-id in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38846,6 +40294,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38871,12 +40320,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsCategory summary: Get metricValues from deviceManagement + description: The metric values for the user experience analytics category. operationId: deviceManagement.userExperienceAnalyticsCategories_GetMetricValues parameters: - name: userExperienceAnalyticsCategory-id in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38884,6 +40335,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -38933,6 +40385,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38940,6 +40393,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -38966,6 +40420,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsCategory @@ -38973,12 +40428,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38992,6 +40449,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsDeviceMetricHistory from deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_ListUserExperienceAnalyticsDeviceMetricHistory parameters: - $ref: '#/components/parameters/top' @@ -39081,12 +40539,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsDeviceMetricHistory from deviceManagement + description: User experience analytics device metric history operationId: deviceManagement_GetUserExperienceAnalyticsDeviceMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id in: path description: 'key: id of userExperienceAnalyticsMetricHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetricHistory @@ -39137,6 +40597,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetricHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetricHistory @@ -39163,12 +40624,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetricHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetricHistory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39182,6 +40645,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Get userExperienceAnalyticsDevicePerformance from deviceManagement + description: User experience analytics device performance operationId: deviceManagement_ListUserExperienceAnalyticsDevicePerformance parameters: - $ref: '#/components/parameters/top' @@ -39322,12 +40786,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDevicePerformance summary: Get userExperienceAnalyticsDevicePerformance from deviceManagement + description: User experience analytics device performance operationId: deviceManagement_GetUserExperienceAnalyticsDevicePerformance parameters: - name: userExperienceAnalyticsDevicePerformance-id in: path description: 'key: id of userExperienceAnalyticsDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDevicePerformance @@ -39395,6 +40861,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDevicePerformance @@ -39421,12 +40888,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDevicePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDevicePerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39440,6 +40909,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceScope summary: Get userExperienceAnalyticsDeviceScope from deviceManagement + description: The user experience analytics device scope entity endpoint to trigger on the service to either START or STOP computing metrics data based on a device scope configuration. operationId: deviceManagement_GetUserExperienceAnalyticsDeviceScope parameters: - name: $select @@ -39517,6 +40987,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39530,6 +41001,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceScope summary: Get userExperienceAnalyticsDeviceScopes from deviceManagement + description: The user experience analytics device scope entity contains device scope configuration use to apply filtering on the endpoint analytics reports. operationId: deviceManagement_ListUserExperienceAnalyticsDeviceScopes parameters: - $ref: '#/components/parameters/top' @@ -39643,12 +41115,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceScope summary: Get userExperienceAnalyticsDeviceScopes from deviceManagement + description: The user experience analytics device scope entity contains device scope configuration use to apply filtering on the endpoint analytics reports. operationId: deviceManagement_GetUserExperienceAnalyticsDeviceScopes parameters: - name: userExperienceAnalyticsDeviceScope-id in: path description: 'key: id of userExperienceAnalyticsDeviceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScope @@ -39710,6 +41184,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScope @@ -39736,12 +41211,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39755,6 +41232,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceScores summary: Get userExperienceAnalyticsDeviceScores from deviceManagement + description: User experience analytics device scores operationId: deviceManagement_ListUserExperienceAnalyticsDeviceScores parameters: - $ref: '#/components/parameters/top' @@ -39862,12 +41340,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceScores summary: Get userExperienceAnalyticsDeviceScores from deviceManagement + description: User experience analytics device scores operationId: deviceManagement_GetUserExperienceAnalyticsDeviceScores parameters: - name: userExperienceAnalyticsDeviceScores-id in: path description: 'key: id of userExperienceAnalyticsDeviceScores' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScores @@ -39924,6 +41404,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceScores' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScores @@ -39950,12 +41431,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceScores' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceScores - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39969,6 +41452,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Get userExperienceAnalyticsDeviceStartupHistory from deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_ListUserExperienceAnalyticsDeviceStartupHistory parameters: - $ref: '#/components/parameters/top' @@ -40097,12 +41581,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupHistory summary: Get userExperienceAnalyticsDeviceStartupHistory from deviceManagement + description: User experience analytics device Startup History operationId: deviceManagement_GetUserExperienceAnalyticsDeviceStartupHistory parameters: - name: userExperienceAnalyticsDeviceStartupHistory-id in: path description: 'key: id of userExperienceAnalyticsDeviceStartupHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupHistory @@ -40166,6 +41652,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceStartupHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupHistory @@ -40192,12 +41679,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceStartupHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupHistory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40211,6 +41700,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Get userExperienceAnalyticsDeviceStartupProcesses from deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_ListUserExperienceAnalyticsDeviceStartupProcesses parameters: - $ref: '#/components/parameters/top' @@ -40306,12 +41796,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcess summary: Get userExperienceAnalyticsDeviceStartupProcesses from deviceManagement + description: User experience analytics device Startup Processes operationId: deviceManagement_GetUserExperienceAnalyticsDeviceStartupProcesses parameters: - name: userExperienceAnalyticsDeviceStartupProcess-id in: path description: 'key: id of userExperienceAnalyticsDeviceStartupProcess' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupProcess @@ -40364,6 +41856,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceStartupProcess' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupProcess @@ -40390,12 +41883,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceStartupProcess' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupProcess - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40409,6 +41904,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Get userExperienceAnalyticsDeviceStartupProcessPerformance from deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_ListUserExperienceAnalyticsDeviceStartupProcessPerformance parameters: - $ref: '#/components/parameters/top' @@ -40513,12 +42009,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceStartupProcessPerformance summary: Get userExperienceAnalyticsDeviceStartupProcessPerformance from deviceManagement + description: User experience analytics device Startup Process Performance operationId: deviceManagement_GetUserExperienceAnalyticsDeviceStartupProcessPerformance parameters: - name: userExperienceAnalyticsDeviceStartupProcessPerformance-id in: path description: 'key: id of userExperienceAnalyticsDeviceStartupProcessPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupProcessPerformance @@ -40574,6 +42072,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceStartupProcessPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupProcessPerformance @@ -40600,12 +42099,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceStartupProcessPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceStartupProcessPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40619,6 +42120,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Get userExperienceAnalyticsDevicesWithoutCloudIdentity from deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_ListUserExperienceAnalyticsDevicesWithoutCloudIdentity parameters: - $ref: '#/components/parameters/top' @@ -40705,12 +42207,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsDeviceWithoutCloudIdentity summary: Get userExperienceAnalyticsDevicesWithoutCloudIdentity from deviceManagement + description: User experience analytics devices without cloud identity. operationId: deviceManagement_GetUserExperienceAnalyticsDevicesWithoutCloudIdentity parameters: - name: userExperienceAnalyticsDeviceWithoutCloudIdentity-id in: path description: 'key: id of userExperienceAnalyticsDeviceWithoutCloudIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceWithoutCloudIdentity @@ -40760,6 +42264,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceWithoutCloudIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceWithoutCloudIdentity @@ -40786,12 +42291,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsDeviceWithoutCloudIdentity' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsDeviceWithoutCloudIdentity - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40805,6 +42312,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Get userExperienceAnalyticsImpactingProcess from deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_ListUserExperienceAnalyticsImpactingProcess parameters: - $ref: '#/components/parameters/top' @@ -40903,12 +42411,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsImpactingProcess summary: Get userExperienceAnalyticsImpactingProcess from deviceManagement + description: User experience analytics impacting process operationId: deviceManagement_GetUserExperienceAnalyticsImpactingProcess parameters: - name: userExperienceAnalyticsImpactingProcess-id in: path description: 'key: id of userExperienceAnalyticsImpactingProcess' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsImpactingProcess @@ -40962,6 +42472,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsImpactingProcess' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsImpactingProcess @@ -40988,12 +42499,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsImpactingProcess' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsImpactingProcess - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41007,6 +42520,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsMetricHistory from deviceManagement + description: User experience analytics metric history operationId: deviceManagement_ListUserExperienceAnalyticsMetricHistory parameters: - $ref: '#/components/parameters/top' @@ -41096,12 +42610,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsMetricHistory summary: Get userExperienceAnalyticsMetricHistory from deviceManagement + description: User experience analytics metric history operationId: deviceManagement_GetUserExperienceAnalyticsMetricHistory parameters: - name: userExperienceAnalyticsMetricHistory-id in: path description: 'key: id of userExperienceAnalyticsMetricHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetricHistory @@ -41152,6 +42668,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetricHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetricHistory @@ -41178,12 +42695,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetricHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetricHistory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41197,6 +42716,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsModelScores summary: Get userExperienceAnalyticsModelScores from deviceManagement + description: User experience analytics model scores operationId: deviceManagement_ListUserExperienceAnalyticsModelScores parameters: - $ref: '#/components/parameters/top' @@ -41304,12 +42824,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsModelScores summary: Get userExperienceAnalyticsModelScores from deviceManagement + description: User experience analytics model scores operationId: deviceManagement_GetUserExperienceAnalyticsModelScores parameters: - name: userExperienceAnalyticsModelScores-id in: path description: 'key: id of userExperienceAnalyticsModelScores' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsModelScores @@ -41366,6 +42888,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsModelScores' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsModelScores @@ -41392,12 +42915,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsModelScores' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsModelScores - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41411,6 +42936,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_ListUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - $ref: '#/components/parameters/top' @@ -41518,12 +43044,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsNotAutopilotReadyDevice summary: Get userExperienceAnalyticsNotAutopilotReadyDevice from deviceManagement + description: User experience analytics devices not Windows Autopilot ready. operationId: deviceManagement_GetUserExperienceAnalyticsNotAutopilotReadyDevice parameters: - name: userExperienceAnalyticsNotAutopilotReadyDevice-id in: path description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice @@ -41580,6 +43108,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice @@ -41606,12 +43135,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsNotAutopilotReadyDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsNotAutopilotReadyDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41625,6 +43156,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsOverview summary: Get userExperienceAnalyticsOverview from deviceManagement + description: User experience analytics overview operationId: deviceManagement_GetUserExperienceAnalyticsOverview parameters: - name: $select @@ -41689,6 +43221,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41702,6 +43235,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get userExperienceAnalyticsRegressionSummary from deviceManagement + description: User experience analytics regression summary operationId: deviceManagement_GetUserExperienceAnalyticsRegressionSummary parameters: - name: $select @@ -41780,6 +43314,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41793,6 +43328,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get manufacturerRegression from deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_ListManufacturerRegression parameters: - $ref: '#/components/parameters/top' @@ -41879,12 +43415,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get manufacturerRegression from deviceManagement + description: The metric values for the user experience analytics Manufacturer regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_GetManufacturerRegression parameters: - name: userExperienceAnalyticsMetric-id in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -41934,6 +43472,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -41960,12 +43499,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41979,6 +43520,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get modelRegression from deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_ListModelRegression parameters: - $ref: '#/components/parameters/top' @@ -42065,12 +43607,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get modelRegression from deviceManagement + description: The metric values for the user experience analytics model regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_GetModelRegression parameters: - name: userExperienceAnalyticsMetric-id in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -42120,6 +43664,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -42146,12 +43691,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42165,6 +43712,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get operatingSystemRegression from deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_ListOperatingSystemRegression parameters: - $ref: '#/components/parameters/top' @@ -42251,12 +43799,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRegressionSummary summary: Get operatingSystemRegression from deviceManagement + description: The metric values for the user experience analytics operating system regression. operationId: deviceManagement.userExperienceAnalyticsRegressionSummary_GetOperatingSystemRegression parameters: - name: userExperienceAnalyticsMetric-id in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -42306,6 +43856,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric @@ -42332,12 +43883,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsMetric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42351,6 +43904,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Get userExperienceAnalyticsRemoteConnection from deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_ListUserExperienceAnalyticsRemoteConnection parameters: - $ref: '#/components/parameters/top' @@ -42470,12 +44024,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsRemoteConnection summary: Get userExperienceAnalyticsRemoteConnection from deviceManagement + description: User experience analytics remote connection operationId: deviceManagement_GetUserExperienceAnalyticsRemoteConnection parameters: - name: userExperienceAnalyticsRemoteConnection-id in: path description: 'key: id of userExperienceAnalyticsRemoteConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsRemoteConnection @@ -42536,6 +44092,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsRemoteConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsRemoteConnection @@ -42562,12 +44119,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsRemoteConnection' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsRemoteConnection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42581,6 +44140,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Get userExperienceAnalyticsResourcePerformance from deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_ListUserExperienceAnalyticsResourcePerformance parameters: - $ref: '#/components/parameters/top' @@ -42700,12 +44260,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsResourcePerformance summary: Get userExperienceAnalyticsResourcePerformance from deviceManagement + description: User experience analytics resource performance operationId: deviceManagement_GetUserExperienceAnalyticsResourcePerformance parameters: - name: userExperienceAnalyticsResourcePerformance-id in: path description: 'key: id of userExperienceAnalyticsResourcePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsResourcePerformance @@ -42766,6 +44328,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsResourcePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsResourcePerformance @@ -42792,12 +44355,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsResourcePerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsResourcePerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42811,6 +44376,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Get userExperienceAnalyticsScoreHistory from deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_ListUserExperienceAnalyticsScoreHistory parameters: - $ref: '#/components/parameters/top' @@ -42894,12 +44460,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsScoreHistory summary: Get userExperienceAnalyticsScoreHistory from deviceManagement + description: User experience analytics device Startup Score History operationId: deviceManagement_GetUserExperienceAnalyticsScoreHistory parameters: - name: userExperienceAnalyticsScoreHistory-id in: path description: 'key: id of userExperienceAnalyticsScoreHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsScoreHistory @@ -42948,6 +44516,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsScoreHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsScoreHistory @@ -42974,12 +44543,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsScoreHistory' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsScoreHistory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42993,6 +44564,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric summary: Get userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric from deviceManagement + description: User experience analytics work from anywhere hardware readiness metrics. operationId: deviceManagement_GetUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric parameters: - name: $select @@ -43067,6 +44639,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43080,6 +44653,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric summary: Get userExperienceAnalyticsWorkFromAnywhereMetrics from deviceManagement + description: User experience analytics work from anywhere metrics. operationId: deviceManagement_ListUserExperienceAnalyticsWorkFromAnywhereMetrics parameters: - $ref: '#/components/parameters/top' @@ -43162,12 +44736,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric summary: Get userExperienceAnalyticsWorkFromAnywhereMetrics from deviceManagement + description: User experience analytics work from anywhere metrics. operationId: deviceManagement_GetUserExperienceAnalyticsWorkFromAnywhereMetrics parameters: - name: userExperienceAnalyticsWorkFromAnywhereMetric-id in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43222,6 +44798,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43248,12 +44825,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43267,12 +44846,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric summary: Get metricDevices from deviceManagement + description: The work from anywhere metric devices. operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_ListMetricDevices parameters: - name: userExperienceAnalyticsWorkFromAnywhereMetric-id in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43439,6 +45020,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43464,12 +45046,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetric summary: Get metricDevices from deviceManagement + description: The work from anywhere metric devices. operationId: deviceManagement.userExperienceAnalyticsWorkFromAnywhereMetrics_GetMetricDevices parameters: - name: userExperienceAnalyticsWorkFromAnywhereMetric-id in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43477,6 +45061,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereDevice @@ -43558,6 +45143,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43565,6 +45151,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereDevice @@ -43591,6 +45178,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereMetric' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereMetric @@ -43598,12 +45186,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43617,6 +45207,7 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereModelPerformance summary: Get userExperienceAnalyticsWorkFromAnywhereModelPerformance from deviceManagement + description: The user experience analytics work from anywhere model performance operationId: deviceManagement_ListUserExperienceAnalyticsWorkFromAnywhereModelPerformance parameters: - $ref: '#/components/parameters/top' @@ -43724,12 +45315,14 @@ paths: tags: - deviceManagement.userExperienceAnalyticsWorkFromAnywhereModelPerformance summary: Get userExperienceAnalyticsWorkFromAnywhereModelPerformance from deviceManagement + description: The user experience analytics work from anywhere model performance operationId: deviceManagement_GetUserExperienceAnalyticsWorkFromAnywhereModelPerformance parameters: - name: userExperienceAnalyticsWorkFromAnywhereModelPerformance-id in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereModelPerformance @@ -43786,6 +45379,7 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereModelPerformance @@ -43812,12 +45406,14 @@ paths: in: path description: 'key: id of userExperienceAnalyticsWorkFromAnywhereModelPerformance' required: true + style: simple schema: type: string x-ms-docs-key-type: userExperienceAnalyticsWorkFromAnywhereModelPerformance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43831,6 +45427,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Get windowsInformationProtectionAppLearningSummaries from deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_ListWindowsInformationProtectionAppLearningSummaries parameters: - $ref: '#/components/parameters/top' @@ -43920,12 +45517,14 @@ paths: tags: - deviceManagement.windowsInformationProtectionAppLearningSummary summary: Get windowsInformationProtectionAppLearningSummaries from deviceManagement + description: The windows information protection app learning summaries. operationId: deviceManagement_GetWindowsInformationProtectionAppLearningSummaries parameters: - name: windowsInformationProtectionAppLearningSummary-id in: path description: 'key: id of windowsInformationProtectionAppLearningSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLearningSummary @@ -43976,6 +45575,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionAppLearningSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLearningSummary @@ -44002,12 +45602,14 @@ paths: in: path description: 'key: id of windowsInformationProtectionAppLearningSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLearningSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44021,6 +45623,7 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_ListWindowsInformationProtectionNetworkLearningSummaries parameters: - $ref: '#/components/parameters/top' @@ -44107,12 +45710,14 @@ paths: tags: - deviceManagement.windowsInformationProtectionNetworkLearningSummary summary: Get windowsInformationProtectionNetworkLearningSummaries from deviceManagement + description: The windows information protection network learning summaries. operationId: deviceManagement_GetWindowsInformationProtectionNetworkLearningSummaries parameters: - name: windowsInformationProtectionNetworkLearningSummary-id in: path description: 'key: id of windowsInformationProtectionNetworkLearningSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionNetworkLearningSummary @@ -44162,6 +45767,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionNetworkLearningSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionNetworkLearningSummary @@ -44188,12 +45794,14 @@ paths: in: path description: 'key: id of windowsInformationProtectionNetworkLearningSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionNetworkLearningSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44207,6 +45815,7 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get windowsMalwareInformation from deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_ListWindowsMalwareInformation parameters: - $ref: '#/components/parameters/top' @@ -44304,12 +45913,14 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get windowsMalwareInformation from deviceManagement + description: The list of affected malware in the tenant. operationId: deviceManagement_GetWindowsMalwareInformation parameters: - name: windowsMalwareInformation-id in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44369,6 +45980,7 @@ paths: in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44395,12 +46007,14 @@ paths: in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44414,12 +46028,14 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get deviceMalwareStates from deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_ListDeviceMalwareStates parameters: - name: windowsMalwareInformation-id in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44502,6 +46118,7 @@ paths: in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44527,12 +46144,14 @@ paths: tags: - deviceManagement.windowsMalwareInformation summary: Get deviceMalwareStates from deviceManagement + description: List of devices affected by current malware with the malware state on each device operationId: deviceManagement.windowsMalwareInformation_GetDeviceMalwareStates parameters: - name: windowsMalwareInformation-id in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44540,6 +46159,7 @@ paths: in: path description: 'key: id of malwareStateForWindowsDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: malwareStateForWindowsDevice @@ -44593,6 +46213,7 @@ paths: in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44600,6 +46221,7 @@ paths: in: path description: 'key: id of malwareStateForWindowsDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: malwareStateForWindowsDevice @@ -44626,6 +46248,7 @@ paths: in: path description: 'key: id of windowsMalwareInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsMalwareInformation @@ -44633,12 +46256,14 @@ paths: in: path description: 'key: id of malwareStateForWindowsDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: malwareStateForWindowsDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44693,6 +46318,8 @@ components: format: date-time adminConsent: $ref: '#/components/schemas/microsoft.graph.adminConsent' + dataProcessorServiceForWindowsFeaturesOnboarding: + $ref: '#/components/schemas/microsoft.graph.dataProcessorServiceForWindowsFeaturesOnboarding' deviceProtectionOverview: $ref: '#/components/schemas/microsoft.graph.deviceProtectionOverview' managedDeviceCleanupSettings: @@ -44705,6 +46332,8 @@ components: $ref: '#/components/schemas/microsoft.graph.userExperienceAnalyticsSettings' windowsMalwareOverview: $ref: '#/components/schemas/microsoft.graph.windowsMalwareOverview' + monitoring: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.monitoring' virtualEndpoint: $ref: '#/components/schemas/microsoft.graph.virtualEndpoint' androidDeviceOwnerEnrollmentProfiles: @@ -46171,6 +47800,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -51988,6 +53623,19 @@ components: additionalProperties: type: object description: Admin consent information. + microsoft.graph.dataProcessorServiceForWindowsFeaturesOnboarding: + title: dataProcessorServiceForWindowsFeaturesOnboarding + type: object + properties: + areDataProcessorServiceForWindowsFeaturesEnabled: + type: boolean + description: 'Indicates whether the tenant has enabled MEM features utilizing Data Processor Service for Windows (DPSW) data. When TRUE, the tenant has enabled MEM features utilizing Data Processor Service for Windows (DPSW) data. When FALSE, the tenant has not enabled MEM features utilizing Data Processor Service for Windows (DPSW) data. Default value is FALSE.' + hasValidWindowsLicense: + type: boolean + description: 'Indicates whether the tenant has required Windows license. When TRUE, the tenant has the required Windows license. When FALSE, the tenant does not have the required Windows license. Default value is FALSE.' + additionalProperties: + type: object + description: A configuration entity for MEM features that utilize Data Processor Service for Windows (DPSW) data. microsoft.graph.deviceProtectionOverview: title: deviceProtectionOverview type: object @@ -52207,6 +53855,22 @@ components: additionalProperties: type: object description: Windows device malware overview. + microsoft.graph.deviceManagement.monitoring: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: monitoring + type: object + properties: + alertRecords: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertRecord' + alertRules: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertRule' + additionalProperties: + type: object microsoft.graph.virtualEndpoint: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -52282,6 +53946,9 @@ components: type: string description: Tenant GUID the enrollment profile belongs to. nullable: true + configureWifi: + type: boolean + description: 'Boolean that indicates that the Wi-Fi network should be configured during device provisioning. When set to TRUE, device provisioning will use Wi-Fi related properties to automatically connect to Wi-Fi networks. When set to FALSE or undefined, other Wi-Fi related properties will be ignored. Default value is TRUE. Returned by default.' createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -53219,6 +54886,9 @@ components: windowsEnabled: type: boolean description: 'For Windows, get or set whether data from the data sync partner should be used during compliance evaluations' + windowsMobileApplicationManagementEnabled: + type: boolean + description: 'When TRUE, app protection policies using the Device Threat Level rule will evaluate devices including data from this connector for Windows. When FALSE, Intune will not use device risk details sent over this connector during app protection policies calculation for policies with a Device Threat Level configured. Existing devices that are not compliant due to risk levels obtained from this connector will also become compliant.' additionalProperties: type: object description: Entity which represents a connection to Mobile threat defense partner. @@ -55022,6 +56692,10 @@ components: type: string description: Connector name (set during enrollment). nullable: true + connectorVersion: + type: string + description: Version of the connector installed. + nullable: true enrollmentDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -55707,6 +57381,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -56659,6 +58337,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -56955,7 +58639,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -57147,7 +58830,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -57177,6 +58859,59 @@ components: $ref: '#/components/schemas/microsoft.graph.todo' additionalProperties: type: object + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.policyPlatformType: title: policyPlatformType enum: @@ -61740,6 +63475,73 @@ components: additionalProperties: type: object description: Count of devices with malware for each OS version + microsoft.graph.deviceManagement.alertRecord: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: alertRecord + type: object + properties: + alertImpact: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertImpact' + alertRuleId: + type: string + nullable: true + alertRuleTemplate: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertRuleTemplate' + detectedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + displayName: + type: string + nullable: true + lastUpdatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + resolvedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + severity: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.ruleSeverityType' + status: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertStatusType' + additionalProperties: + type: object + microsoft.graph.deviceManagement.alertRule: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: alertRule + type: object + properties: + alertRuleTemplate: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.alertRuleTemplate' + description: + type: string + nullable: true + displayName: + type: string + nullable: true + enabled: + type: boolean + nullable: true + isSystemRule: + type: boolean + nullable: true + notificationChannels: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.notificationChannel' + severity: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.ruleSeverityType' + threshold: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.ruleThreshold' + additionalProperties: + type: object microsoft.graph.cloudPcAuditEvent: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -61794,6 +63596,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -62061,6 +63865,10 @@ components: - title: cloudPcOrganizationSettings type: object properties: + enableMEMAutoEnroll: + type: boolean + description: Specifies whether new Cloud PCs will be automatically enrolled in Microsoft Endpoint Manager(MEM). The default value is false. + nullable: true osVersion: $ref: '#/components/schemas/microsoft.graph.cloudPcOperatingSystem' userAccountType: @@ -62204,6 +64012,8 @@ components: description: The name for the supported region. Read-only. regionStatus: $ref: '#/components/schemas/microsoft.graph.cloudPcSupportedRegionStatus' + supportedSolution: + $ref: '#/components/schemas/microsoft.graph.cloudPcManagementService' additionalProperties: type: object microsoft.graph.cloudPcUserSetting: @@ -62315,6 +64125,10 @@ components: type: string description: AAD Application Id. nullable: true + auditActorType: + type: string + description: Actor Type. + nullable: true ipAddress: type: string description: IPAddress. @@ -62361,6 +64175,10 @@ components: title: auditResource type: object properties: + auditResourceType: + type: string + description: Audit resource's type. + nullable: true displayName: type: string description: Display name. @@ -62856,7 +64674,15 @@ components: - eligibleButNotAzureAdJoined - needsOsUpdate - ineligible + - scheduledForEnrollment type: string + x-ms-enum: + name: comanagementEligibleType + modelAsString: false + values: + - value: scheduledForEnrollment + description: Devices scheduled for Co-Management enrollment + name: scheduledForEnrollment microsoft.graph.deviceComplianceScriptDeviceState: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -63142,6 +64968,12 @@ components: chooseYourLockScreenDisabled: type: boolean description: Indicates if iCloud Documents and Desktop screen is disabled + dontAutoPopulatePrimaryAccountInfo: + type: boolean + description: Indicates whether Setup Assistant will auto populate the primary account information + enableRestrictEditing: + type: boolean + description: Indicates whether the user will enable blockediting fileVaultDisabled: type: boolean description: Indicates if file vault is disabled @@ -63151,12 +64983,52 @@ components: iCloudStorageDisabled: type: boolean description: Indicates if iCloud Documents and Desktop screen is disabled + isLocalPrimaryAccount: + type: boolean + description: Indicates whether the profile is a local account + isPrimaryUser: + type: boolean + description: Indicates whether the profile is a primary user + lockPrimaryAccountInfo: + type: boolean + description: Indicates whether the primary account information will be locked + managedLocalUserShortName: + type: boolean + description: Indicates whether or not this is the short name of the local account to manage passCodeDisabled: type: boolean description: Indicates if Passcode setup pane is disabled + prefillAccountInfo: + type: boolean + description: Indicates whether the user will prefill their account info + primaryAccountFullName: + type: string + description: Indicates what the full name for the primary account is + nullable: true + primaryAccountUserName: + type: string + description: Indicates what the account name for the primary account is + nullable: true + primaryUser: + type: string + description: Indicates who the primary user of the profile is + nullable: true + primaryUserFullName: + type: string + description: Indicates who the primary user of the profile is + nullable: true registrationDisabled: type: boolean description: Indicates if registration is disabled + requestRequiresNetworkTether: + type: boolean + description: Indicates if the device is network-tethered to run the command + setPrimarySetupAccountAsRegularUser: + type: boolean + description: Indicates whether Setup Assistant will set the account as a regular user + skipPrimarySetupAccountCreation: + type: boolean + description: Indicates whether Setup Assistant will skip the user interface for primary account setup zoomDisabled: type: boolean description: Indicates if zoom setup pane is disabled @@ -64080,6 +65952,7 @@ components: - weeklyOnce - monthlyOnce - monthlyTwice + - unknownFutureValue type: string description: Indicates the frequency at which a client will see the message x-ms-enum: @@ -64095,11 +65968,15 @@ components: - value: monthlyTwice description: Indicates that the message will be displayed twice a month name: monthlyTwice + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageScenario: title: organizationalMessageScenario enum: - onboarding - lifecycle + - unknownFutureValue type: string description: Indicates the scenario for the message x-ms-enum: @@ -64112,6 +65989,9 @@ components: - value: lifecycle description: Indicates lifecycle scenario name: lifecycle + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageStatus: title: organizationalMessageStatus enum: @@ -64119,6 +65999,7 @@ components: - active - completed - cancelled + - unknownFutureValue type: string description: Indicates the deployment status of the message x-ms-enum: @@ -64137,12 +66018,16 @@ components: - value: cancelled description: Indicates that the message has been cancelled and will not be shown name: cancelled + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageSurface: title: organizationalMessageSurface enum: - actionCenter - getStarted - softLanding + - unknownFutureValue type: string description: Indicates the area where content will be displayed to customers x-ms-enum: @@ -64158,6 +66043,9 @@ components: - value: softLanding description: Indicates the message will be displayed to the Soft Landing which is anchored to the Windows taskbar name: softLanding + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageTargeting: title: organizationalMessageTargeting type: object @@ -64185,6 +66073,8 @@ components: - update - training - welcomeToWindows + - explore + - unknownFutureValue type: string description: Indicates the theme for the guided content x-ms-enum: @@ -64200,6 +66090,12 @@ components: - value: welcomeToWindows description: Indicates the Welcome to Windows theme name: welcomeToWindows + - value: explore + description: Indicates the Explore + name: explore + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageInsights: title: organizationalMessageInsights type: object @@ -65085,6 +66981,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -65567,6 +67464,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -65606,7 +67505,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -67072,7 +68970,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -67419,7 +69317,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -67636,50 +69533,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -67687,7 +69574,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -68301,6 +70187,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -68591,6 +70479,77 @@ components: - value: reset description: Reset device enrolled in Company Portal name: reset + microsoft.graph.deviceManagement.alertImpact: + title: alertImpact + type: object + properties: + aggregationType: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.aggregationType' + value: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + additionalProperties: + type: object + microsoft.graph.deviceManagement.alertRuleTemplate: + title: alertRuleTemplate + enum: + - cloudPcProvisionScenario + - cloudPcImageUploadScenario + - cloudPcOnPremiseNetworkConnectionCheckScenario + - unknownFutureValue + type: string + microsoft.graph.deviceManagement.ruleSeverityType: + title: ruleSeverityType + enum: + - unknown + - informational + - warning + - critical + - unknownFutureValue + type: string + microsoft.graph.deviceManagement.alertStatusType: + title: alertStatusType + enum: + - active + - resolved + - unknownFutureValue + type: string + microsoft.graph.deviceManagement.notificationChannel: + title: notificationChannel + type: object + properties: + notificationChannelType: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.notificationChannelType' + notificationReceivers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.notificationReceiver' + receivers: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + microsoft.graph.deviceManagement.ruleThreshold: + title: ruleThreshold + type: object + properties: + aggregation: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.aggregationType' + operator: + $ref: '#/components/schemas/microsoft.graph.deviceManagement.operatorType' + target: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + nullable: true + additionalProperties: + type: object microsoft.graph.cloudPcAuditActivityOperationType: title: cloudPcAuditActivityOperationType enum: @@ -68693,14 +70652,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -69537,6 +71507,7 @@ components: title: organizationalMessageTargetingType enum: - aadGroup + - unknownFutureValue type: string description: Indicates the type of targeting x-ms-enum: @@ -69546,6 +71517,9 @@ components: - value: aadGroup description: Indicates that client devices are targeted by their AAD group name: aadGroup + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageLogoDimensions: title: organizationalMessageLogoDimensions type: object @@ -69585,6 +71559,7 @@ components: - card1 - card2 - card3 + - unknownFutureValue type: string description: Indicates the name of the placement x-ms-enum: @@ -69606,6 +71581,9 @@ components: - value: card3 description: Indicates the area where the fourth card is displayed. Only applies to the getStarted surface name: card3 + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageVariant: title: organizationalMessageVariant type: object @@ -69703,7 +71681,9 @@ components: title: deviceManagementReportFileFormat enum: - csv + - pdf - json + - unknownFutureValue type: string description: Possible values for the file format of a report x-ms-enum: @@ -69713,9 +71693,15 @@ components: - value: csv description: CSV Format name: csv + - value: pdf + description: PDF Format (Deprecate later) + name: pdf - value: json description: JSON Format name: json + - value: unknownFutureValue + description: Evolvable enumeration sentinel value. Do not use. + name: unknownFutureValue microsoft.graph.deviceManagementExportJobLocalizationType: title: deviceManagementExportJobLocalizationType enum: @@ -70354,6 +72340,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -70521,11 +72527,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -70628,10 +72634,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -71471,7 +73475,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -71732,12 +73735,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -72191,7 +74192,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -72959,12 +74960,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -73624,43 +75623,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -74167,12 +76159,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -74893,6 +76885,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -75053,6 +77090,47 @@ components: additionalProperties: type: object description: The structure of this object is service-specific + microsoft.graph.deviceManagement.aggregationType: + title: aggregationType + enum: + - count + - percentage + - affectedCloudPcCount + - affectedCloudPcPercentage + - unknownFutureValue + type: string + microsoft.graph.deviceManagement.notificationChannelType: + title: notificationChannelType + enum: + - portal + - email + - phoneCall + - sms + - unknownFutureValue + type: string + microsoft.graph.deviceManagement.notificationReceiver: + title: notificationReceiver + type: object + properties: + contactInformation: + type: string + nullable: true + locale: + type: string + nullable: true + additionalProperties: + type: object + microsoft.graph.deviceManagement.operatorType: + title: operatorType + enum: + - greaterOrEqual + - equal + - greater + - less + - lessOrEqual + - notEqual + - unknownFutureValue + type: string microsoft.graph.cloudPcAuditActorType: title: cloudPcAuditActorType enum: @@ -75095,12 +77173,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -75173,6 +77254,7 @@ components: title: organizationalMessageLogoType enum: - png + - unknownFutureValue type: string description: Indicates the content type of the logo x-ms-enum: @@ -75182,6 +77264,9 @@ components: - value: png description: Indicates that logo is a png file name: png + - value: unknownFutureValue + description: 'UnknownFutureValue, Evolvable enumeration sentinel value. Do not use.' + name: unknownFutureValue microsoft.graph.organizationalMessageLocalizedText: title: organizationalMessageLocalizedText type: object @@ -75242,21 +77327,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -75267,7 +77348,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printerShareViewpoint: @@ -75525,11 +77605,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -76552,7 +78632,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -76794,7 +78873,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -78250,14 +80328,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -78325,7 +80401,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -78348,7 +80423,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -78966,7 +81040,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -79266,6 +81339,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.operationStatus: title: operationStatus enum: @@ -79619,6 +81700,8 @@ components: - endpointConnectivityCheckCloudPcUrlNotAllowListed - endpointConnectivityCheckWVDUrlNotAllowListed - endpointConnectivityCheckIntuneUrlNotAllowListed + - endpointConnectivityCheckAzureADUrlNotAllowListed + - endpointConnectivityCheckLocaleUrlNotAllowListed - endpointConnectivityCheckUnknownError - azureAdDeviceSyncCheckDeviceNotFound - azureAdDeviceSyncCheckLongSyncCircle @@ -80342,7 +82425,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -81012,7 +83095,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -83574,7 +85656,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -85553,6 +87634,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -85561,6 +87644,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -85568,18 +87653,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/Devices.CloudPrint.yml b/openApiDocs/beta/Devices.CloudPrint.yml index 4e93651c9d3..f821c1bccdd 100644 --- a/openApiDocs/beta/Devices.CloudPrint.yml +++ b/openApiDocs/beta/Devices.CloudPrint.yml @@ -103,6 +103,7 @@ paths: tags: - print.printConnector summary: Get connectors from print + description: The list of available print connectors. operationId: print_ListConnectors parameters: - $ref: '#/components/parameters/top' @@ -207,12 +208,14 @@ paths: tags: - print.printConnector summary: Get connectors from print + description: The list of available print connectors. operationId: print_GetConnectors parameters: - name: printConnector-id in: path description: 'key: id of printConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: printConnector @@ -268,6 +271,7 @@ paths: in: path description: 'key: id of printConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: printConnector @@ -294,12 +298,14 @@ paths: in: path description: 'key: id of printConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: printConnector - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -405,6 +411,7 @@ paths: in: path description: 'key: id of printOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: printOperation @@ -454,6 +461,7 @@ paths: in: path description: 'key: id of printOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: printOperation @@ -480,12 +488,14 @@ paths: in: path description: 'key: id of printOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: printOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -499,6 +509,7 @@ paths: tags: - print.printer summary: Get printers from print + description: The list of printers registered in the tenant. operationId: print_ListPrinters parameters: - $ref: '#/components/parameters/top' @@ -631,12 +642,14 @@ paths: tags: - print.printer summary: Get printers from print + description: The list of printers registered in the tenant. operationId: print_GetPrinters parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -735,6 +748,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -761,12 +775,14 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -780,12 +796,14 @@ paths: tags: - print.printer summary: Get connectors from print + description: The connectors that are associated with the printer. operationId: print.printers_ListConnectors parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -869,12 +887,14 @@ paths: tags: - print.printer summary: Get connectors from print + description: The connectors that are associated with the printer. operationId: print.printers_GetConnectors parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -882,6 +902,7 @@ paths: in: path description: 'key: id of printConnector' required: true + style: simple schema: type: string x-ms-docs-key-type: printConnector @@ -938,6 +959,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -962,6 +984,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -982,6 +1005,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1002,6 +1026,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1081,12 +1106,14 @@ paths: tags: - print.printer summary: Get shares from print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_ListShares parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1190,12 +1217,14 @@ paths: tags: - print.printer summary: Get shares from print + description: 'The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable.' operationId: print.printers_GetShares parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1203,6 +1232,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -1286,12 +1316,14 @@ paths: tags: - print.printer summary: Get taskTriggers from print + description: A list of task triggers that are associated with the printer. operationId: print.printers_ListTaskTriggers parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1361,6 +1393,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1386,12 +1419,14 @@ paths: tags: - print.printer summary: Get taskTriggers from print + description: A list of task triggers that are associated with the printer. operationId: print.printers_GetTaskTriggers parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1399,6 +1434,7 @@ paths: in: path description: 'key: id of printTaskTrigger' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskTrigger @@ -1455,6 +1491,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1462,6 +1499,7 @@ paths: in: path description: 'key: id of printTaskTrigger' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskTrigger @@ -1488,6 +1526,7 @@ paths: in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1495,12 +1534,14 @@ paths: in: path description: 'key: id of printTaskTrigger' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskTrigger - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1514,12 +1555,14 @@ paths: tags: - print.printer summary: Get definition from print + description: An abstract definition that will be used to create a printTask when triggered by a print event. Read-only. operationId: print.printers.taskTriggers_GetDefinition parameters: - name: printer-id in: path description: 'key: id of printer' required: true + style: simple schema: type: string x-ms-docs-key-type: printer @@ -1527,6 +1570,7 @@ paths: in: path description: 'key: id of printTaskTrigger' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskTrigger @@ -1749,6 +1793,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -1833,6 +1878,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -1859,12 +1905,14 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1878,12 +1926,14 @@ paths: tags: - print.printerShare summary: Get allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.printerShares_ListAllowedGroups parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -2158,6 +2208,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -2165,17 +2216,21 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -2189,12 +2244,14 @@ paths: tags: - print.printerShare summary: Get ref of allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.printerShares_ListAllowedGroupsGraphBPreRef parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -2337,18 +2394,12 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -2360,12 +2411,14 @@ paths: tags: - print.printerShare summary: Get allowedUsers from print + description: The users who have access to print using the printer. operationId: print.printerShares_ListAllowedUsers parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -2426,6 +2479,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -2578,6 +2633,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -2801,6 +2857,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -2808,17 +2865,21 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -2832,12 +2893,14 @@ paths: tags: - print.printerShare summary: Get ref of allowedUsers from print + description: The users who have access to print using the printer. operationId: print.printerShares_ListAllowedUsersGraphBPreRef parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -2898,6 +2961,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -3038,18 +3103,12 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -3061,12 +3120,14 @@ paths: tags: - print.printerShare summary: Get printer from print + description: The printer that this printer share is related to. operationId: print.printerShares_GetPrinter parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -3252,12 +3313,6 @@ paths: operationId: print.reports.getAttackSimulationTrainingUserCoverage getAzureADApplicationSignInSummary: operationId: print.reports.getAzureADApplicationSignInSummary - getAzureADFeatureUsage: - operationId: print.reports.getAzureADFeatureUsage - getAzureADLicenseUsage: - operationId: print.reports.getAzureADLicenseUsage - getAzureADUserFeatureUsage: - operationId: print.reports.getAzureADUserFeatureUsage getBrowserDistributionUserCounts: operationId: print.reports.getBrowserDistributionUserCounts getBrowserUserCounts: @@ -3478,6 +3533,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3491,6 +3547,7 @@ paths: tags: - print.reportRoot summary: Get applicationSignInDetailedSummary from print + description: Represents a detailed summary of an application sign-in. operationId: print.reports_ListApplicationSignInDetailedSummary parameters: - $ref: '#/components/parameters/top' @@ -3586,12 +3643,14 @@ paths: tags: - print.reportRoot summary: Get applicationSignInDetailedSummary from print + description: Represents a detailed summary of an application sign-in. operationId: print.reports_GetApplicationSignInDetailedSummary parameters: - name: applicationSignInDetailedSummary-id in: path description: 'key: id of applicationSignInDetailedSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationSignInDetailedSummary @@ -3644,6 +3703,7 @@ paths: in: path description: 'key: id of applicationSignInDetailedSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationSignInDetailedSummary @@ -3670,12 +3730,14 @@ paths: in: path description: 'key: id of applicationSignInDetailedSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: applicationSignInDetailedSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3689,6 +3751,7 @@ paths: tags: - print.reportRoot summary: Get authenticationMethods from print + description: Container for navigation properties for Azure AD authentication methods resources. operationId: print.reports_GetAuthenticationMethods parameters: - name: $select @@ -3761,6 +3824,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3796,12 +3860,14 @@ paths: in: path description: 'Usage: includedUserTypes=''{includedUserTypes}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.includedUserTypes' - name: includedUserRoles in: path description: 'Usage: includedUserRoles=''{includedUserRoles}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.includedUserRoles' responses: @@ -3841,12 +3907,14 @@ paths: in: path description: 'Usage: includedUserTypes=''{includedUserTypes}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.includedUserTypes' - name: includedUserRoles in: path description: 'Usage: includedUserRoles=''{includedUserRoles}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.includedUserRoles' responses: @@ -3864,6 +3932,7 @@ paths: tags: - print.reportRoot summary: Get userRegistrationDetails from print + description: 'Represents the state of a user''s authentication methods, including which methods are registered and which features the user is registered and capable of (such as multi-factor authentication, self-service password reset, and passwordless authentication).' operationId: print.reports.authenticationMethods_ListUserRegistrationDetails parameters: - $ref: '#/components/parameters/top' @@ -3980,12 +4049,14 @@ paths: tags: - print.reportRoot summary: Get userRegistrationDetails from print + description: 'Represents the state of a user''s authentication methods, including which methods are registered and which features the user is registered and capable of (such as multi-factor authentication, self-service password reset, and passwordless authentication).' operationId: print.reports.authenticationMethods_GetUserRegistrationDetails parameters: - name: userRegistrationDetails-id in: path description: 'key: id of userRegistrationDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userRegistrationDetails @@ -4045,6 +4116,7 @@ paths: in: path description: 'key: id of userRegistrationDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userRegistrationDetails @@ -4071,12 +4143,14 @@ paths: in: path description: 'key: id of userRegistrationDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userRegistrationDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4090,6 +4164,7 @@ paths: tags: - print.reportRoot summary: Get credentialUserRegistrationDetails from print + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: print.reports_ListCredentialUserRegistrationDetails parameters: - $ref: '#/components/parameters/top' @@ -4191,12 +4266,14 @@ paths: tags: - print.reportRoot summary: Get credentialUserRegistrationDetails from print + description: Details of the usage of self-service password reset and multi-factor authentication (MFA) for all registered users. operationId: print.reports_GetCredentialUserRegistrationDetails parameters: - name: credentialUserRegistrationDetails-id in: path description: 'key: id of credentialUserRegistrationDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: credentialUserRegistrationDetails @@ -4251,6 +4328,7 @@ paths: in: path description: 'key: id of credentialUserRegistrationDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: credentialUserRegistrationDetails @@ -4277,12 +4355,14 @@ paths: in: path description: 'key: id of credentialUserRegistrationDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: credentialUserRegistrationDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4397,6 +4477,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -4449,6 +4530,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -4475,12 +4557,14 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4595,6 +4679,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -4647,6 +4732,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -4673,12 +4759,14 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4793,6 +4881,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -4845,6 +4934,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -4871,12 +4961,14 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4991,6 +5083,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -5043,6 +5136,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -5069,12 +5163,14 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5088,6 +5184,7 @@ paths: tags: - print.Functions summary: Invoke function deviceConfigurationDeviceActivity + description: Metadata for the device configuration device activity report operationId: print.reports_deviceConfigurationDeviceActivity responses: '200': @@ -5104,6 +5201,7 @@ paths: tags: - print.Functions summary: Invoke function deviceConfigurationUserActivity + description: Metadata for the device configuration user activity report operationId: print.reports_deviceConfigurationUserActivity responses: '200': @@ -5140,8 +5238,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2022-08-20T00:00:00.0000000+00:00' - date: '2022-05-24T00:00:00.0000000+00:00' + removalDate: '2022-08-20T00:00:00.0000000-07:00' + date: '2022-05-24T00:00:00.0000000-07:00' version: 2022-05/Tasks_And_Plans description: 'This report function api is deprecated and will stop returning data on August 20, 2022. Api is now moved to /reports/security. Please use the new API.' x-ms-docs-operation-type: function @@ -5170,8 +5268,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2022-08-20T00:00:00.0000000+00:00' - date: '2022-05-24T00:00:00.0000000+00:00' + removalDate: '2022-08-20T00:00:00.0000000-07:00' + date: '2022-05-24T00:00:00.0000000-07:00' version: 2022-05/Tasks_And_Plans description: 'This report function api is deprecated and will stop returning data on August 20, 2022. Api is now moved to /reports/security. Please use the new API.' x-ms-docs-operation-type: function @@ -5200,8 +5298,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2022-08-20T00:00:00.0000000+00:00' - date: '2022-05-24T00:00:00.0000000+00:00' + removalDate: '2022-08-20T00:00:00.0000000-07:00' + date: '2022-05-24T00:00:00.0000000-07:00' version: 2022-05/Tasks_And_Plans description: 'This report function api is deprecated and will stop returning data on August 20, 2022. Api is now moved to /reports/security. Please use the new API.' x-ms-docs-operation-type: function @@ -5216,6 +5314,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5236,92 +5335,6 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function - '/print/reports/microsoft.graph.getAzureADFeatureUsage(period=''{period}'')': - get: - tags: - - print.Functions - summary: Invoke function getAzureADFeatureUsage - operationId: print.reports_getAzureADFeatureUsage - parameters: - - name: period - in: path - description: 'Usage: period=''{period}''' - required: true - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of reportRoot - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.azureADFeatureUsage' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - '/print/reports/microsoft.graph.getAzureADLicenseUsage(period=''{period}'')': - get: - tags: - - print.Functions - summary: Invoke function getAzureADLicenseUsage - operationId: print.reports_getAzureADLicenseUsage - parameters: - - name: period - in: path - description: 'Usage: period=''{period}''' - required: true - schema: - type: string - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of reportRoot - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.azureADLicenseUsage' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /print/reports/microsoft.graph.getAzureADUserFeatureUsage(): - get: - tags: - - print.Functions - summary: Invoke function getAzureADUserFeatureUsage - operationId: print.reports_getAzureADUserFeatureUsage - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of reportRoot - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.azureADUserFeatureUsage' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function '/print/reports/microsoft.graph.getBrowserDistributionUserCounts(period=''{period}'')': get: tags: @@ -5333,6 +5346,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5362,6 +5376,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5391,6 +5406,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5420,6 +5436,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5475,6 +5492,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5504,6 +5522,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5533,6 +5552,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -5564,6 +5584,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5593,6 +5614,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5622,6 +5644,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5651,6 +5674,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -5682,6 +5706,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5711,6 +5736,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5740,6 +5766,7 @@ paths: in: path description: 'Usage: groupId=''{groupId}''' required: true + style: simple schema: type: string nullable: true @@ -5747,6 +5774,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -5756,6 +5784,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -5790,6 +5819,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5819,6 +5849,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5848,6 +5879,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -5879,6 +5911,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5908,6 +5941,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5937,6 +5971,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5966,6 +6001,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -5995,6 +6031,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6090,6 +6127,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6121,6 +6159,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -6154,6 +6193,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6185,6 +6225,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6216,6 +6257,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -6249,6 +6291,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6280,6 +6323,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6311,6 +6355,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6342,6 +6387,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6373,6 +6419,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6404,6 +6451,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6433,6 +6481,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6462,6 +6511,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -6493,6 +6543,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6522,6 +6573,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6551,6 +6603,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -6582,6 +6635,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6611,6 +6665,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6640,6 +6695,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6669,6 +6725,7 @@ paths: in: path description: 'Usage: printerId=''{printerId}''' required: true + style: simple schema: type: string nullable: true @@ -6676,6 +6733,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -6685,6 +6743,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -6719,6 +6778,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6750,6 +6810,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6779,6 +6840,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6808,6 +6870,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6837,6 +6900,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -6868,6 +6932,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6897,6 +6962,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -6928,6 +6994,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6957,6 +7024,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -6986,6 +7054,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7015,6 +7084,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7044,6 +7114,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7073,6 +7144,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7102,6 +7174,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7131,6 +7204,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -7162,6 +7236,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7191,6 +7266,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7220,6 +7296,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7249,6 +7326,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -7280,6 +7358,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7309,6 +7388,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7338,6 +7418,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7367,6 +7448,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7396,6 +7478,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7425,6 +7508,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7454,6 +7538,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7483,6 +7568,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7512,6 +7598,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7541,6 +7628,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7570,6 +7658,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7599,6 +7688,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7628,6 +7718,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7657,6 +7748,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7686,6 +7778,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -7717,6 +7810,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7746,6 +7840,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7775,6 +7870,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -7806,6 +7902,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7835,6 +7932,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7864,6 +7962,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7893,6 +7992,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7922,6 +8022,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7951,6 +8052,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -7980,6 +8082,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8009,6 +8112,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8038,6 +8142,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8067,6 +8172,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -8098,6 +8204,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8127,6 +8234,7 @@ paths: in: path description: 'Usage: userId=''{userId}''' required: true + style: simple schema: type: string nullable: true @@ -8134,6 +8242,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -8143,6 +8252,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string @@ -8177,6 +8287,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8206,6 +8317,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8235,6 +8347,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -8266,6 +8379,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8295,6 +8409,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8324,6 +8439,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8353,6 +8469,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -8384,6 +8501,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8413,6 +8531,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8442,6 +8561,7 @@ paths: in: path description: 'Usage: date={date}' required: true + style: simple schema: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' type: string @@ -8473,6 +8593,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8502,6 +8623,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string responses: @@ -8525,12 +8647,14 @@ paths: tags: - print.Functions summary: Invoke function managedDeviceEnrollmentAbandonmentDetails + description: Metadata for Enrollment abandonment details report operationId: print.reports_managedDeviceEnrollmentAbandonmentDetails parameters: - name: skip in: path description: 'Usage: skip={skip}' required: true + style: simple schema: maximum: 2147483647 minimum: -2147483648 @@ -8541,6 +8665,7 @@ paths: in: path description: 'Usage: top={top}' required: true + style: simple schema: maximum: 2147483647 minimum: -2147483648 @@ -8551,6 +8676,7 @@ paths: in: path description: 'Usage: filter=''{filter}''' required: true + style: simple schema: type: string nullable: true @@ -8558,6 +8684,7 @@ paths: in: path description: 'Usage: skipToken=''{skipToken}''' required: true + style: simple schema: type: string nullable: true @@ -8576,12 +8703,14 @@ paths: tags: - print.Functions summary: Invoke function managedDeviceEnrollmentAbandonmentSummary + description: Metadata for Enrollment abandonment summary report operationId: print.reports_managedDeviceEnrollmentAbandonmentSummary parameters: - name: skip in: path description: 'Usage: skip={skip}' required: true + style: simple schema: maximum: 2147483647 minimum: -2147483648 @@ -8592,6 +8721,7 @@ paths: in: path description: 'Usage: top={top}' required: true + style: simple schema: maximum: 2147483647 minimum: -2147483648 @@ -8602,6 +8732,7 @@ paths: in: path description: 'Usage: filter=''{filter}''' required: true + style: simple schema: type: string nullable: true @@ -8609,6 +8740,7 @@ paths: in: path description: 'Usage: skipToken=''{skipToken}''' required: true + style: simple schema: type: string nullable: true @@ -8649,6 +8781,7 @@ paths: in: path description: 'Usage: skip={skip}' required: true + style: simple schema: maximum: 2147483647 minimum: -2147483648 @@ -8659,6 +8792,7 @@ paths: in: path description: 'Usage: top={top}' required: true + style: simple schema: maximum: 2147483647 minimum: -2147483648 @@ -8669,6 +8803,7 @@ paths: in: path description: 'Usage: filter=''{filter}''' required: true + style: simple schema: type: string nullable: true @@ -8676,6 +8811,7 @@ paths: in: path description: 'Usage: skipToken=''{skipToken}''' required: true + style: simple schema: type: string nullable: true @@ -8694,6 +8830,7 @@ paths: tags: - print.Functions summary: Invoke function managedDeviceEnrollmentFailureTrends + description: Metadata for the enrollment failure trends report operationId: print.reports_managedDeviceEnrollmentFailureTrends responses: '200': @@ -8732,6 +8869,7 @@ paths: in: path description: 'Usage: period=''{period}''' required: true + style: simple schema: type: string nullable: true @@ -8851,6 +8989,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -8903,6 +9042,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -8929,12 +9069,14 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9049,6 +9191,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -9101,6 +9244,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -9127,12 +9271,14 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9247,6 +9393,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -9299,6 +9446,7 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter @@ -9325,12 +9473,14 @@ paths: in: path description: 'key: id of printUsageByPrinter' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByPrinter - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9445,6 +9595,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -9497,6 +9648,7 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser @@ -9523,12 +9675,14 @@ paths: in: path description: 'key: id of printUsageByUser' required: true + style: simple schema: type: string x-ms-docs-key-type: printUsageByUser - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9542,6 +9696,7 @@ paths: tags: - print.reportRoot summary: Get security from print + description: Provides the ability to launch a realistic simulated phishing attack that organizations can learn from. operationId: print.reports_GetSecurity parameters: - name: $select @@ -9612,6 +9767,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9697,6 +9853,7 @@ paths: tags: - print.reportRoot summary: Get userCredentialUsageDetails from print + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: print.reports_ListUserCredentialUsageDetails parameters: - $ref: '#/components/parameters/top' @@ -9798,12 +9955,14 @@ paths: tags: - print.reportRoot summary: Get userCredentialUsageDetails from print + description: Represents the self-service password reset (SSPR) usage for a given tenant. operationId: print.reports_GetUserCredentialUsageDetails parameters: - name: userCredentialUsageDetails-id in: path description: 'key: id of userCredentialUsageDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userCredentialUsageDetails @@ -9858,6 +10017,7 @@ paths: in: path description: 'key: id of userCredentialUsageDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userCredentialUsageDetails @@ -9884,12 +10044,14 @@ paths: in: path description: 'key: id of userCredentialUsageDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: userCredentialUsageDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9903,6 +10065,7 @@ paths: tags: - print.printService summary: Get services from print + description: The list of available Universal Print service endpoints. operationId: print_ListServices parameters: - $ref: '#/components/parameters/top' @@ -9985,12 +10148,14 @@ paths: tags: - print.printService summary: Get services from print + description: The list of available Universal Print service endpoints. operationId: print_GetServices parameters: - name: printService-id in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10045,6 +10210,7 @@ paths: in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10071,12 +10237,14 @@ paths: in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10090,12 +10258,14 @@ paths: tags: - print.printService summary: Get endpoints from print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_ListEndpoints parameters: - name: printService-id in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10166,6 +10336,7 @@ paths: in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10191,12 +10362,14 @@ paths: tags: - print.printService summary: Get endpoints from print + description: Endpoints that can be used to access the service. Read-only. Nullable. operationId: print.services_GetEndpoints parameters: - name: printService-id in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10204,6 +10377,7 @@ paths: in: path description: 'key: id of printServiceEndpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: printServiceEndpoint @@ -10253,6 +10427,7 @@ paths: in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10260,6 +10435,7 @@ paths: in: path description: 'key: id of printServiceEndpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: printServiceEndpoint @@ -10286,6 +10462,7 @@ paths: in: path description: 'key: id of printService' required: true + style: simple schema: type: string x-ms-docs-key-type: printService @@ -10293,12 +10470,14 @@ paths: in: path description: 'key: id of printServiceEndpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: printServiceEndpoint - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10312,6 +10491,7 @@ paths: tags: - print.printerShare summary: Get shares from print + description: The list of printer shares registered in the tenant. operationId: print_ListShares parameters: - $ref: '#/components/parameters/top' @@ -10436,12 +10616,14 @@ paths: tags: - print.printerShare summary: Get shares from print + description: The list of printer shares registered in the tenant. operationId: print_GetShares parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -10526,6 +10708,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -10552,12 +10735,14 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10571,12 +10756,14 @@ paths: tags: - print.printerShare summary: Get allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.shares_ListAllowedGroups parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -10851,6 +11038,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -10858,17 +11046,21 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -10882,12 +11074,14 @@ paths: tags: - print.printerShare summary: Get ref of allowedGroups from print + description: The groups whose users have access to print using the printer. operationId: print.shares_ListAllowedGroupsGraphBPreRef parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -11030,18 +11224,12 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -11053,12 +11241,14 @@ paths: tags: - print.printerShare summary: Get allowedUsers from print + description: The users who have access to print using the printer. operationId: print.shares_ListAllowedUsers parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -11119,6 +11309,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -11271,6 +11463,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -11494,6 +11687,7 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -11501,17 +11695,21 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -11525,12 +11723,14 @@ paths: tags: - print.printerShare summary: Get ref of allowedUsers from print + description: The users who have access to print using the printer. operationId: print.shares_ListAllowedUsersGraphBPreRef parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -11591,6 +11791,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -11731,18 +11933,12 @@ paths: in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -11754,12 +11950,14 @@ paths: tags: - print.printerShare summary: Get printer from print + description: The printer that this printer share is related to. operationId: print.shares_GetPrinter parameters: - name: printerShare-id in: path description: 'key: id of printerShare' required: true + style: simple schema: type: string x-ms-docs-key-type: printerShare @@ -11941,6 +12139,7 @@ paths: in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -11997,6 +12196,7 @@ paths: in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12023,12 +12223,14 @@ paths: in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12042,12 +12244,14 @@ paths: tags: - print.printTaskDefinition summary: Get tasks from print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_ListTasks parameters: - name: printTaskDefinition-id in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12122,6 +12326,7 @@ paths: in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12147,12 +12352,14 @@ paths: tags: - print.printTaskDefinition summary: Get tasks from print + description: A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. operationId: print.taskDefinitions_GetTasks parameters: - name: printTaskDefinition-id in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12160,6 +12367,7 @@ paths: in: path description: 'key: id of printTask' required: true + style: simple schema: type: string x-ms-docs-key-type: printTask @@ -12224,6 +12432,7 @@ paths: in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12231,6 +12440,7 @@ paths: in: path description: 'key: id of printTask' required: true + style: simple schema: type: string x-ms-docs-key-type: printTask @@ -12257,6 +12467,7 @@ paths: in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12264,12 +12475,14 @@ paths: in: path description: 'key: id of printTask' required: true + style: simple schema: type: string x-ms-docs-key-type: printTask - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12283,12 +12496,14 @@ paths: tags: - print.printTaskDefinition summary: Get definition from print + description: The printTaskDefinition that was used to create this task. Read-only. operationId: print.taskDefinitions.tasks_GetDefinition parameters: - name: printTaskDefinition-id in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12296,6 +12511,7 @@ paths: in: path description: 'key: id of printTask' required: true + style: simple schema: type: string x-ms-docs-key-type: printTask @@ -12348,12 +12564,14 @@ paths: tags: - print.printTaskDefinition summary: Get trigger from print + description: The printTaskTrigger that triggered this task's execution. Read-only. operationId: print.taskDefinitions.tasks_GetTrigger parameters: - name: printTaskDefinition-id in: path description: 'key: id of printTaskDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: printTaskDefinition @@ -12361,6 +12579,7 @@ paths: in: path description: 'key: id of printTask' required: true + style: simple schema: type: string x-ms-docs-key-type: printTask @@ -12424,7 +12643,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printOperation' - description: The list of print long running operations. printers: type: array items: @@ -12450,7 +12668,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printTaskDefinition' - description: List of abstract definition for a task that can be triggered when various events occur within Universal Print. additionalProperties: type: object microsoft.graph.printConnector: @@ -13186,70 +13403,6 @@ components: nullable: true additionalProperties: type: object - microsoft.graph.azureADFeatureUsage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: azureADFeatureUsage - type: object - properties: - featureName: - type: string - snapshotDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - usage: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.azureADLicenseUsage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: azureADLicenseUsage - type: object - properties: - licenseInfoDetails: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.licenseInfoDetail' - snapshotDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - additionalProperties: - type: object - microsoft.graph.azureADUserFeatureUsage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: azureADUserFeatureUsage - type: object - properties: - featureUsageDetails: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.featureUsageDetail' - lastUpdatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - licenseAssigned: - $ref: '#/components/schemas/microsoft.graph.azureADLicenseType' - licenseRecommended: - $ref: '#/components/schemas/microsoft.graph.azureADLicenseType' - userDisplayName: - type: string - nullable: true - userId: - type: string - userPrincipalName: - type: string - nullable: true - additionalProperties: - type: object microsoft.graph.credentialUsageSummary: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -14164,21 +14317,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -14189,7 +14338,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printColorMode: @@ -14784,6 +14932,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -15080,7 +15234,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -15272,7 +15425,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -15471,65 +15623,6 @@ components: $ref: '#/components/schemas/microsoft.graph.trainingStatus' additionalProperties: type: object - microsoft.graph.licenseInfoDetail: - title: licenseInfoDetail - type: object - properties: - licenseType: - $ref: '#/components/schemas/microsoft.graph.azureADLicenseType' - totalAssignedCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - totalLicenseCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - totalUsageCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.featureUsageDetail: - title: featureUsageDetail - type: object - properties: - featureName: - type: string - nullable: true - lastConfiguredDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - lastUsedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - licenseAssigned: - $ref: '#/components/schemas/microsoft.graph.azureADLicenseType' - licenseRequired: - $ref: '#/components/schemas/microsoft.graph.azureADLicenseType' - additionalProperties: - type: object - microsoft.graph.azureADLicenseType: - title: azureADLicenseType - enum: - - none - - free - - basic - - premiumP1 - - premiumP2 - - unknownFutureValue - type: string microsoft.graph.usageAuthMethod: title: usageAuthMethod enum: @@ -15624,6 +15717,13 @@ components: $ref: '#/components/schemas/microsoft.graph.printTaskProcessingState' additionalProperties: type: object + ReferenceCreate: + type: object + properties: + '@odata.id': + type: string + additionalProperties: + type: object microsoft.graph.ODataErrors.ODataError: required: - error @@ -16914,6 +17014,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -16979,6 +17081,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -17247,6 +17350,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -17516,6 +17621,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -17555,7 +17662,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -18254,7 +18360,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -19061,7 +19167,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -19218,50 +19323,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -19269,7 +19364,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -19835,11 +19929,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -21008,10 +21102,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -21301,7 +21393,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -21562,12 +21653,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -22108,12 +22197,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -22499,6 +22586,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -22735,14 +22867,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -23215,6 +23358,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -23816,7 +23979,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -24296,6 +24459,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -25461,6 +25628,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -26679,43 +26852,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -27222,12 +27388,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -28326,7 +28492,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -28568,7 +28733,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -29388,14 +29552,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -29463,7 +29625,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -29486,7 +29647,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -29589,7 +29749,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -29681,6 +29840,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.operationStatus: title: operationStatus enum: @@ -29951,12 +30118,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -30173,11 +30343,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -31421,6 +31591,59 @@ components: additionalProperties: type: object description: The security baseline compliance state of a setting for a device + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.windowsDeviceHealthState: title: windowsDeviceHealthState enum: @@ -33367,7 +33590,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -34056,7 +34278,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -35206,7 +35428,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -36618,6 +36839,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -36626,6 +36849,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -36633,20 +36858,34 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean + requestBodies: + refPostBody: + description: New navigation property ref value + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceCreate' + required: true securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/Devices.CorporateManagement.yml b/openApiDocs/beta/Devices.CorporateManagement.yml index 9ac7b399625..f35c0f09faa 100644 --- a/openApiDocs/beta/Devices.CorporateManagement.yml +++ b/openApiDocs/beta/Devices.CorporateManagement.yml @@ -182,6 +182,7 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_ListAndroidManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -547,12 +548,14 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement + description: Android managed app policies. operationId: deviceAppManagement_GetAndroidManagedAppProtections parameters: - name: androidManagedAppProtection-id in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -712,6 +715,7 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -738,12 +742,14 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -757,12 +763,14 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_ListApps parameters: - name: androidManagedAppProtection-id in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -833,6 +841,7 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -858,12 +867,14 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections_GetApps parameters: - name: androidManagedAppProtection-id in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -871,6 +882,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -920,6 +932,7 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -927,6 +940,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -953,6 +967,7 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -960,12 +975,14 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -979,12 +996,14 @@ paths: tags: - deviceAppManagement.androidManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections_GetDeploymentSummary parameters: - name: androidManagedAppProtection-id in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -1037,6 +1056,7 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection @@ -1063,12 +1083,14 @@ paths: in: path description: 'key: id of androidManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: androidManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1121,6 +1143,7 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_ListDefaultManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -1511,12 +1534,14 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement + description: Default managed app policies. operationId: deviceAppManagement_GetDefaultManagedAppProtections parameters: - name: defaultManagedAppProtection-id in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1679,6 +1704,7 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1705,12 +1731,14 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1724,12 +1752,14 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_ListApps parameters: - name: defaultManagedAppProtection-id in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1800,6 +1830,7 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1825,12 +1856,14 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections_GetApps parameters: - name: defaultManagedAppProtection-id in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1838,6 +1871,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -1887,6 +1921,7 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1894,6 +1929,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -1920,6 +1956,7 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -1927,12 +1964,14 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1946,12 +1985,14 @@ paths: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections_GetDeploymentSummary parameters: - name: defaultManagedAppProtection-id in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -2004,6 +2045,7 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection @@ -2030,12 +2072,14 @@ paths: in: path description: 'key: id of defaultManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: defaultManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2049,6 +2093,7 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Get deviceAppManagementTasks from deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_ListDeviceAppManagementTasks parameters: - $ref: '#/components/parameters/top' @@ -2159,12 +2204,14 @@ paths: tags: - deviceAppManagement.deviceAppManagementTask summary: Get deviceAppManagementTasks from deviceAppManagement + description: Device app management tasks. operationId: deviceAppManagement_GetDeviceAppManagementTasks parameters: - name: deviceAppManagementTask-id in: path description: 'key: id of deviceAppManagementTask' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAppManagementTask @@ -2225,6 +2272,7 @@ paths: in: path description: 'key: id of deviceAppManagementTask' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAppManagementTask @@ -2251,12 +2299,14 @@ paths: in: path description: 'key: id of deviceAppManagementTask' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAppManagementTask - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2270,12 +2320,14 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action updateStatus + description: Set the task's status and attach a note. operationId: deviceAppManagement.deviceAppManagementTasks_updateStatus parameters: - name: deviceAppManagementTask-id in: path description: 'key: id of deviceAppManagementTask' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceAppManagementTask @@ -2305,6 +2357,7 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get enterpriseCodeSigningCertificates from deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_ListEnterpriseCodeSigningCertificates parameters: - $ref: '#/components/parameters/top' @@ -2409,12 +2462,14 @@ paths: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get enterpriseCodeSigningCertificates from deviceAppManagement + description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement_GetEnterpriseCodeSigningCertificates parameters: - name: enterpriseCodeSigningCertificate-id in: path description: 'key: id of enterpriseCodeSigningCertificate' required: true + style: simple schema: type: string x-ms-docs-key-type: enterpriseCodeSigningCertificate @@ -2470,6 +2525,7 @@ paths: in: path description: 'key: id of enterpriseCodeSigningCertificate' required: true + style: simple schema: type: string x-ms-docs-key-type: enterpriseCodeSigningCertificate @@ -2496,12 +2552,14 @@ paths: in: path description: 'key: id of enterpriseCodeSigningCertificate' required: true + style: simple schema: type: string x-ms-docs-key-type: enterpriseCodeSigningCertificate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2515,6 +2573,7 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get iosLobAppProvisioningConfigurations from deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_ListIosLobAppProvisioningConfigurations parameters: - $ref: '#/components/parameters/top' @@ -2630,12 +2689,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get iosLobAppProvisioningConfigurations from deviceAppManagement + description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement_GetIosLobAppProvisioningConfigurations parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2719,6 +2780,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2745,12 +2807,14 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2764,12 +2828,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get assignments from deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListAssignments parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2837,6 +2903,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2862,12 +2929,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get assignments from deviceAppManagement + description: The associated group assignments for IosLobAppProvisioningConfiguration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetAssignments parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2875,6 +2944,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfigurationAssignment @@ -2923,6 +2993,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2930,6 +3001,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfigurationAssignment @@ -2956,6 +3028,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -2963,12 +3036,14 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2982,12 +3057,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get deviceStatuses from deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3076,6 +3153,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3101,12 +3179,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get deviceStatuses from deviceAppManagement + description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetDeviceStatuses parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3114,6 +3194,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus @@ -3169,6 +3250,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3176,6 +3258,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus @@ -3202,6 +3285,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3209,12 +3293,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3228,12 +3314,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get groupAssignments from deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3301,6 +3389,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3326,12 +3415,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get groupAssignments from deviceAppManagement + description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetGroupAssignments parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3339,6 +3430,7 @@ paths: in: path description: 'key: id of mobileAppProvisioningConfigGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppProvisioningConfigGroupAssignment @@ -3387,6 +3479,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3394,6 +3487,7 @@ paths: in: path description: 'key: id of mobileAppProvisioningConfigGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppProvisioningConfigGroupAssignment @@ -3420,6 +3514,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3427,12 +3522,14 @@ paths: in: path description: 'key: id of mobileAppProvisioningConfigGroupAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppProvisioningConfigGroupAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3452,6 +3549,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3484,12 +3582,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get userStatuses from deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_ListUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3569,6 +3669,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3594,12 +3695,14 @@ paths: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get userStatuses from deviceAppManagement + description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations_GetUserStatuses parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3607,6 +3710,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus @@ -3659,6 +3763,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3666,6 +3771,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus @@ -3692,6 +3798,7 @@ paths: in: path description: 'key: id of iosLobAppProvisioningConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration @@ -3699,12 +3806,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3757,6 +3866,7 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_ListIosManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -4053,12 +4163,14 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement + description: iOS managed app policies. operationId: deviceAppManagement_GetIosManagedAppProtections parameters: - name: iosManagedAppProtection-id in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4195,6 +4307,7 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4221,12 +4334,14 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4240,12 +4355,14 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_ListApps parameters: - name: iosManagedAppProtection-id in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4316,6 +4433,7 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4341,12 +4459,14 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections_GetApps parameters: - name: iosManagedAppProtection-id in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4354,6 +4474,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -4403,6 +4524,7 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4410,6 +4532,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -4436,6 +4559,7 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4443,12 +4567,14 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4462,12 +4588,14 @@ paths: tags: - deviceAppManagement.iosManagedAppProtection summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections_GetDeploymentSummary parameters: - name: iosManagedAppProtection-id in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4520,6 +4648,7 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection @@ -4546,12 +4675,14 @@ paths: in: path description: 'key: id of iosManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: iosManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4604,6 +4735,7 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_ListManagedAppPolicies parameters: - $ref: '#/components/parameters/top' @@ -4702,12 +4834,14 @@ paths: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement + description: Managed app policies. operationId: deviceAppManagement_GetManagedAppPolicies parameters: - name: managedAppPolicy-id in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -4764,6 +4898,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -4790,12 +4925,14 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4815,6 +4952,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -4843,6 +4981,7 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_ListManagedAppRegistrations parameters: - $ref: '#/components/parameters/top' @@ -4977,12 +5116,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement + description: The managed app registrations. operationId: deviceAppManagement_GetManagedAppRegistrations parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5065,6 +5206,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5091,12 +5233,14 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5110,12 +5254,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_ListAppliedPolicies parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5198,6 +5344,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5223,12 +5370,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations_GetAppliedPolicies parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5236,6 +5385,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -5292,6 +5442,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5299,6 +5450,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -5325,6 +5477,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5332,12 +5485,14 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5357,6 +5512,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5364,6 +5520,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -5392,12 +5549,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_ListIntendedPolicies parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5480,6 +5639,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5505,12 +5665,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement + description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations_GetIntendedPolicies parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5518,6 +5680,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -5574,6 +5737,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5581,6 +5745,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -5607,6 +5772,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5614,12 +5780,14 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5639,6 +5807,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5646,6 +5815,7 @@ paths: in: path description: 'key: id of managedAppPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppPolicy @@ -5674,12 +5844,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_ListOperations parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5756,6 +5928,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5781,12 +5954,14 @@ paths: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement + description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations_GetOperations parameters: - name: managedAppRegistration-id in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5794,6 +5969,7 @@ paths: in: path description: 'key: id of managedAppOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppOperation @@ -5845,6 +6021,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5852,6 +6029,7 @@ paths: in: path description: 'key: id of managedAppOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppOperation @@ -5878,6 +6056,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -5885,12 +6064,14 @@ paths: in: path description: 'key: id of managedAppOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5929,6 +6110,7 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_ListManagedAppStatuses parameters: - $ref: '#/components/parameters/top' @@ -6015,12 +6197,14 @@ paths: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement + description: The managed app statuses. operationId: deviceAppManagement_GetManagedAppStatuses parameters: - name: managedAppStatus-id in: path description: 'key: id of managedAppStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppStatus @@ -6070,6 +6254,7 @@ paths: in: path description: 'key: id of managedAppStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppStatus @@ -6096,12 +6281,14 @@ paths: in: path description: 'key: id of managedAppStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6115,6 +6302,7 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Get managedEBookCategories from deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_ListManagedEBookCategories parameters: - $ref: '#/components/parameters/top' @@ -6201,12 +6389,14 @@ paths: tags: - deviceAppManagement.managedEBookCategory summary: Get managedEBookCategories from deviceAppManagement + description: The mobile eBook categories. operationId: deviceAppManagement_GetManagedEBookCategories parameters: - name: managedEBookCategory-id in: path description: 'key: id of managedEBookCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookCategory @@ -6256,6 +6446,7 @@ paths: in: path description: 'key: id of managedEBookCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookCategory @@ -6282,12 +6473,14 @@ paths: in: path description: 'key: id of managedEBookCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6301,6 +6494,7 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_ListManagedEBooks parameters: - $ref: '#/components/parameters/top' @@ -6418,12 +6612,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement + description: The Managed eBook. operationId: deviceAppManagement_GetManagedEBooks parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6513,6 +6709,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6539,12 +6736,14 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6558,12 +6757,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_ListAssignments parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6634,6 +6835,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6659,12 +6861,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement + description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks_GetAssignments parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6672,6 +6876,7 @@ paths: in: path description: 'key: id of managedEBookAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookAssignment @@ -6721,6 +6926,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6728,6 +6934,7 @@ paths: in: path description: 'key: id of managedEBookAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookAssignment @@ -6754,6 +6961,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6761,12 +6969,14 @@ paths: in: path description: 'key: id of managedEBookAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6780,12 +6990,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get categories from deviceAppManagement + description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks_ListCategories parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6851,12 +7063,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get categories from deviceAppManagement + description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks_GetCategories parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -6864,6 +7078,7 @@ paths: in: path description: 'key: id of managedEBookCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBookCategory @@ -6908,12 +7123,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_ListDeviceStates parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7002,6 +7219,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7027,12 +7245,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_GetDeviceStates parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7040,6 +7260,7 @@ paths: in: path description: 'key: id of deviceInstallState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceInstallState @@ -7095,6 +7316,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7102,6 +7324,7 @@ paths: in: path description: 'key: id of deviceInstallState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceInstallState @@ -7128,6 +7351,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7135,12 +7359,14 @@ paths: in: path description: 'key: id of deviceInstallState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceInstallState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7154,12 +7380,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get installSummary from deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks_GetInstallSummary parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7213,6 +7441,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7239,12 +7468,14 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7264,6 +7495,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7292,12 +7524,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_ListUserStateSummary parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7376,6 +7610,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7401,12 +7636,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement + description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks_GetUserStateSummary parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7414,6 +7651,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7473,6 +7711,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7480,6 +7719,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7506,6 +7746,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7513,12 +7754,14 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7532,12 +7775,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_ListDeviceStates parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7545,6 +7790,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7633,6 +7879,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7640,6 +7887,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7665,12 +7913,14 @@ paths: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement + description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary_GetDeviceStates parameters: - name: managedEBook-id in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7678,6 +7928,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7685,6 +7936,7 @@ paths: in: path description: 'key: id of deviceInstallState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceInstallState @@ -7740,6 +7992,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7747,6 +8000,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7754,6 +8008,7 @@ paths: in: path description: 'key: id of deviceInstallState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceInstallState @@ -7780,6 +8035,7 @@ paths: in: path description: 'key: id of managedEBook' required: true + style: simple schema: type: string x-ms-docs-key-type: managedEBook @@ -7787,6 +8043,7 @@ paths: in: path description: 'key: id of userInstallStateSummary' required: true + style: simple schema: type: string x-ms-docs-key-type: userInstallStateSummary @@ -7794,12 +8051,14 @@ paths: in: path description: 'key: id of deviceInstallState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceInstallState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7813,6 +8072,7 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_ListMdmWindowsInformationProtectionPolicies parameters: - $ref: '#/components/parameters/top' @@ -7983,12 +8243,14 @@ paths: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement_GetMdmWindowsInformationProtectionPolicies parameters: - name: mdmWindowsInformationProtectionPolicy-id in: path description: 'key: id of mdmWindowsInformationProtectionPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy @@ -8083,6 +8345,7 @@ paths: in: path description: 'key: id of mdmWindowsInformationProtectionPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy @@ -8109,12 +8372,14 @@ paths: in: path description: 'key: id of mdmWindowsInformationProtectionPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8167,6 +8432,7 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action syncMicrosoftStoreForBusinessApps + description: Syncs Intune account with Microsoft Store For Business operationId: deviceAppManagement_syncMicrosoftStoreGraphFPreBusinessApps responses: '204': @@ -8179,6 +8445,7 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_ListMobileAppCategories parameters: - $ref: '#/components/parameters/top' @@ -8265,12 +8532,14 @@ paths: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement + description: The mobile app categories. operationId: deviceAppManagement_GetMobileAppCategories parameters: - name: mobileAppCategory-id in: path description: 'key: id of mobileAppCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppCategory @@ -8320,6 +8589,7 @@ paths: in: path description: 'key: id of mobileAppCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppCategory @@ -8346,12 +8616,14 @@ paths: in: path description: 'key: id of mobileAppCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8365,6 +8637,7 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_ListMobileAppConfigurations parameters: - $ref: '#/components/parameters/top' @@ -8476,12 +8749,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement + description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement_GetMobileAppConfigurations parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8569,6 +8844,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8595,12 +8871,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8614,12 +8892,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_ListAssignments parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8687,6 +8967,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8712,12 +8993,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement + description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations_GetAssignments parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8725,6 +9008,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationAssignment @@ -8773,6 +9057,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8780,6 +9065,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationAssignment @@ -8806,6 +9092,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8813,12 +9100,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8832,12 +9121,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_ListDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8926,6 +9217,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8951,12 +9243,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations_GetDeviceStatuses parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -8964,6 +9258,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus @@ -9019,6 +9314,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9026,6 +9322,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus @@ -9052,6 +9349,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9059,12 +9357,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationDeviceStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9078,12 +9378,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatusSummary from deviceAppManagement + description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations_GetDeviceStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9140,6 +9442,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9166,12 +9469,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9191,6 +9496,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9219,12 +9525,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_ListUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9304,6 +9612,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9329,12 +9638,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement + description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations_GetUserStatuses parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9342,6 +9653,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus @@ -9394,6 +9706,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9401,6 +9714,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus @@ -9427,6 +9741,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9434,12 +9749,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationUserStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9453,12 +9770,14 @@ paths: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatusSummary from deviceAppManagement + description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations_GetUserStatusSummary parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9514,6 +9833,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration @@ -9540,12 +9860,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9559,6 +9881,7 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_ListMobileApps parameters: - $ref: '#/components/parameters/top' @@ -9708,12 +10031,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement + description: The mobile apps. operationId: deviceAppManagement_GetMobileApps parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -9823,6 +10148,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -9849,12 +10175,14 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9868,12 +10196,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_ListAssignments parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -9953,6 +10283,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -9978,12 +10309,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement + description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps_GetAssignments parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -9991,6 +10324,7 @@ paths: in: path description: 'key: id of mobileAppAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppAssignment @@ -10043,6 +10377,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10050,6 +10385,7 @@ paths: in: path description: 'key: id of mobileAppAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppAssignment @@ -10076,6 +10412,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10083,12 +10420,14 @@ paths: in: path description: 'key: id of mobileAppAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10102,12 +10441,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_ListCategories parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10173,12 +10514,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement + description: The list of categories for this app. operationId: deviceAppManagement.mobileApps_GetCategories parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10186,6 +10529,7 @@ paths: in: path description: 'key: id of mobileAppCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppCategory @@ -10230,12 +10574,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_ListDeviceStatuses parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10338,6 +10684,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10363,12 +10710,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_GetDeviceStatuses parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10376,6 +10725,7 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus @@ -10443,6 +10793,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10450,6 +10801,7 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus @@ -10476,6 +10828,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10483,12 +10836,14 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10502,12 +10857,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.deviceStatuses_GetApp parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10515,6 +10872,7 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus @@ -10619,12 +10977,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get installSummary from deviceAppManagement + description: Mobile App Install Summary. operationId: deviceAppManagement.mobileApps_GetInstallSummary parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10682,6 +11042,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10708,12 +11069,14 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10733,6 +11096,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10767,6 +11131,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10774,6 +11139,7 @@ paths: in: path description: 'Usage: userPrincipalName=''{userPrincipalName}''' required: true + style: simple schema: type: string nullable: true @@ -10781,6 +11147,7 @@ paths: in: path description: 'Usage: deviceId=''{deviceId}''' required: true + style: simple schema: type: string nullable: true @@ -10813,6 +11180,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10841,12 +11209,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_ListRelationships parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10926,6 +11296,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10951,12 +11322,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement + description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps_GetRelationships parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -10964,6 +11337,7 @@ paths: in: path description: 'key: id of mobileAppRelationship' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppRelationship @@ -11016,6 +11390,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11023,6 +11398,7 @@ paths: in: path description: 'key: id of mobileAppRelationship' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppRelationship @@ -11049,6 +11425,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11056,12 +11433,14 @@ paths: in: path description: 'key: id of mobileAppRelationship' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppRelationship - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11075,12 +11454,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get userStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_ListUserStatuses parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11164,6 +11545,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11189,12 +11571,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get userStatuses from deviceAppManagement + description: The list of installation states for this mobile app. operationId: deviceAppManagement.mobileApps_GetUserStatuses parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11202,6 +11586,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11269,6 +11654,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11276,6 +11662,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11302,6 +11689,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11309,12 +11697,14 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11328,12 +11718,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses_GetApp parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11341,6 +11733,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11445,12 +11838,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_ListDeviceStatuses parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11458,6 +11853,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11560,6 +11956,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11567,6 +11964,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11592,12 +11990,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get deviceStatuses from deviceAppManagement + description: The install state of the app on devices. operationId: deviceAppManagement.mobileApps.userStatuses_GetDeviceStatuses parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11605,6 +12005,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11612,6 +12013,7 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus @@ -11680,6 +12082,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11687,6 +12090,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11694,6 +12098,7 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus @@ -11720,6 +12125,7 @@ paths: in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11727,6 +12133,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11734,12 +12141,14 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11753,12 +12162,14 @@ paths: tags: - deviceAppManagement.mobileApp summary: Get app from deviceAppManagement + description: The navigation link to the mobile app. operationId: deviceAppManagement.mobileApps.userStatuses.deviceStatuses_GetApp parameters: - name: mobileApp-id in: path description: 'key: id of mobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileApp @@ -11766,6 +12177,7 @@ paths: in: path description: 'key: id of userAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: userAppInstallStatus @@ -11773,6 +12185,7 @@ paths: in: path description: 'key: id of mobileAppInstallStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppInstallStatus @@ -11889,6 +12302,7 @@ paths: in: path description: 'Usage: status=''{status}''' required: true + style: simple schema: type: string nullable: true @@ -11919,6 +12333,7 @@ paths: in: path description: 'Usage: status=''{status}''' required: true + style: simple schema: type: string nullable: true @@ -11926,6 +12341,7 @@ paths: in: path description: 'Usage: count={count}' required: true + style: simple schema: type: integer format: int64 @@ -12026,6 +12442,7 @@ paths: tags: - deviceAppManagement.policySet summary: Get policySets from deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_ListPolicySets parameters: - $ref: '#/components/parameters/top' @@ -12134,12 +12551,14 @@ paths: tags: - deviceAppManagement.policySet summary: Get policySets from deviceAppManagement + description: The PolicySet of Policies and Applications operationId: deviceAppManagement_GetPolicySets parameters: - name: policySet-id in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12210,6 +12629,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12236,12 +12656,14 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12255,12 +12677,14 @@ paths: tags: - deviceAppManagement.policySet summary: Get assignments from deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_ListAssignments parameters: - name: policySet-id in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12331,6 +12755,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12356,12 +12781,14 @@ paths: tags: - deviceAppManagement.policySet summary: Get assignments from deviceAppManagement + description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets_GetAssignments parameters: - name: policySet-id in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12369,6 +12796,7 @@ paths: in: path description: 'key: id of policySetAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: policySetAssignment @@ -12418,6 +12846,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12425,6 +12854,7 @@ paths: in: path description: 'key: id of policySetAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: policySetAssignment @@ -12451,6 +12881,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12458,12 +12889,14 @@ paths: in: path description: 'key: id of policySetAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: policySetAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12477,12 +12910,14 @@ paths: tags: - deviceAppManagement.policySet summary: Get items from deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_ListItems parameters: - name: policySet-id in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12571,6 +13006,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12596,12 +13032,14 @@ paths: tags: - deviceAppManagement.policySet summary: Get items from deviceAppManagement + description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets_GetItems parameters: - name: policySet-id in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12609,6 +13047,7 @@ paths: in: path description: 'key: id of policySetItem' required: true + style: simple schema: type: string x-ms-docs-key-type: policySetItem @@ -12664,6 +13103,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12671,6 +13111,7 @@ paths: in: path description: 'key: id of policySetItem' required: true + style: simple schema: type: string x-ms-docs-key-type: policySetItem @@ -12697,6 +13138,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12704,12 +13146,14 @@ paths: in: path description: 'key: id of policySetItem' required: true + style: simple schema: type: string x-ms-docs-key-type: policySetItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12729,6 +13173,7 @@ paths: in: path description: 'key: id of policySet' required: true + style: simple schema: type: string x-ms-docs-key-type: policySet @@ -12809,6 +13254,7 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Get sideLoadingKeys from deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_ListSideLoadingKeys parameters: - $ref: '#/components/parameters/top' @@ -12904,12 +13350,14 @@ paths: tags: - deviceAppManagement.sideLoadingKey summary: Get sideLoadingKeys from deviceAppManagement + description: Side Loading Keys that are required for the Windows 8 and 8.1 Apps installation. operationId: deviceAppManagement_GetSideLoadingKeys parameters: - name: sideLoadingKey-id in: path description: 'key: id of sideLoadingKey' required: true + style: simple schema: type: string x-ms-docs-key-type: sideLoadingKey @@ -12962,6 +13410,7 @@ paths: in: path description: 'key: id of sideLoadingKey' required: true + style: simple schema: type: string x-ms-docs-key-type: sideLoadingKey @@ -12988,12 +13437,14 @@ paths: in: path description: 'key: id of sideLoadingKey' required: true + style: simple schema: type: string x-ms-docs-key-type: sideLoadingKey - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13007,6 +13458,7 @@ paths: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Get symantecCodeSigningCertificate from deviceAppManagement + description: The WinPhone Symantec Code Signing Certificate. operationId: deviceAppManagement_GetSymantecCodeSigningCertificate parameters: - name: $select @@ -13079,6 +13531,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13092,6 +13545,7 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_ListTargetedManagedAppConfigurations parameters: - $ref: '#/components/parameters/top' @@ -13208,12 +13662,14 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement + description: Targeted managed app configurations. operationId: deviceAppManagement_GetTargetedManagedAppConfigurations parameters: - name: targetedManagedAppConfiguration-id in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13294,6 +13750,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13320,12 +13777,14 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13339,12 +13798,14 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_ListApps parameters: - name: targetedManagedAppConfiguration-id in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13415,6 +13876,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13440,12 +13902,14 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetApps parameters: - name: targetedManagedAppConfiguration-id in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13453,6 +13917,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -13502,6 +13967,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13509,6 +13975,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -13535,6 +14002,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13542,12 +14010,14 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13561,12 +14031,14 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_ListAssignments parameters: - name: targetedManagedAppConfiguration-id in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13640,6 +14112,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13665,12 +14138,14 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetAssignments parameters: - name: targetedManagedAppConfiguration-id in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13678,6 +14153,7 @@ paths: in: path description: 'key: id of targetedManagedAppPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment @@ -13728,6 +14204,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13735,6 +14212,7 @@ paths: in: path description: 'key: id of targetedManagedAppPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment @@ -13761,6 +14239,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13768,12 +14247,14 @@ paths: in: path description: 'key: id of targetedManagedAppPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13787,12 +14268,14 @@ paths: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get deploymentSummary from deviceAppManagement + description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations_GetDeploymentSummary parameters: - name: targetedManagedAppConfiguration-id in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13845,6 +14328,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13871,12 +14355,14 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13896,6 +14382,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13930,6 +14417,7 @@ paths: in: path description: 'key: id of targetedManagedAppConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration @@ -13999,6 +14487,7 @@ paths: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_ListVppTokens parameters: - $ref: '#/components/parameters/top' @@ -14130,12 +14619,14 @@ paths: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement + description: List of Vpp tokens for this organization. operationId: deviceAppManagement_GetVppTokens parameters: - name: vppToken-id in: path description: 'key: id of vppToken' required: true + style: simple schema: type: string x-ms-docs-key-type: vppToken @@ -14205,6 +14696,7 @@ paths: in: path description: 'key: id of vppToken' required: true + style: simple schema: type: string x-ms-docs-key-type: vppToken @@ -14231,12 +14723,14 @@ paths: in: path description: 'key: id of vppToken' required: true + style: simple schema: type: string x-ms-docs-key-type: vppToken - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14250,12 +14744,14 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action revokeLicenses + description: Revoke licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens_revokeLicenses parameters: - name: vppToken-id in: path description: 'key: id of vppToken' required: true + style: simple schema: type: string x-ms-docs-key-type: vppToken @@ -14287,12 +14783,14 @@ paths: tags: - deviceAppManagement.Actions summary: Invoke action syncLicenses + description: Syncs licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens_syncLicenses parameters: - name: vppToken-id in: path description: 'key: id of vppToken' required: true + style: simple schema: type: string x-ms-docs-key-type: vppToken @@ -14317,6 +14815,7 @@ paths: in: path description: 'Usage: bundleId=''{bundleId}''' required: true + style: simple schema: type: string nullable: true @@ -14355,6 +14854,7 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get wdacSupplementalPolicies from deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_ListWdacSupplementalPolicies parameters: - $ref: '#/components/parameters/top' @@ -14465,12 +14965,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get wdacSupplementalPolicies from deviceAppManagement + description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement_GetWdacSupplementalPolicies parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14547,6 +15049,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14573,12 +15076,14 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14592,12 +15097,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get assignments from deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_ListAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14665,6 +15172,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14690,12 +15198,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get assignments from deviceAppManagement + description: The associated group assignments for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_GetAssignments parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14703,6 +15213,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyAssignment @@ -14751,6 +15262,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14758,6 +15270,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyAssignment @@ -14784,6 +15297,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14791,12 +15305,14 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14810,12 +15326,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deploySummary from deviceAppManagement + description: WindowsDefenderApplicationControl supplemental policy deployment summary. operationId: deviceAppManagement.wdacSupplementalPolicies_GetDeploySummary parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14865,6 +15383,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -14891,12 +15410,14 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14910,12 +15431,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deviceStatuses from deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_ListDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15009,6 +15532,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15034,12 +15558,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deviceStatuses from deviceAppManagement + description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies_GetDeviceStatuses parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15047,6 +15573,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus @@ -15111,6 +15638,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15118,6 +15646,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus @@ -15144,6 +15673,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15151,12 +15681,14 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15170,12 +15702,14 @@ paths: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get policy from deviceAppManagement + description: The navigation link to the WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses_GetPolicy parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15183,6 +15717,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus @@ -15261,6 +15796,7 @@ paths: in: path description: 'key: id of windowsDefenderApplicationControlSupplementalPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy @@ -15289,6 +15825,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_ListWindowsInformationProtectionDeviceRegistrations parameters: - $ref: '#/components/parameters/top' @@ -15387,12 +15924,14 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from deviceAppManagement + description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement_GetWindowsInformationProtectionDeviceRegistrations parameters: - name: windowsInformationProtectionDeviceRegistration-id in: path description: 'key: id of windowsInformationProtectionDeviceRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration @@ -15449,6 +15988,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionDeviceRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration @@ -15475,12 +16015,14 @@ paths: in: path description: 'key: id of windowsInformationProtectionDeviceRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15500,6 +16042,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionDeviceRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration @@ -15514,6 +16057,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_ListWindowsInformationProtectionPolicies parameters: - $ref: '#/components/parameters/top' @@ -15720,12 +16264,14 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement + description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement_GetWindowsInformationProtectionPolicies parameters: - name: windowsInformationProtectionPolicy-id in: path description: 'key: id of windowsInformationProtectionPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy @@ -15832,6 +16378,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy @@ -15858,12 +16405,14 @@ paths: in: path description: 'key: id of windowsInformationProtectionPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15877,6 +16426,7 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get windowsInformationProtectionWipeActions from deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_ListWindowsInformationProtectionWipeActions parameters: - $ref: '#/components/parameters/top' @@ -15975,12 +16525,14 @@ paths: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get windowsInformationProtectionWipeActions from deviceAppManagement + description: Windows information protection wipe actions. operationId: deviceAppManagement_GetWindowsInformationProtectionWipeActions parameters: - name: windowsInformationProtectionWipeAction-id in: path description: 'key: id of windowsInformationProtectionWipeAction' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionWipeAction @@ -16034,6 +16586,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionWipeAction' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionWipeAction @@ -16060,12 +16613,14 @@ paths: in: path description: 'key: id of windowsInformationProtectionWipeAction' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionWipeAction - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16079,6 +16634,7 @@ paths: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get windowsManagedAppProtections from deviceAppManagement + description: Windows managed app policies. operationId: deviceAppManagement_ListWindowsManagedAppProtections parameters: - $ref: '#/components/parameters/top' @@ -16247,12 +16803,14 @@ paths: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get windowsManagedAppProtections from deviceAppManagement + description: Windows managed app policies. operationId: deviceAppManagement_GetWindowsManagedAppProtections parameters: - name: windowsManagedAppProtection-id in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16345,6 +16903,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16371,12 +16930,14 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16390,12 +16951,14 @@ paths: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections_ListApps parameters: - name: windowsManagedAppProtection-id in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16466,6 +17029,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16491,12 +17055,14 @@ paths: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get apps from deviceAppManagement + description: List of apps to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections_GetApps parameters: - name: windowsManagedAppProtection-id in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16504,6 +17070,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -16553,6 +17120,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16560,6 +17128,7 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp @@ -16586,6 +17155,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16593,12 +17163,14 @@ paths: in: path description: 'key: id of managedMobileApp' required: true + style: simple schema: type: string x-ms-docs-key-type: managedMobileApp - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16612,12 +17184,14 @@ paths: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections_ListAssignments parameters: - name: windowsManagedAppProtection-id in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16691,6 +17265,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16716,12 +17291,14 @@ paths: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get assignments from deviceAppManagement + description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections_GetAssignments parameters: - name: windowsManagedAppProtection-id in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16729,6 +17306,7 @@ paths: in: path description: 'key: id of targetedManagedAppPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment @@ -16779,6 +17357,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16786,6 +17365,7 @@ paths: in: path description: 'key: id of targetedManagedAppPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment @@ -16812,6 +17392,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16819,12 +17400,14 @@ paths: in: path description: 'key: id of targetedManagedAppPolicyAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16844,6 +17427,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16878,6 +17462,7 @@ paths: in: path description: 'key: id of windowsManagedAppProtection' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsManagedAppProtection @@ -16906,6 +17491,7 @@ paths: tags: - deviceAppManagement.windowsManagementApp summary: Get windowsManagementApp from deviceAppManagement + description: Windows management app. operationId: deviceAppManagement_GetWindowsManagementApp parameters: - name: $select @@ -17020,6 +17606,7 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get clientConfigurations from officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_ListClientConfigurations parameters: - $ref: '#/components/parameters/top' @@ -17123,12 +17710,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get clientConfigurations from officeConfiguration + description: List of office Client configuration. operationId: officeConfiguration_GetClientConfigurations parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17192,6 +17781,7 @@ paths: in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17218,12 +17808,14 @@ paths: in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17237,12 +17829,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get assignments from officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_ListAssignments parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17310,6 +17904,7 @@ paths: in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17335,12 +17930,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get assignments from officeConfiguration + description: The list of group assignments for the policy. operationId: officeConfiguration.clientConfigurations_GetAssignments parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17348,6 +17945,7 @@ paths: in: path description: 'key: id of officeClientConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfigurationAssignment @@ -17396,6 +17994,7 @@ paths: in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17403,6 +18002,7 @@ paths: in: path description: 'key: id of officeClientConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfigurationAssignment @@ -17429,6 +18029,7 @@ paths: in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17436,12 +18037,14 @@ paths: in: path description: 'key: id of officeClientConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17461,6 +18064,7 @@ paths: in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17501,12 +18105,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get policyPayload for the navigation property clientConfigurations from officeConfiguration + description: 'Policy settings JSON string in binary format, these values cannot be changed by the user.' operationId: officeConfiguration_GetClientConfigurationsPolicyPayload parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17525,12 +18131,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Update policyPayload for the navigation property clientConfigurations in officeConfiguration + description: 'Policy settings JSON string in binary format, these values cannot be changed by the user.' operationId: officeConfiguration_SetClientConfigurationsPolicyPayload parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17553,12 +18161,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Get userPreferencePayload for the navigation property clientConfigurations from officeConfiguration + description: 'Preference settings JSON string in binary format, these values can be overridden by the user.' operationId: officeConfiguration_GetClientConfigurationsUserPreferencePayload parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17577,12 +18187,14 @@ paths: tags: - officeConfiguration.officeClientConfiguration summary: Update userPreferencePayload for the navigation property clientConfigurations in officeConfiguration + description: 'Preference settings JSON string in binary format, these values can be overridden by the user.' operationId: officeConfiguration_SetClientConfigurationsUserPreferencePayload parameters: - name: officeClientConfiguration-id in: path description: 'key: id of officeClientConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: officeClientConfiguration @@ -17639,12 +18251,14 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from users + description: Get enrollment configurations targeted to the user operationId: users_ListDeviceEnrollmentConfigurations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17735,6 +18349,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17760,12 +18375,14 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get deviceEnrollmentConfigurations from users + description: Get enrollment configurations targeted to the user operationId: users_GetDeviceEnrollmentConfigurations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17773,6 +18390,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -17840,6 +18458,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17847,6 +18466,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -17873,6 +18493,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17880,12 +18501,14 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17899,12 +18522,14 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get assignments from users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_ListAssignments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17912,6 +18537,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -17985,6 +18611,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -17992,6 +18619,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -18017,12 +18645,14 @@ paths: tags: - users.deviceEnrollmentConfiguration summary: Get assignments from users + description: The list of group assignments for the device configuration profile operationId: users.deviceEnrollmentConfigurations_GetAssignments parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18030,6 +18660,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -18037,6 +18668,7 @@ paths: in: path description: 'key: id of enrollmentConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentConfigurationAssignment @@ -18087,6 +18719,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18094,6 +18727,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -18101,6 +18735,7 @@ paths: in: path description: 'key: id of enrollmentConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentConfigurationAssignment @@ -18127,6 +18762,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18134,6 +18770,7 @@ paths: in: path description: 'key: id of deviceEnrollmentConfiguration' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceEnrollmentConfiguration @@ -18141,12 +18778,14 @@ paths: in: path description: 'key: id of enrollmentConfigurationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: enrollmentConfigurationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18160,12 +18799,14 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Get deviceManagementTroubleshootingEvents from users + description: The list of troubleshooting events for this user. operationId: users_ListDeviceManagementTroubleshootingEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18245,6 +18886,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18270,12 +18912,14 @@ paths: tags: - users.deviceManagementTroubleshootingEvent summary: Get deviceManagementTroubleshootingEvents from users + description: The list of troubleshooting events for this user. operationId: users_GetDeviceManagementTroubleshootingEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18283,6 +18927,7 @@ paths: in: path description: 'key: id of deviceManagementTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTroubleshootingEvent @@ -18335,6 +18980,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18342,6 +18988,7 @@ paths: in: path description: 'key: id of deviceManagementTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTroubleshootingEvent @@ -18368,6 +19015,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18375,12 +19023,14 @@ paths: in: path description: 'key: id of deviceManagementTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceManagementTroubleshootingEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18394,12 +19044,14 @@ paths: tags: - users.managedAppRegistration summary: Get managedAppRegistrations from users + description: Zero or more managed app registrations that belong to the user. operationId: users_ListManagedAppRegistrations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18513,12 +19165,14 @@ paths: tags: - users.managedAppRegistration summary: Get managedAppRegistrations from users + description: Zero or more managed app registrations that belong to the user. operationId: users_GetManagedAppRegistrations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18526,6 +19180,7 @@ paths: in: path description: 'key: id of managedAppRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: managedAppRegistration @@ -18606,12 +19261,14 @@ paths: tags: - users.managedDevice summary: Get managedDevices from users + description: The managed devices associated with the user. operationId: users_ListManagedDevices parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18939,6 +19596,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18964,12 +19622,14 @@ paths: tags: - users.managedDevice summary: Get managedDevices from users + description: The managed devices associated with the user. operationId: users_GetManagedDevices parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -18977,6 +19637,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19171,6 +19832,8 @@ paths: operationId: users.user.managedDevices.managedDevice.cleanWindowsDevice createDeviceLogCollectionRequest: operationId: users.user.managedDevices.managedDevice.createDeviceLogCollectionRequest + createRemoteHelpSession: + operationId: users.user.managedDevices.managedDevice.createRemoteHelpSession deleteUserFromSharedAppleDevice: operationId: users.user.managedDevices.managedDevice.deleteUserFromSharedAppleDevice deprovision: @@ -19213,6 +19876,8 @@ paths: operationId: users.user.managedDevices.managedDevice.reprovisionCloudPc requestRemoteAssistance: operationId: users.user.managedDevices.managedDevice.requestRemoteAssistance + requestRemoteHelpSessionAccess: + operationId: users.user.managedDevices.managedDevice.requestRemoteHelpSessionAccess resetPasscode: operationId: users.user.managedDevices.managedDevice.resetPasscode resizeCloudPc: @@ -19221,6 +19886,8 @@ paths: operationId: users.user.managedDevices.managedDevice.restoreCloudPc retire: operationId: users.user.managedDevices.managedDevice.retire + retrieveRemoteHelpSession: + operationId: users.user.managedDevices.managedDevice.retrieveRemoteHelpSession revokeAppleVppLicenses: operationId: users.user.managedDevices.managedDevice.revokeAppleVppLicenses rotateBitLockerKeys: @@ -19260,6 +19927,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19267,6 +19935,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19293,6 +19962,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19300,12 +19970,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19319,12 +19991,14 @@ paths: tags: - users.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_ListAssignmentFilterEvaluationStatusDetails parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19332,6 +20006,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19399,6 +20074,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19406,6 +20082,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19431,12 +20108,14 @@ paths: tags: - users.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_GetAssignmentFilterEvaluationStatusDetails parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19444,6 +20123,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19451,6 +20131,7 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails @@ -19499,6 +20180,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19506,6 +20188,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19513,6 +20196,7 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails @@ -19539,6 +20223,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19546,6 +20231,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19553,12 +20239,14 @@ paths: in: path description: 'key: id of assignmentFilterEvaluationStatusDetails' required: true + style: simple schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19572,12 +20260,14 @@ paths: tags: - users.managedDevice summary: Get detectedApps from users + description: All applications currently installed on the device operationId: users.managedDevices_ListDetectedApps parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19585,6 +20275,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19609,6 +20300,10 @@ paths: - deviceCount desc - displayName - displayName desc + - platform + - platform desc + - publisher + - publisher desc - sizeInByte - sizeInByte desc - version @@ -19627,6 +20322,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -19658,12 +20355,14 @@ paths: tags: - users.managedDevice summary: Get detectedApps from users + description: All applications currently installed on the device operationId: users.managedDevices_GetDetectedApps parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19671,6 +20370,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19678,6 +20378,7 @@ paths: in: path description: 'key: id of detectedApp' required: true + style: simple schema: type: string x-ms-docs-key-type: detectedApp @@ -19694,6 +20395,8 @@ paths: - id - deviceCount - displayName + - platform + - publisher - sizeInByte - version - managedDevices @@ -19733,12 +20436,14 @@ paths: tags: - users.managedDevice summary: Get deviceCategory from users + description: Device category operationId: users.managedDevices_GetDeviceCategory parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19746,6 +20451,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19796,6 +20502,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19803,6 +20510,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19829,6 +20537,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19836,12 +20545,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19855,12 +20566,14 @@ paths: tags: - users.managedDevice summary: Get deviceCompliancePolicyStates from users + description: Device compliance policy states for this device. operationId: users.managedDevices_ListDeviceCompliancePolicyStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19868,6 +20581,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19956,6 +20670,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -19963,6 +20678,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -19988,12 +20704,14 @@ paths: tags: - users.managedDevice summary: Get deviceCompliancePolicyStates from users + description: Device compliance policy states for this device. operationId: users.managedDevices_GetDeviceCompliancePolicyStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20001,6 +20719,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20008,6 +20727,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState @@ -20063,6 +20783,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20070,6 +20791,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20077,6 +20799,7 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState @@ -20103,6 +20826,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20110,6 +20834,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20117,12 +20842,14 @@ paths: in: path description: 'key: id of deviceCompliancePolicyState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20136,12 +20863,14 @@ paths: tags: - users.managedDevice summary: Get deviceConfigurationStates from users + description: Device configuration states for this device. operationId: users.managedDevices_ListDeviceConfigurationStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20149,6 +20878,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20237,6 +20967,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20244,6 +20975,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20269,12 +21001,14 @@ paths: tags: - users.managedDevice summary: Get deviceConfigurationStates from users + description: Device configuration states for this device. operationId: users.managedDevices_GetDeviceConfigurationStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20282,6 +21016,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20289,6 +21024,7 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState @@ -20344,6 +21080,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20351,6 +21088,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20358,6 +21096,7 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState @@ -20384,6 +21123,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20391,6 +21131,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20398,12 +21139,14 @@ paths: in: path description: 'key: id of deviceConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceConfigurationState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20417,12 +21160,14 @@ paths: tags: - users.managedDevice summary: Get logCollectionRequests from users + description: List of log collection requests operationId: users.managedDevices_ListLogCollectionRequests parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20430,6 +21175,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20518,6 +21264,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20525,6 +21272,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20550,12 +21298,14 @@ paths: tags: - users.managedDevice summary: Get logCollectionRequests from users + description: List of log collection requests operationId: users.managedDevices_GetLogCollectionRequests parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20563,6 +21313,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20570,6 +21321,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -20628,6 +21380,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20635,6 +21388,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20642,6 +21396,7 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse @@ -20668,6 +21423,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20675,6 +21431,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20682,12 +21439,14 @@ paths: in: path description: 'key: id of deviceLogCollectionResponse' required: true + style: simple schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20701,12 +21460,14 @@ paths: tags: - users.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_ListManagedDeviceMobileAppConfigurationStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20714,6 +21475,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20802,6 +21564,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20809,6 +21572,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20834,12 +21598,14 @@ paths: tags: - users.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from users + description: Managed device mobile app configuration states for this device. operationId: users.managedDevices_GetManagedDeviceMobileAppConfigurationStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20847,6 +21613,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20854,6 +21621,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState @@ -20909,6 +21677,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20916,6 +21685,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20923,6 +21693,7 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState @@ -20949,6 +21720,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20956,6 +21728,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -20963,12 +21736,14 @@ paths: in: path description: 'key: id of managedDeviceMobileAppConfigurationState' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20982,12 +21757,14 @@ paths: tags: - users.managedDevice summary: Get securityBaselineStates from users + description: Security baseline states for this device. operationId: users.managedDevices_ListSecurityBaselineStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -20995,6 +21772,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21073,6 +21851,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21080,6 +21859,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21105,12 +21885,14 @@ paths: tags: - users.managedDevice summary: Get securityBaselineStates from users + description: Security baseline states for this device. operationId: users.managedDevices_GetSecurityBaselineStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21118,6 +21900,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21125,6 +21908,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21185,6 +21969,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21192,6 +21977,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21199,6 +21985,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21225,6 +22012,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21232,6 +22020,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21239,12 +22028,14 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21258,12 +22049,14 @@ paths: tags: - users.managedDevice summary: Get settingStates from users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_ListSettingStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21271,6 +22064,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21278,6 +22072,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21366,6 +22161,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21373,6 +22169,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21380,6 +22177,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21405,12 +22203,14 @@ paths: tags: - users.managedDevice summary: Get settingStates from users + description: The security baseline state for different settings for a device operationId: users.managedDevices.securityBaselineStates_GetSettingStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21418,6 +22218,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21425,6 +22226,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21432,6 +22234,7 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState @@ -21487,6 +22290,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21494,6 +22298,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21501,6 +22306,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21508,6 +22314,7 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState @@ -21534,6 +22341,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21541,6 +22349,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21548,6 +22357,7 @@ paths: in: path description: 'key: id of securityBaselineState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineState @@ -21555,12 +22365,14 @@ paths: in: path description: 'key: id of securityBaselineSettingState' required: true + style: simple schema: type: string x-ms-docs-key-type: securityBaselineSettingState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21574,12 +22386,14 @@ paths: tags: - users.managedDevice summary: Get users from users + description: The primary users associated with the managed device. operationId: users.managedDevices_ListUsers parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -21587,6 +22401,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -21647,6 +22462,8 @@ paths: - employeeHireDate desc - employeeId - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc - employeeOrgData - employeeOrgData desc - employeeType @@ -21799,6 +22616,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -22016,12 +22834,14 @@ paths: tags: - users.managedDevice summary: Get windowsProtectionState from users + description: The device protection status. This property is read-only. operationId: users.managedDevices_GetWindowsProtectionState parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22029,6 +22849,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22104,6 +22925,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22111,6 +22933,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22137,6 +22960,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22144,12 +22968,14 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22163,12 +22989,14 @@ paths: tags: - users.managedDevice summary: Get detectedMalwareState from users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_ListDetectedMalwareState parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22176,6 +23004,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22270,6 +23099,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22277,6 +23107,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22302,12 +23133,14 @@ paths: tags: - users.managedDevice summary: Get detectedMalwareState from users + description: Device malware list operationId: users.managedDevices.windowsProtectionState_GetDetectedMalwareState parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22315,6 +23148,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22322,6 +23156,7 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState @@ -22379,6 +23214,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22386,6 +23222,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22393,6 +23230,7 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState @@ -22419,6 +23257,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22426,6 +23265,7 @@ paths: in: path description: 'key: id of managedDevice' required: true + style: simple schema: type: string x-ms-docs-key-type: managedDevice @@ -22433,12 +23273,14 @@ paths: in: path description: 'key: id of windowsDeviceMalwareState' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22452,12 +23294,14 @@ paths: tags: - users.mobileAppIntentAndState summary: Get mobileAppIntentAndStates from users + description: The list of troubleshooting events for this user. operationId: users_ListMobileAppIntentAndStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22531,6 +23375,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22556,12 +23401,14 @@ paths: tags: - users.mobileAppIntentAndState summary: Get mobileAppIntentAndStates from users + description: The list of troubleshooting events for this user. operationId: users_GetMobileAppIntentAndStates parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22569,6 +23416,7 @@ paths: in: path description: 'key: id of mobileAppIntentAndState' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppIntentAndState @@ -22619,6 +23467,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22626,6 +23475,7 @@ paths: in: path description: 'key: id of mobileAppIntentAndState' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppIntentAndState @@ -22652,6 +23502,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22659,12 +23510,14 @@ paths: in: path description: 'key: id of mobileAppIntentAndState' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppIntentAndState - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22678,12 +23531,14 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from users + description: The list of mobile app troubleshooting events for this user. operationId: users_ListMobileAppTroubleshootingEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22777,6 +23632,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22802,12 +23658,14 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get mobileAppTroubleshootingEvents from users + description: The list of mobile app troubleshooting events for this user. operationId: users_GetMobileAppTroubleshootingEvents parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22815,6 +23673,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -22879,6 +23738,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22886,6 +23746,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -22912,6 +23773,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22919,12 +23781,14 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22938,12 +23802,14 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_ListAppLogCollectionRequests parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -22951,6 +23817,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -23027,6 +23894,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -23034,6 +23902,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -23059,12 +23928,14 @@ paths: tags: - users.mobileAppTroubleshootingEvent summary: Get appLogCollectionRequests from users + description: The collection property of AppLogUploadRequest. operationId: users.mobileAppTroubleshootingEvents_GetAppLogCollectionRequests parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -23072,6 +23943,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -23079,6 +23951,7 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest @@ -23133,6 +24006,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -23140,6 +24014,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -23147,6 +24022,7 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest @@ -23173,6 +24049,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -23180,6 +24057,7 @@ paths: in: path description: 'key: id of mobileAppTroubleshootingEvent' required: true + style: simple schema: type: string x-ms-docs-key-type: mobileAppTroubleshootingEvent @@ -23187,12 +24065,14 @@ paths: in: path description: 'key: id of appLogCollectionRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appLogCollectionRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23206,12 +24086,14 @@ paths: tags: - users.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from users + description: Zero or more WIP device registrations that belong to the user. operationId: users_ListWindowsInformationProtectionDeviceRegistrations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -23289,12 +24171,14 @@ paths: tags: - users.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from users + description: Zero or more WIP device registrations that belong to the user. operationId: users_GetWindowsInformationProtectionDeviceRegistrations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -23302,6 +24186,7 @@ paths: in: path description: 'key: id of windowsInformationProtectionDeviceRegistration' required: true + style: simple schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration @@ -26550,6 +27435,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -28626,6 +29517,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -29695,6 +30590,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -29991,7 +30892,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -30183,7 +31083,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -30213,6 +31112,59 @@ components: $ref: '#/components/schemas/microsoft.graph.todo' additionalProperties: type: object + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.policyPlatformType: title: policyPlatformType enum: @@ -32591,6 +33543,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -32883,6 +33836,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -33152,6 +34107,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -33191,7 +34148,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -34657,7 +35613,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -34859,7 +35815,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -35076,50 +36031,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -35127,7 +36072,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -35741,6 +36685,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -36056,14 +37002,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -36483,6 +37440,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -36650,11 +37627,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -36757,10 +37734,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -37600,7 +38575,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -37861,12 +38835,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -38320,7 +39292,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -38967,12 +39939,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -39632,43 +40602,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -40175,12 +41138,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -40901,6 +41864,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -41108,21 +42116,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -41133,7 +42137,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printerShareViewpoint: @@ -41207,12 +42210,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -41418,11 +42424,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -42445,7 +43451,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -42687,7 +43692,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -44052,14 +45056,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -44127,7 +45129,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -44150,7 +45151,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -44768,7 +45768,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -45068,6 +46067,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.operationStatus: title: operationStatus enum: @@ -46060,7 +47067,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -46730,7 +47737,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -49292,7 +50298,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -50893,6 +51898,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -50901,6 +51908,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -50908,18 +51917,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/Devices.ServiceAnnouncement.yml b/openApiDocs/beta/Devices.ServiceAnnouncement.yml index a0334f6676f..25942f7062d 100644 --- a/openApiDocs/beta/Devices.ServiceAnnouncement.yml +++ b/openApiDocs/beta/Devices.ServiceAnnouncement.yml @@ -11,6 +11,7 @@ paths: tags: - admin.serviceAnnouncement summary: Get serviceAnnouncement from admin + description: A container for service communications resources. Read-only. operationId: admin_GetServiceAnnouncement parameters: - name: $select @@ -87,6 +88,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -100,6 +102,7 @@ paths: tags: - admin.serviceAnnouncement summary: Get healthOverviews from admin + description: 'A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.' operationId: admin.serviceAnnouncement_ListHealthOverviews parameters: - $ref: '#/components/parameters/top' @@ -188,12 +191,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get healthOverviews from admin + description: 'A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.' operationId: admin.serviceAnnouncement_GetHealthOverviews parameters: - name: serviceHealth-id in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -250,6 +255,7 @@ paths: in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -276,12 +282,14 @@ paths: in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -295,12 +303,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get issues from admin + description: 'A collection of issues that happened on the service, with detailed information for each issue.' operationId: admin.serviceAnnouncement.healthOverviews_ListIssues parameters: - name: serviceHealth-id in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -407,6 +417,7 @@ paths: in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -432,12 +443,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get issues from admin + description: 'A collection of issues that happened on the service, with detailed information for each issue.' operationId: admin.serviceAnnouncement.healthOverviews_GetIssues parameters: - name: serviceHealth-id in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -445,6 +458,7 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue @@ -509,6 +523,7 @@ paths: in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -516,6 +531,7 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue @@ -542,6 +558,7 @@ paths: in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -549,12 +566,14 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -574,6 +593,7 @@ paths: in: path description: 'key: id of serviceHealth' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealth @@ -581,6 +601,7 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue @@ -606,6 +627,7 @@ paths: tags: - admin.serviceAnnouncement summary: Get issues from admin + description: 'A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.' operationId: admin.serviceAnnouncement_ListIssues parameters: - $ref: '#/components/parameters/top' @@ -728,12 +750,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get issues from admin + description: 'A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly.' operationId: admin.serviceAnnouncement_GetIssues parameters: - name: serviceHealthIssue-id in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue @@ -798,6 +822,7 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue @@ -824,12 +849,14 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -849,6 +876,7 @@ paths: in: path description: 'key: id of serviceHealthIssue' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceHealthIssue @@ -874,6 +902,7 @@ paths: tags: - admin.serviceAnnouncement summary: Get messages from admin + description: 'A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.' operationId: admin.serviceAnnouncement_ListMessages parameters: - $ref: '#/components/parameters/top' @@ -1001,12 +1030,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get messages from admin + description: 'A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly.' operationId: admin.serviceAnnouncement_GetMessages parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1076,6 +1107,7 @@ paths: in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1102,12 +1134,14 @@ paths: in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1121,12 +1155,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get attachments from admin + description: A collection of serviceAnnouncementAttachments. operationId: admin.serviceAnnouncement.messages_ListAttachments parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1206,6 +1242,7 @@ paths: in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1231,12 +1268,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get attachments from admin + description: A collection of serviceAnnouncementAttachments. operationId: admin.serviceAnnouncement.messages_GetAttachments parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1244,6 +1283,7 @@ paths: in: path description: 'key: id of serviceAnnouncementAttachment' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment @@ -1296,6 +1336,7 @@ paths: in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1303,6 +1344,7 @@ paths: in: path description: 'key: id of serviceAnnouncementAttachment' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment @@ -1329,6 +1371,7 @@ paths: in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1336,12 +1379,14 @@ paths: in: path description: 'key: id of serviceAnnouncementAttachment' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1355,12 +1400,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get content for the navigation property attachments from admin + description: The attachment content. operationId: admin.serviceAnnouncement.messages_GetAttachmentsContent parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1368,6 +1415,7 @@ paths: in: path description: 'key: id of serviceAnnouncementAttachment' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment @@ -1386,12 +1434,14 @@ paths: tags: - admin.serviceAnnouncement summary: Update content for the navigation property attachments in admin + description: The attachment content. operationId: admin.serviceAnnouncement.messages_SetAttachmentsContent parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1399,6 +1449,7 @@ paths: in: path description: 'key: id of serviceAnnouncementAttachment' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment @@ -1421,12 +1472,14 @@ paths: tags: - admin.serviceAnnouncement summary: Get attachmentsArchive for the navigation property messages from admin + description: The zip file of all attachments for a message. operationId: admin.serviceAnnouncement_GetMessagesAttachmentsArchive parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1445,12 +1498,14 @@ paths: tags: - admin.serviceAnnouncement summary: Update attachmentsArchive for the navigation property messages in admin + description: The zip file of all attachments for a message. operationId: admin.serviceAnnouncement_SetMessagesAttachmentsArchive parameters: - name: serviceUpdateMessage-id in: path description: 'key: id of serviceUpdateMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: serviceUpdateMessage @@ -1707,6 +1762,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1714,6 +1770,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -1748,6 +1805,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1755,6 +1813,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -1793,6 +1852,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1800,6 +1860,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -1834,6 +1895,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1841,6 +1903,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -1879,6 +1942,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1915,6 +1979,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1955,6 +2020,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -1991,6 +2057,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2031,6 +2098,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2038,6 +2106,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2072,6 +2141,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2079,6 +2149,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2117,6 +2188,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2124,6 +2196,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2158,6 +2231,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2165,6 +2239,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2203,6 +2278,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2239,6 +2315,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2279,6 +2356,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2315,6 +2393,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2355,6 +2434,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2401,6 +2481,7 @@ paths: in: path description: 'key: id of deployment' required: true + style: simple schema: type: string x-ms-docs-key-type: deployment @@ -2454,6 +2535,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2488,6 +2570,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2526,6 +2609,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -2560,6 +2644,7 @@ paths: in: path description: 'key: id of updatableAsset' required: true + style: simple schema: type: string x-ms-docs-key-type: updatableAsset @@ -3179,6 +3264,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -3187,6 +3274,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -3194,18 +3283,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/DirectoryObjects.yml b/openApiDocs/beta/DirectoryObjects.yml index a0551a66f14..b75f1e506c7 100644 --- a/openApiDocs/beta/DirectoryObjects.yml +++ b/openApiDocs/beta/DirectoryObjects.yml @@ -16,6 +16,7 @@ paths: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -23,10 +24,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -55,18 +53,6 @@ paths: - id - deletedDateTime type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.directoryObjectCollectionResponse' @@ -103,12 +89,14 @@ paths: tags: - directoryObjects.directoryObject summary: Get directoryObject + description: Retrieve the properties and relationships of a directoryObject object. operationId: directoryObjects.directoryObject_GetDirectoryObject parameters: - name: directoryObject-id in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -125,18 +113,6 @@ paths: - id - deletedDateTime type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': description: Retrieved entity @@ -168,6 +144,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -188,18 +165,21 @@ paths: tags: - directoryObjects.directoryObject summary: Delete directoryObject + description: 'Delete a directory object, for example, a group, user, application, or service principal.' operationId: directoryObjects.directoryObject_DeleteDirectoryObject parameters: - name: directoryObject-id in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -219,6 +199,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -265,6 +246,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -311,6 +293,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -357,6 +340,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -403,6 +387,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -631,35 +616,20 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer example: 50 - skip: - name: $skip - in: query - description: Skip the first n items - schema: - minimum: 0 - type: integer search: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string - filter: - name: $filter - in: query - description: Filter items by property values - schema: - type: string - count: - name: $count - in: query - description: Include count of items - schema: - type: boolean securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/Education.yml b/openApiDocs/beta/Education.yml index 8a62b7b5559..67a0794472b 100644 --- a/openApiDocs/beta/Education.yml +++ b/openApiDocs/beta/Education.yml @@ -228,6 +228,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -336,6 +337,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -362,12 +364,14 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -381,12 +385,14 @@ paths: tags: - education.educationClass summary: Get assignmentCategories from education + description: All categories associated with this class. Nullable. operationId: education.classes_ListAssignmentCategories parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -454,6 +460,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -479,12 +486,14 @@ paths: tags: - education.educationClass summary: Get assignmentCategories from education + description: All categories associated with this class. Nullable. operationId: education.classes_GetAssignmentCategories parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -492,6 +501,7 @@ paths: in: path description: 'key: id of educationCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: educationCategory @@ -540,6 +550,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -547,6 +558,7 @@ paths: in: path description: 'key: id of educationCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: educationCategory @@ -573,6 +585,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -580,12 +593,14 @@ paths: in: path description: 'key: id of educationCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: educationCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -605,6 +620,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -631,12 +647,14 @@ paths: tags: - education.educationClass summary: Get assignmentDefaults from education + description: Specifies class-level defaults respected by new assignments created in the class. operationId: education.classes_GetAssignmentDefaults parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -688,6 +706,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -714,12 +733,14 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -733,12 +754,14 @@ paths: tags: - education.educationClass summary: Get assignments from education + description: All assignments associated with this class. Nullable. operationId: education.classes_ListAssignments parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -877,6 +900,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -902,12 +926,14 @@ paths: tags: - education.educationClass summary: Get assignments from education + description: All assignments associated with this class. Nullable. operationId: education.classes_GetAssignments parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -915,6 +941,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1019,6 +1046,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1026,6 +1054,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1052,6 +1081,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1059,12 +1089,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1078,12 +1110,14 @@ paths: tags: - education.educationClass summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_ListCategories parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1091,6 +1125,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1158,6 +1193,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1165,6 +1201,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1196,6 +1233,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1203,6 +1241,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1210,17 +1249,21 @@ paths: in: path description: 'key: id of educationCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: educationCategory - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -1234,12 +1277,14 @@ paths: tags: - education.educationClass summary: Get ref of categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.classes.assignments_ListCategoriesGraphBPreRef parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1247,6 +1292,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1289,6 +1335,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1296,18 +1343,12 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -1325,6 +1366,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1332,6 +1374,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1364,6 +1407,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1371,6 +1415,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1395,6 +1440,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1402,6 +1448,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1426,6 +1473,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1433,6 +1481,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1451,12 +1500,14 @@ paths: tags: - education.educationClass summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_ListResources parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1464,6 +1515,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1534,6 +1586,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1541,6 +1594,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1566,12 +1620,14 @@ paths: tags: - education.educationClass summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.classes.assignments_GetResources parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1579,6 +1635,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1586,6 +1643,7 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource @@ -1635,6 +1693,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1642,6 +1701,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1649,6 +1709,7 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource @@ -1675,6 +1736,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1682,6 +1744,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1689,12 +1752,14 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1708,12 +1773,14 @@ paths: tags: - education.educationClass summary: Get rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.classes.assignments_GetRubric parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1721,6 +1788,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1777,6 +1845,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1784,6 +1853,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1810,6 +1880,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1817,12 +1888,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1836,12 +1909,14 @@ paths: tags: - education.educationClass summary: Get ref of rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.classes.assignments_GetRubricGraphBPreRef parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1849,6 +1924,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -1872,6 +1948,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1879,18 +1956,12 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPutBody' responses: '204': description: Success @@ -1907,6 +1978,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1914,12 +1986,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1933,12 +2007,14 @@ paths: tags: - education.educationClass summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_ListSubmissions parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -1946,6 +2022,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2049,6 +2126,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2056,6 +2134,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2081,12 +2160,14 @@ paths: tags: - education.educationClass summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.classes.assignments_GetSubmissions parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2094,6 +2175,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2101,6 +2183,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2194,6 +2277,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2201,6 +2285,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2208,6 +2293,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2234,6 +2320,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2241,6 +2328,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2248,12 +2336,14 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2273,6 +2363,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2280,6 +2371,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2287,6 +2379,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2311,6 +2404,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2318,6 +2412,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2325,6 +2420,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2349,6 +2445,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2356,6 +2453,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2363,6 +2461,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2387,6 +2486,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2394,6 +2494,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2401,6 +2502,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2425,6 +2527,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2432,6 +2535,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2439,6 +2543,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2463,6 +2568,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2470,6 +2576,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2477,6 +2584,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2547,6 +2655,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2554,6 +2663,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2561,6 +2671,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2592,6 +2703,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2599,6 +2711,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2606,6 +2719,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2613,6 +2727,7 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome @@ -2662,6 +2777,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2669,6 +2785,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2676,6 +2793,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2683,6 +2801,7 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome @@ -2709,6 +2828,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2716,6 +2836,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2723,6 +2844,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2730,12 +2852,14 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2755,6 +2879,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2762,6 +2887,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2769,6 +2895,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2839,6 +2966,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2846,6 +2974,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2853,6 +2982,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2884,6 +3014,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2891,6 +3022,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2898,6 +3030,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2905,6 +3038,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -2954,6 +3088,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -2961,6 +3096,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -2968,6 +3104,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -2975,6 +3112,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -3001,6 +3139,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3008,6 +3147,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -3015,6 +3155,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -3022,12 +3163,14 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3047,6 +3190,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3054,6 +3198,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -3061,6 +3206,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -3131,6 +3277,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3138,6 +3285,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -3145,6 +3293,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -3176,6 +3325,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3183,6 +3333,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -3190,6 +3341,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -3197,6 +3349,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -3246,6 +3399,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3253,6 +3407,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -3260,6 +3415,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -3267,6 +3423,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -3293,6 +3450,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3300,6 +3458,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -3307,6 +3466,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -3314,12 +3474,14 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3339,6 +3501,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3365,12 +3528,14 @@ paths: tags: - education.educationClass summary: Get assignmentSettings from education + description: Specifies class-level assignments settings. operationId: education.classes_GetAssignmentSettings parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3419,6 +3584,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3445,12 +3611,14 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3470,6 +3638,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3732,12 +3901,14 @@ paths: tags: - education.educationClass summary: Get members from education + description: All users in the class. Nullable. operationId: education.classes_ListMembers parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3911,6 +4082,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -3918,17 +4090,21 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -3942,12 +4118,14 @@ paths: tags: - education.educationClass summary: Get ref of members from education + description: All users in the class. Nullable. operationId: education.classes_ListMembersGraphBPreRef parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -4052,18 +4230,12 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -4075,12 +4247,14 @@ paths: tags: - education.educationClass summary: Get schools from education + description: All schools that this class is associated with. Nullable. operationId: education.classes_ListSchools parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -4191,12 +4365,14 @@ paths: tags: - education.educationClass summary: Get schools from education + description: All schools that this class is associated with. Nullable. operationId: education.classes_GetSchools parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -4204,6 +4380,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -4283,12 +4460,14 @@ paths: tags: - education.educationClass summary: Get teachers from education + description: All teachers in the class. Nullable. operationId: education.classes_ListTeachers parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -4462,6 +4641,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -4469,17 +4649,21 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -4493,12 +4677,14 @@ paths: tags: - education.educationClass summary: Get ref of teachers from education + description: All teachers in the class. Nullable. operationId: education.classes_ListTeachersGraphBPreRef parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -4603,18 +4789,12 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -4770,6 +4950,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4783,6 +4964,7 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.me_ListAssignments parameters: - $ref: '#/components/parameters/top' @@ -4937,12 +5119,14 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.me_GetAssignments parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5043,6 +5227,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5069,12 +5254,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5088,12 +5275,14 @@ paths: tags: - education.educationUser summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_ListCategories parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5161,6 +5350,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5192,6 +5382,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5199,17 +5390,21 @@ paths: in: path description: 'key: id of educationCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: educationCategory - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -5223,12 +5418,14 @@ paths: tags: - education.educationUser summary: Get ref of categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.me.assignments_ListCategoriesGraphBPreRef parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5271,18 +5468,12 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -5300,6 +5491,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5332,6 +5524,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5356,6 +5549,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5380,6 +5574,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5398,12 +5593,14 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_ListResources parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5474,6 +5671,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5499,12 +5697,14 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.me.assignments_GetResources parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5512,6 +5712,7 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource @@ -5561,6 +5762,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5568,6 +5770,7 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource @@ -5594,6 +5797,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5601,12 +5805,14 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5620,12 +5826,14 @@ paths: tags: - education.educationUser summary: Get rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.me.assignments_GetRubric parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5682,6 +5890,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5708,12 +5917,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5727,12 +5938,14 @@ paths: tags: - education.educationUser summary: Get ref of rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.me.assignments_GetRubricGraphBPreRef parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5756,18 +5969,12 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPutBody' responses: '204': description: Success @@ -5784,12 +5991,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5803,12 +6012,14 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_ListSubmissions parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5912,6 +6123,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5937,12 +6149,14 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.me.assignments_GetSubmissions parameters: - name: educationAssignment-id in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -5950,6 +6164,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6040,6 +6255,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6047,6 +6263,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6073,6 +6290,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6080,12 +6298,14 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6105,6 +6325,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6112,6 +6333,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6136,6 +6358,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6143,6 +6366,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6167,6 +6391,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6174,6 +6399,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6198,6 +6424,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6205,6 +6432,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6229,6 +6457,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6236,6 +6465,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6260,6 +6490,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6267,6 +6498,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6337,6 +6569,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6344,6 +6577,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6375,6 +6609,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6382,6 +6617,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6389,6 +6625,7 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome @@ -6438,6 +6675,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6445,6 +6683,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6452,6 +6691,7 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome @@ -6478,6 +6718,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6485,6 +6726,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6492,12 +6734,14 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6517,6 +6761,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6524,6 +6769,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6594,6 +6840,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6601,6 +6848,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6632,6 +6880,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6639,6 +6888,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6646,6 +6896,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -6695,6 +6946,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6702,6 +6954,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6709,6 +6962,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -6735,6 +6989,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6742,6 +6997,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6749,12 +7005,14 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6774,6 +7032,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6781,6 +7040,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6851,6 +7111,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6858,6 +7119,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6889,6 +7151,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6896,6 +7159,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6903,6 +7167,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -6952,6 +7217,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6959,6 +7225,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -6966,6 +7233,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -6992,6 +7260,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -6999,6 +7268,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -7006,12 +7276,14 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7049,6 +7321,7 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.me_ListClasses parameters: - $ref: '#/components/parameters/top' @@ -7159,12 +7432,14 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.me_GetClasses parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -7268,6 +7543,7 @@ paths: tags: - education.educationUser summary: Get rubrics from education + description: 'When set, the grading rubric attached to the assignment.' operationId: education.me_ListRubrics parameters: - $ref: '#/components/parameters/top' @@ -7375,12 +7651,14 @@ paths: tags: - education.educationUser summary: Get rubrics from education + description: 'When set, the grading rubric attached to the assignment.' operationId: education.me_GetRubrics parameters: - name: educationRubric-id in: path description: 'key: id of educationRubric' required: true + style: simple schema: type: string x-ms-docs-key-type: educationRubric @@ -7437,6 +7715,7 @@ paths: in: path description: 'key: id of educationRubric' required: true + style: simple schema: type: string x-ms-docs-key-type: educationRubric @@ -7463,12 +7742,14 @@ paths: in: path description: 'key: id of educationRubric' required: true + style: simple schema: type: string x-ms-docs-key-type: educationRubric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7482,6 +7763,7 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.me_ListSchools parameters: - $ref: '#/components/parameters/top' @@ -7591,12 +7873,14 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.me_GetSchools parameters: - name: educationSchool-id in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -7673,6 +7957,7 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.me_ListTaughtClasses parameters: - $ref: '#/components/parameters/top' @@ -7783,12 +8068,14 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.me_GetTaughtClasses parameters: - name: educationClass-id in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -7925,6 +8212,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -8411,6 +8699,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -8492,6 +8781,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -8518,12 +8808,14 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8543,6 +8835,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -8609,12 +8902,14 @@ paths: tags: - education.educationSchool summary: Get classes from education + description: Classes taught at the school. Nullable. operationId: education.schools_ListClasses parameters: - name: educationSchool-id in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -8732,6 +9027,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -8739,17 +9035,21 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -8763,12 +9063,14 @@ paths: tags: - education.educationSchool summary: Get ref of classes from education + description: Classes taught at the school. Nullable. operationId: education.schools_ListClassesGraphBPreRef parameters: - name: educationSchool-id in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -8833,18 +9135,12 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -8856,12 +9152,14 @@ paths: tags: - education.educationSchool summary: Get users from education + description: Users in the school. Nullable. operationId: education.schools_ListUsers parameters: - name: educationSchool-id in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -9035,6 +9333,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -9042,17 +9341,21 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -9066,12 +9369,14 @@ paths: tags: - education.educationSchool summary: Get ref of users from education + description: Users in the school. Nullable. operationId: education.schools_ListUsersGraphBPreRef parameters: - name: educationSchool-id in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -9176,18 +9481,12 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -9334,6 +9633,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9411,6 +9711,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9437,12 +9738,14 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9456,12 +9759,14 @@ paths: tags: - education.educationSynchronizationProfile summary: Get errors from education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_ListErrors parameters: - name: educationSynchronizationProfile-id in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9544,6 +9849,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9569,12 +9875,14 @@ paths: tags: - education.educationSynchronizationProfile summary: Get errors from education + description: All errors associated with this synchronization profile. operationId: education.synchronizationProfiles_GetErrors parameters: - name: educationSynchronizationProfile-id in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9582,6 +9890,7 @@ paths: in: path description: 'key: id of educationSynchronizationError' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationError @@ -9635,6 +9944,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9642,6 +9952,7 @@ paths: in: path description: 'key: id of educationSynchronizationError' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationError @@ -9668,6 +9979,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9675,12 +9987,14 @@ paths: in: path description: 'key: id of educationSynchronizationError' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationError - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9700,6 +10014,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9720,6 +10035,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9740,6 +10056,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9760,6 +10077,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9792,6 +10110,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9816,12 +10135,14 @@ paths: tags: - education.educationSynchronizationProfile summary: Get profileStatus from education + description: The synchronization status. operationId: education.synchronizationProfiles_GetProfileStatus parameters: - name: educationSynchronizationProfile-id in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9874,6 +10195,7 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile @@ -9900,12 +10222,14 @@ paths: in: path description: 'key: id of educationSynchronizationProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSynchronizationProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10113,6 +10437,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10229,6 +10554,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10255,12 +10581,14 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10274,12 +10602,14 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.users_ListAssignments parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10418,6 +10748,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10443,12 +10774,14 @@ paths: tags: - education.educationUser summary: Get assignments from education + description: List of assignments for the user. Nullable. operationId: education.users_GetAssignments parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10456,6 +10789,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10560,6 +10894,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10567,6 +10902,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10593,6 +10929,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10600,12 +10937,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10619,12 +10958,14 @@ paths: tags: - education.educationUser summary: Get categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_ListCategories parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10632,6 +10973,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10699,6 +11041,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10706,6 +11049,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10737,6 +11081,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10744,6 +11089,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10751,17 +11097,21 @@ paths: in: path description: 'key: id of educationCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: educationCategory - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -10775,12 +11125,14 @@ paths: tags: - education.educationUser summary: Get ref of categories from education + description: 'When set, enables users to easily find assignments of a given type. Read-only. Nullable.' operationId: education.users.assignments_ListCategoriesGraphBPreRef parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10788,6 +11140,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10830,6 +11183,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10837,18 +11191,12 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -10866,6 +11214,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10873,6 +11222,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10905,6 +11255,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10912,6 +11263,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10936,6 +11288,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10943,6 +11296,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10967,6 +11321,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -10974,6 +11329,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -10992,12 +11348,14 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_ListResources parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11005,6 +11363,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11075,6 +11434,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11082,6 +11442,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11107,12 +11468,14 @@ paths: tags: - education.educationUser summary: Get resources from education + description: Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. operationId: education.users.assignments_GetResources parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11120,6 +11483,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11127,6 +11491,7 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource @@ -11176,6 +11541,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11183,6 +11549,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11190,6 +11557,7 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource @@ -11216,6 +11584,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11223,6 +11592,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11230,12 +11600,14 @@ paths: in: path description: 'key: id of educationAssignmentResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignmentResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11249,12 +11621,14 @@ paths: tags: - education.educationUser summary: Get rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.users.assignments_GetRubric parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11262,6 +11636,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11318,6 +11693,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11325,6 +11701,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11351,6 +11728,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11358,12 +11736,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11377,12 +11757,14 @@ paths: tags: - education.educationUser summary: Get ref of rubric from education + description: 'When set, the grading rubric attached to this assignment.' operationId: education.users.assignments_GetRubricGraphBPreRef parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11390,6 +11772,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11413,6 +11796,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11420,18 +11804,12 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPutBody' responses: '204': description: Success @@ -11448,6 +11826,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11455,12 +11834,14 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11474,12 +11855,14 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_ListSubmissions parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11487,6 +11870,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11590,6 +11974,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11597,6 +11982,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11622,12 +12008,14 @@ paths: tags: - education.educationUser summary: Get submissions from education + description: 'Once published, there is a submission object for each student representing their work and grade. Read-only. Nullable.' operationId: education.users.assignments_GetSubmissions parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11635,6 +12023,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11642,6 +12031,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -11735,6 +12125,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11742,6 +12133,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11749,6 +12141,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -11775,6 +12168,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11782,6 +12176,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11789,12 +12184,14 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11814,6 +12211,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11821,6 +12219,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11828,6 +12227,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -11852,6 +12252,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11859,6 +12260,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11866,6 +12268,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -11890,6 +12293,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11897,6 +12301,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11904,6 +12309,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -11928,6 +12334,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11935,6 +12342,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11942,6 +12350,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -11966,6 +12375,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -11973,6 +12383,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -11980,6 +12391,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12004,6 +12416,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12011,6 +12424,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12018,6 +12432,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12088,6 +12503,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12095,6 +12511,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12102,6 +12519,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12133,6 +12551,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12140,6 +12559,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12147,6 +12567,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12154,6 +12575,7 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome @@ -12203,6 +12625,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12210,6 +12633,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12217,6 +12641,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12224,6 +12649,7 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome @@ -12250,6 +12676,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12257,6 +12684,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12264,6 +12692,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12271,12 +12700,14 @@ paths: in: path description: 'key: id of educationOutcome' required: true + style: simple schema: type: string x-ms-docs-key-type: educationOutcome - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12296,6 +12727,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12303,6 +12735,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12310,6 +12743,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12380,6 +12814,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12387,6 +12822,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12394,6 +12830,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12425,6 +12862,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12432,6 +12870,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12439,6 +12878,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12446,6 +12886,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -12495,6 +12936,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12502,6 +12944,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12509,6 +12952,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12516,6 +12960,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -12542,6 +12987,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12549,6 +12995,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12556,6 +13003,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12563,12 +13011,14 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12588,6 +13038,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12595,6 +13046,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12602,6 +13054,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12672,6 +13125,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12679,6 +13133,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12686,6 +13141,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12717,6 +13173,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12724,6 +13181,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12731,6 +13189,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12738,6 +13197,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -12787,6 +13247,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12794,6 +13255,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12801,6 +13263,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12808,6 +13271,7 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource @@ -12834,6 +13298,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12841,6 +13306,7 @@ paths: in: path description: 'key: id of educationAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: educationAssignment @@ -12848,6 +13314,7 @@ paths: in: path description: 'key: id of educationSubmission' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmission @@ -12855,12 +13322,14 @@ paths: in: path description: 'key: id of educationSubmissionResource' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSubmissionResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12880,6 +13349,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -12906,12 +13376,14 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.users_ListClasses parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13023,12 +13495,14 @@ paths: tags: - education.educationUser summary: Get classes from education + description: Classes to which the user belongs. Nullable. operationId: education.users_GetClasses parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13036,6 +13510,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -13147,12 +13622,14 @@ paths: tags: - education.educationUser summary: Get rubrics from education + description: 'When set, the grading rubric attached to the assignment.' operationId: education.users_ListRubrics parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13244,6 +13721,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13269,12 +13747,14 @@ paths: tags: - education.educationUser summary: Get rubrics from education + description: 'When set, the grading rubric attached to the assignment.' operationId: education.users_GetRubrics parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13282,6 +13762,7 @@ paths: in: path description: 'key: id of educationRubric' required: true + style: simple schema: type: string x-ms-docs-key-type: educationRubric @@ -13338,6 +13819,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13345,6 +13827,7 @@ paths: in: path description: 'key: id of educationRubric' required: true + style: simple schema: type: string x-ms-docs-key-type: educationRubric @@ -13371,6 +13854,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13378,12 +13862,14 @@ paths: in: path description: 'key: id of educationRubric' required: true + style: simple schema: type: string x-ms-docs-key-type: educationRubric - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13397,12 +13883,14 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.users_ListSchools parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13513,12 +14001,14 @@ paths: tags: - education.educationUser summary: Get schools from education + description: Schools to which the user belongs. Nullable. operationId: education.users_GetSchools parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13526,6 +14016,7 @@ paths: in: path description: 'key: id of educationSchool' required: true + style: simple schema: type: string x-ms-docs-key-type: educationSchool @@ -13605,12 +14096,14 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.users_ListTaughtClasses parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13722,12 +14215,14 @@ paths: tags: - education.educationUser summary: Get taughtClasses from education + description: Classes for which the user is a teacher. operationId: education.users_GetTaughtClasses parameters: - name: educationUser-id in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13735,6 +14230,7 @@ paths: in: path description: 'key: id of educationClass' required: true + style: simple schema: type: string x-ms-docs-key-type: educationClass @@ -13852,6 +14348,7 @@ paths: in: path description: 'key: id of educationUser' required: true + style: simple schema: type: string x-ms-docs-key-type: educationUser @@ -13886,6 +14383,7 @@ paths: - displayName - employeeHireDate - employeeId + - employeeLeaveDateTime - employeeOrgData - employeeType - externalUserState @@ -15287,7 +15785,6 @@ components: $ref: '#/components/schemas/microsoft.graph.physicalAddress' showInAddressList: type: boolean - description: 'True if the Outlook Global Address List should contain this user; otherwise, false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false.' nullable: true student: $ref: '#/components/schemas/microsoft.graph.educationStudent' @@ -15421,6 +15918,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -15717,7 +16220,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -15909,7 +16411,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -17210,6 +17711,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -17231,7 +17734,6 @@ components: $ref: '#/components/schemas/microsoft.graph.educationExternalSource' externalSourceDetail: type: string - description: The name of the external source this resources was generated from. nullable: true additionalProperties: type: object @@ -17453,6 +17955,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -17685,6 +18188,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -17954,6 +18459,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -17993,7 +18500,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -18692,7 +19198,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -19499,7 +20005,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -19656,50 +20161,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -19707,7 +20202,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -20286,6 +20780,23 @@ components: - extracting - validating type: string + ReferenceCreate: + type: object + properties: + '@odata.id': + type: string + additionalProperties: + type: object + ReferenceUpdate: + type: object + properties: + '@odata.id': + type: string + '@odata.type': + type: string + nullable: true + additionalProperties: + type: object microsoft.graph.ODataErrors.ODataError: required: - error @@ -20457,11 +20968,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -20611,10 +21122,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -20904,7 +21413,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -21153,12 +21661,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -21699,12 +22205,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -22090,6 +22594,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -22384,14 +22933,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -22864,6 +23424,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -23433,7 +24013,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -23913,6 +24493,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -25078,6 +25662,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -26309,43 +26899,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -26852,12 +27435,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -27837,7 +28420,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -28079,7 +28661,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -28899,14 +29480,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -28974,7 +29553,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -28997,7 +29575,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -29100,7 +29677,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -29192,6 +29768,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.operationStatus: title: operationStatus enum: @@ -29459,21 +30043,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -29484,7 +30064,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printerShareViewpoint: @@ -29558,12 +30137,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -29780,11 +30362,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -31036,6 +31618,59 @@ components: additionalProperties: type: object description: The security baseline compliance state of a setting for a device + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.windowsDeviceHealthState: title: windowsDeviceHealthState enum: @@ -33002,7 +33637,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -34197,7 +34831,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -35347,7 +35981,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -38109,6 +38742,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -38117,6 +38752,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -38124,20 +38761,41 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean + requestBodies: + refPostBody: + description: New navigation property ref value + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceCreate' + required: true + refPutBody: + description: New navigation property ref values + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceUpdate' + required: true securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/Files.yml b/openApiDocs/beta/Files.yml index 16fc0fb6df9..03c43a4498a 100644 --- a/openApiDocs/beta/Files.yml +++ b/openApiDocs/beta/Files.yml @@ -11,6 +11,7 @@ paths: tags: - drives.drive summary: Get Drive + description: 'Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries.' operationId: drives.drive_ListDrive parameters: - $ref: '#/components/parameters/top' @@ -151,12 +152,14 @@ paths: tags: - drives.drive summary: Get Drive + description: 'Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries.' operationId: drives.drive_GetDrive parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -279,6 +282,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -305,12 +309,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -324,12 +330,14 @@ paths: tags: - drives.itemActivityOLD summary: Get activities from drives + description: The list of recent activities that took place under this drive. operationId: drives_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -407,6 +415,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -432,12 +441,14 @@ paths: tags: - drives.itemActivityOLD summary: Get activities from drives + description: The list of recent activities that took place under this drive. operationId: drives_GetActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -445,6 +456,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -510,6 +522,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -517,6 +530,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -543,6 +557,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -550,12 +565,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -575,6 +592,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -582,6 +600,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -737,12 +756,14 @@ paths: tags: - drives.itemActivityOLD summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.activities_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -750,6 +771,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -768,12 +790,14 @@ paths: tags: - drives.itemActivityOLD summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.activities_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -781,6 +805,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -809,6 +834,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -816,6 +842,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -927,12 +954,14 @@ paths: tags: - drives.driveItem summary: Get bundles from drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_ListBundles parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1119,12 +1148,14 @@ paths: tags: - drives.driveItem summary: Get bundles from drives + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: drives_GetBundles parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1132,6 +1163,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -1287,12 +1319,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property bundles from drives + description: 'The content stream, if the item represents a file.' operationId: drives_GetBundlesContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1300,6 +1334,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -1318,12 +1353,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property bundles in drives + description: 'The content stream, if the item represents a file.' operationId: drives_SetBundlesContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1331,6 +1368,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -1353,12 +1391,14 @@ paths: tags: - drives.driveItem summary: Get following from drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_ListFollowing parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1545,12 +1585,14 @@ paths: tags: - drives.driveItem summary: Get following from drives + description: The list of items the user is following. Only in OneDrive for Business. operationId: drives_GetFollowing parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1558,6 +1600,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -1713,12 +1756,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property following from drives + description: 'The content stream, if the item represents a file.' operationId: drives_GetFollowingContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1726,6 +1771,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -1744,12 +1790,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property following in drives + description: 'The content stream, if the item represents a file.' operationId: drives_SetFollowingContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1757,6 +1805,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -1779,12 +1828,14 @@ paths: tags: - drives.driveItem summary: Get items from drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_ListItems parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -1976,6 +2027,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2001,12 +2053,14 @@ paths: tags: - drives.driveItem summary: Get items from drives + description: All items contained in the drive. Read-only. Nullable. operationId: drives_GetItems parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2014,6 +2068,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2161,6 +2216,8 @@ paths: parameters: drive-id: $request.path.drive-id driveItem-id: $request.path.driveItem-id + assignSensitivityLabel: + operationId: drives.drive.items.driveItem.assignSensitivityLabel checkin: operationId: drives.drive.items.driveItem.checkin checkout: @@ -2204,6 +2261,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2211,6 +2269,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2237,6 +2296,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2244,12 +2304,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2263,12 +2325,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.items_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2276,6 +2340,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2348,12 +2413,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.items_GetActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2361,6 +2428,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2368,6 +2436,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -2430,12 +2499,14 @@ paths: tags: - drives.driveItem summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.items_GetAnalytics parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2443,6 +2514,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2507,12 +2579,14 @@ paths: tags: - drives.driveItem summary: Get children from drives + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: drives.items_ListChildren parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2520,6 +2594,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2706,12 +2781,14 @@ paths: tags: - drives.driveItem summary: Get children from drives + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: drives.items_GetChildren parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2719,6 +2796,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2726,6 +2804,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2892,12 +2971,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property children from drives + description: 'The content stream, if the item represents a file.' operationId: drives.items_GetChildrenContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2905,6 +2986,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2912,6 +2994,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2930,12 +3013,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property children in drives + description: 'The content stream, if the item represents a file.' operationId: drives.items_SetChildrenContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2943,6 +3028,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2950,6 +3036,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -2972,12 +3059,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property items from drives + description: 'The content stream, if the item represents a file.' operationId: drives_GetItemsContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -2985,6 +3074,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3003,12 +3093,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property items in drives + description: 'The content stream, if the item represents a file.' operationId: drives_SetItemsContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3016,6 +3108,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3038,12 +3131,14 @@ paths: tags: - drives.driveItem summary: Get listItem from drives + description: 'For drives in SharePoint, the associated document library list item. Read-only. Nullable.' operationId: drives.items_GetListItem parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3051,6 +3146,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3171,6 +3267,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3178,6 +3275,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3204,6 +3302,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3211,12 +3310,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3230,12 +3331,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.items.listItem_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3243,6 +3346,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3320,6 +3424,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3327,6 +3432,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3352,12 +3458,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.items.listItem_GetActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3365,6 +3473,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3372,6 +3481,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -3439,6 +3549,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3446,6 +3557,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3453,6 +3565,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -3479,6 +3592,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3486,6 +3600,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3493,12 +3608,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3518,6 +3635,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3525,6 +3643,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3532,6 +3651,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -3698,12 +3818,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.items.listItem.activities_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3711,6 +3833,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3718,6 +3841,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -3736,12 +3860,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.items.listItem.activities_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3749,6 +3875,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3756,6 +3883,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -3784,6 +3912,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3791,6 +3920,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3798,6 +3928,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -3917,12 +4048,14 @@ paths: tags: - drives.driveItem summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.items.listItem_GetAnalytics parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -3930,6 +4063,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -3994,12 +4128,14 @@ paths: tags: - drives.driveItem summary: Get documentSetVersions from drives + description: Version information for a document set version created by a user. operationId: drives.items.listItem_ListDocumentSetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4007,6 +4143,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4097,6 +4234,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4104,6 +4242,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4129,12 +4268,14 @@ paths: tags: - drives.driveItem summary: Get documentSetVersions from drives + description: Version information for a document set version created by a user. operationId: drives.items.listItem_GetDocumentSetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4142,6 +4283,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4149,6 +4291,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -4215,6 +4358,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4222,6 +4366,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4229,6 +4374,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -4255,6 +4401,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4262,6 +4409,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4269,12 +4417,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4294,6 +4444,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4301,6 +4452,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4308,6 +4460,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -4322,12 +4475,14 @@ paths: tags: - drives.driveItem summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.items.listItem_GetDriveItem parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4335,6 +4490,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4490,12 +4646,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.items.listItem_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4503,6 +4661,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4521,12 +4680,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.items.listItem_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4534,6 +4695,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4556,12 +4718,14 @@ paths: tags: - drives.driveItem summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.items.listItem_GetFields parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4569,6 +4733,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4616,6 +4781,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4623,6 +4789,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4649,6 +4816,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4656,12 +4824,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4681,6 +4851,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4688,6 +4859,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4744,6 +4916,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4751,6 +4924,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4758,6 +4932,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -4765,6 +4940,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -4772,6 +4948,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -4798,12 +4975,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.items.listItem_ListVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4811,6 +4990,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4886,6 +5066,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4893,6 +5074,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4918,12 +5100,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.items.listItem_GetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -4931,6 +5115,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -4938,6 +5123,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -4999,6 +5185,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5006,6 +5193,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5013,6 +5201,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -5039,6 +5228,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5046,6 +5236,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5053,12 +5244,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5072,12 +5265,14 @@ paths: tags: - drives.driveItem summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.items.listItem.versions_GetFields parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5085,6 +5280,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5092,6 +5288,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -5139,6 +5336,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5146,6 +5344,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5153,6 +5352,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -5179,6 +5379,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5186,6 +5387,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5193,12 +5395,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5218,6 +5422,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5225,6 +5430,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5232,6 +5438,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -5241,6 +5448,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/drives/{drive-id}/items/{driveItem-id}/microsoft.graph.assignSensitivityLabel': + post: + tags: + - drives.Actions + summary: Invoke action assignSensitivityLabel + operationId: drives.items_assignSensitivityLabel + parameters: + - name: drive-id + in: path + description: 'key: id of drive' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: drive + - name: driveItem-id + in: path + description: 'key: id of driveItem' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: driveItem + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sensitivityLabelId: + type: string + nullable: true + assignmentMethod: + $ref: '#/components/schemas/microsoft.graph.sensitivityLabelAssignmentMethod' + justificationText: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/drives/{drive-id}/items/{driveItem-id}/microsoft.graph.checkin': post: tags: @@ -5252,6 +5506,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5259,6 +5514,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5295,6 +5551,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5302,6 +5559,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5322,6 +5580,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5329,6 +5588,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5368,6 +5628,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5375,6 +5636,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5434,6 +5696,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5441,6 +5704,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5477,6 +5741,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5484,6 +5749,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5516,6 +5782,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5523,6 +5790,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5530,6 +5798,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -5562,6 +5831,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5569,6 +5839,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5593,6 +5864,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5600,6 +5872,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5624,6 +5897,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5631,6 +5905,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5638,6 +5913,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -5645,6 +5921,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -5652,6 +5929,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -5684,6 +5962,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5691,6 +5970,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5763,6 +6043,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5770,6 +6051,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5822,6 +6104,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5829,6 +6112,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5868,6 +6152,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5875,6 +6160,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5882,6 +6168,7 @@ paths: in: path description: 'Usage: q=''{q}''' required: true + style: simple schema: type: string nullable: true @@ -5914,6 +6201,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5921,6 +6209,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5941,6 +6230,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5948,6 +6238,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -5977,12 +6268,14 @@ paths: tags: - drives.driveItem summary: Get permissions from drives + description: The set of permissions for the item. Read-only. Nullable. operationId: drives.items_ListPermissions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -5990,6 +6283,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6087,6 +6381,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6094,6 +6389,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6119,12 +6415,14 @@ paths: tags: - drives.driveItem summary: Get permissions from drives + description: The set of permissions for the item. Read-only. Nullable. operationId: drives.items_GetPermissions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6132,6 +6430,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6139,6 +6438,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -6202,6 +6502,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6209,6 +6510,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6216,6 +6518,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -6242,6 +6545,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6249,6 +6553,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6256,12 +6561,14 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6281,6 +6588,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6288,6 +6596,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6295,6 +6604,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -6346,6 +6656,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6353,6 +6664,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6360,6 +6672,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -6392,12 +6705,14 @@ paths: tags: - drives.driveItem summary: Get subscriptions from drives + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: drives.items_ListSubscriptions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6405,6 +6720,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6514,6 +6830,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6521,6 +6838,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6546,12 +6864,14 @@ paths: tags: - drives.driveItem summary: Get subscriptions from drives + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: drives.items_GetSubscriptions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6559,6 +6879,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6566,6 +6887,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -6631,6 +6953,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6638,6 +6961,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6645,6 +6969,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -6671,6 +6996,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6678,6 +7004,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6685,12 +7012,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6710,6 +7039,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6717,6 +7047,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6724,6 +7055,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -6738,12 +7070,14 @@ paths: tags: - drives.driveItem summary: Get thumbnails from drives + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: drives.items_ListThumbnails parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6751,6 +7085,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6827,6 +7162,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6834,6 +7170,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6859,12 +7196,14 @@ paths: tags: - drives.driveItem summary: Get thumbnails from drives + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: drives.items_GetThumbnails parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6872,6 +7211,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6879,6 +7219,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -6930,6 +7271,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6937,6 +7279,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6944,6 +7287,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -6970,6 +7314,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -6977,6 +7322,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -6984,12 +7330,14 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7003,12 +7351,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: drives.items_ListVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7016,6 +7366,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7095,6 +7446,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7102,6 +7454,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7127,12 +7480,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: drives.items_GetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7140,6 +7495,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7147,6 +7503,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -7202,6 +7559,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7209,6 +7567,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7216,6 +7575,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -7242,6 +7602,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7249,6 +7610,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7256,12 +7618,14 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7281,6 +7645,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7288,6 +7653,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7295,6 +7661,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -7319,6 +7686,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7326,6 +7694,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7333,6 +7702,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -7361,6 +7731,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7368,6 +7739,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -7375,6 +7747,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -7389,12 +7762,14 @@ paths: tags: - drives.list summary: Get list from drives + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: drives_GetList parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7510,6 +7885,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7536,12 +7912,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7555,12 +7933,14 @@ paths: tags: - drives.list summary: Get activities from drives + description: The recent activities that took place within this list. operationId: drives.list_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7638,6 +8018,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7669,6 +8050,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7828,6 +8210,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7859,6 +8242,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7866,6 +8250,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -7952,6 +8337,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7959,6 +8345,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -7985,6 +8372,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -7992,12 +8380,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8011,12 +8401,14 @@ paths: tags: - drives.list summary: Get sourceColumn from drives + description: The source column for content type column. operationId: drives.list.columns_GetSourceColumn parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8024,6 +8416,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -8111,6 +8504,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8227,6 +8621,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8258,6 +8653,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8265,6 +8661,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8372,6 +8769,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8379,6 +8777,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8405,6 +8804,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8412,12 +8812,14 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8431,12 +8833,14 @@ paths: tags: - drives.list summary: Get base from drives + description: Parent contentType from which this content type is derived. operationId: drives.list.contentTypes_GetBase parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8444,6 +8848,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8536,12 +8941,14 @@ paths: tags: - drives.list summary: Get baseTypes from drives + description: The collection of content types that are ancestors of this content type. operationId: drives.list.contentTypes_ListBaseTypes parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8549,6 +8956,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8660,12 +9068,14 @@ paths: tags: - drives.list summary: Get baseTypes from drives + description: The collection of content types that are ancestors of this content type. operationId: drives.list.contentTypes_GetBaseTypes parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8673,6 +9083,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8680,6 +9091,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8777,12 +9189,14 @@ paths: tags: - drives.list summary: Get columnLinks from drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_ListColumnLinks parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8790,6 +9204,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8857,6 +9272,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8864,6 +9280,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8889,12 +9306,14 @@ paths: tags: - drives.list summary: Get columnLinks from drives + description: The collection of columns that are required by this content type operationId: drives.list.contentTypes_GetColumnLinks parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8902,6 +9321,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8909,6 +9329,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -8957,6 +9378,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -8964,6 +9386,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -8971,6 +9394,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -8997,6 +9421,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9004,6 +9429,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9011,12 +9437,14 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9030,12 +9458,14 @@ paths: tags: - drives.list summary: Get columnPositions from drives + description: Column order information in a content type. operationId: drives.list.contentTypes_ListColumnPositions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9043,6 +9473,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9197,12 +9628,14 @@ paths: tags: - drives.list summary: Get columnPositions from drives + description: Column order information in a content type. operationId: drives.list.contentTypes_GetColumnPositions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9210,6 +9643,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9217,6 +9651,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -9299,12 +9734,14 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_ListColumns parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9312,6 +9749,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9471,6 +9909,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9478,6 +9917,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9503,12 +9943,14 @@ paths: tags: - drives.list summary: Get columns from drives + description: The collection of column definitions for this contentType. operationId: drives.list.contentTypes_GetColumns parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9516,6 +9958,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9523,6 +9966,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -9610,6 +10054,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9617,6 +10062,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9624,6 +10070,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -9650,6 +10097,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9657,6 +10105,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9664,12 +10113,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9683,12 +10134,14 @@ paths: tags: - drives.list summary: Get sourceColumn from drives + description: The source column for content type column. operationId: drives.list.contentTypes.columns_GetSourceColumn parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9696,6 +10149,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9703,6 +10157,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -9791,6 +10246,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9798,6 +10254,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9836,6 +10293,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9843,6 +10301,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9878,6 +10337,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9885,6 +10345,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9915,6 +10376,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9922,6 +10384,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9942,6 +10405,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -9949,6 +10413,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -9969,6 +10434,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10005,6 +10471,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10041,6 +10508,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10067,12 +10535,14 @@ paths: tags: - drives.list summary: Get drive from drives + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: drives.list_GetDrive parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10184,12 +10654,14 @@ paths: tags: - drives.list summary: Get items from drives + description: All items contained in the list. operationId: drives.list_ListItems parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10306,6 +10778,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10331,12 +10804,14 @@ paths: tags: - drives.list summary: Get items from drives + description: All items contained in the list. operationId: drives.list_GetItems parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10344,6 +10819,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10464,6 +10940,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10471,6 +10948,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10497,6 +10975,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10504,12 +10983,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10523,12 +11004,14 @@ paths: tags: - drives.list summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10536,6 +11019,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10613,6 +11097,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10620,6 +11105,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10645,12 +11131,14 @@ paths: tags: - drives.list summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.list.items_GetActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10658,6 +11146,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10665,6 +11154,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -10732,6 +11222,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10739,6 +11230,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10746,6 +11238,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -10772,6 +11265,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10779,6 +11273,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10786,12 +11281,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10811,6 +11308,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -10818,6 +11316,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -10825,6 +11324,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -10991,12 +11491,14 @@ paths: tags: - drives.list summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.list.items.activities_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11004,6 +11506,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11011,6 +11514,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -11029,12 +11533,14 @@ paths: tags: - drives.list summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.list.items.activities_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11042,6 +11548,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11049,6 +11556,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -11077,6 +11585,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11084,6 +11593,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11091,6 +11601,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -11210,12 +11721,14 @@ paths: tags: - drives.list summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.list.items_GetAnalytics parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11223,6 +11736,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11287,12 +11801,14 @@ paths: tags: - drives.list summary: Get documentSetVersions from drives + description: Version information for a document set version created by a user. operationId: drives.list.items_ListDocumentSetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11300,6 +11816,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11390,6 +11907,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11397,6 +11915,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11422,12 +11941,14 @@ paths: tags: - drives.list summary: Get documentSetVersions from drives + description: Version information for a document set version created by a user. operationId: drives.list.items_GetDocumentSetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11435,6 +11956,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11442,6 +11964,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -11508,6 +12031,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11515,6 +12039,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11522,6 +12047,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -11548,6 +12074,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11555,6 +12082,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11562,12 +12090,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11587,6 +12117,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11594,6 +12125,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11601,6 +12133,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -11615,12 +12148,14 @@ paths: tags: - drives.list summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.list.items_GetDriveItem parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11628,6 +12163,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11783,12 +12319,14 @@ paths: tags: - drives.list summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.list.items_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11796,6 +12334,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11814,12 +12353,14 @@ paths: tags: - drives.list summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.list.items_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11827,6 +12368,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11849,12 +12391,14 @@ paths: tags: - drives.list summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.list.items_GetFields parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11862,6 +12406,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11909,6 +12454,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11916,6 +12462,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -11942,6 +12489,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11949,12 +12497,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11974,6 +12524,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -11981,6 +12532,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12037,6 +12589,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12044,6 +12597,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12051,6 +12605,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -12058,6 +12613,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -12065,6 +12621,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -12091,12 +12648,14 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.items_ListVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12104,6 +12663,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12179,6 +12739,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12186,6 +12747,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12211,12 +12773,14 @@ paths: tags: - drives.list summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.list.items_GetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12224,6 +12788,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12231,6 +12796,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -12292,6 +12858,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12299,6 +12866,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12306,6 +12874,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -12332,6 +12901,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12339,6 +12909,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12346,12 +12917,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12365,12 +12938,14 @@ paths: tags: - drives.list summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.list.items.versions_GetFields parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12378,6 +12953,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12385,6 +12961,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -12432,6 +13009,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12439,6 +13017,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12446,6 +13025,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -12472,6 +13052,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12479,6 +13060,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12486,12 +13068,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12511,6 +13095,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12518,6 +13103,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -12525,6 +13111,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -12545,6 +13132,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12577,6 +13165,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12584,6 +13173,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -12610,12 +13200,14 @@ paths: tags: - drives.list summary: Get operations from drives + description: The collection of long running operations for the list. operationId: drives.list_ListOperations parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12707,6 +13299,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12732,12 +13325,14 @@ paths: tags: - drives.list summary: Get operations from drives + description: The collection of long running operations for the list. operationId: drives.list_GetOperations parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12745,6 +13340,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -12801,6 +13397,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12808,6 +13405,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -12834,6 +13432,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12841,12 +13440,14 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12860,12 +13461,14 @@ paths: tags: - drives.list summary: Get subscriptions from drives + description: The set of subscriptions on the list. operationId: drives.list_ListSubscriptions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12975,6 +13578,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13000,12 +13604,14 @@ paths: tags: - drives.list summary: Get subscriptions from drives + description: The set of subscriptions on the list. operationId: drives.list_GetSubscriptions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13013,6 +13619,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -13078,6 +13685,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13085,6 +13693,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -13111,6 +13720,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13118,12 +13728,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13143,6 +13755,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13150,6 +13763,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -13170,6 +13784,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13202,6 +13817,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13209,6 +13825,7 @@ paths: in: path description: 'Usage: q=''{q}''' required: true + style: simple schema: type: string nullable: true @@ -13241,6 +13858,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13267,12 +13885,14 @@ paths: tags: - drives.driveItem summary: Get root from drives + description: The root folder of the drive. Read-only. operationId: drives_GetRoot parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13409,6 +14029,8 @@ paths: operationId: drives.Root.ListVersions parameters: drive-id: $request.path.drive-id + assignSensitivityLabel: + operationId: drives.drive.root.assignSensitivityLabel checkin: operationId: drives.drive.root.checkin checkout: @@ -13452,6 +14074,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13478,12 +14101,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13497,12 +14122,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.root_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13575,12 +14202,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.root_GetActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13588,6 +14217,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -13648,12 +14278,14 @@ paths: tags: - drives.driveItem summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.root_GetAnalytics parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13715,12 +14347,14 @@ paths: tags: - drives.driveItem summary: Get children from drives + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: drives.root_ListChildren parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13907,12 +14541,14 @@ paths: tags: - drives.driveItem summary: Get children from drives + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: drives.root_GetChildren parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13920,6 +14556,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -14075,12 +14712,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property children from drives + description: 'The content stream, if the item represents a file.' operationId: drives.root_GetChildrenContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14088,6 +14727,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -14106,12 +14746,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property children in drives + description: 'The content stream, if the item represents a file.' operationId: drives.root_SetChildrenContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14119,6 +14761,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -14141,12 +14784,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property root from drives + description: 'The content stream, if the item represents a file.' operationId: drives_GetRootContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14165,12 +14810,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property root in drives + description: 'The content stream, if the item represents a file.' operationId: drives_SetRootContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14193,12 +14840,14 @@ paths: tags: - drives.driveItem summary: Get listItem from drives + description: 'For drives in SharePoint, the associated document library list item. Read-only. Nullable.' operationId: drives.root_GetListItem parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14311,6 +14960,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14337,12 +14987,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14356,12 +15008,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.root.listItem_ListActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14439,6 +15093,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14464,12 +15119,14 @@ paths: tags: - drives.driveItem summary: Get activities from drives + description: The list of recent activities that took place on this item. operationId: drives.root.listItem_GetActivities parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14477,6 +15134,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -14542,6 +15200,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14549,6 +15208,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -14575,6 +15235,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14582,12 +15243,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14607,6 +15270,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14614,6 +15278,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -14769,12 +15434,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.root.listItem.activities_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14782,6 +15449,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -14800,12 +15468,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.root.listItem.activities_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14813,6 +15483,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -14841,6 +15512,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14848,6 +15520,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -14959,12 +15632,14 @@ paths: tags: - drives.driveItem summary: Get analytics from drives + description: Analytics about the view activities that took place on this item. operationId: drives.root.listItem_GetAnalytics parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15026,12 +15701,14 @@ paths: tags: - drives.driveItem summary: Get documentSetVersions from drives + description: Version information for a document set version created by a user. operationId: drives.root.listItem_ListDocumentSetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15122,6 +15799,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15147,12 +15825,14 @@ paths: tags: - drives.driveItem summary: Get documentSetVersions from drives + description: Version information for a document set version created by a user. operationId: drives.root.listItem_GetDocumentSetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15160,6 +15840,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -15225,6 +15906,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15232,6 +15914,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -15258,6 +15941,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15265,12 +15949,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15290,6 +15976,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15297,6 +15984,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -15311,12 +15999,14 @@ paths: tags: - drives.driveItem summary: Get driveItem from drives + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: drives.root.listItem_GetDriveItem parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15461,12 +16151,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property driveItem from drives + description: 'The content stream, if the item represents a file.' operationId: drives.root.listItem_GetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15485,12 +16177,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property driveItem in drives + description: 'The content stream, if the item represents a file.' operationId: drives.root.listItem_SetDriveItemContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15513,12 +16207,14 @@ paths: tags: - drives.driveItem summary: Get fields from drives + description: The values of the columns set on this list item. operationId: drives.root.listItem_GetFields parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15566,6 +16262,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15592,12 +16289,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15617,6 +16316,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15673,6 +16373,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15680,6 +16381,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -15687,6 +16389,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -15694,6 +16397,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -15720,12 +16424,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.root.listItem_ListVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15801,6 +16507,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15826,12 +16533,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: The list of previous versions of the list item. operationId: drives.root.listItem_GetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15839,6 +16548,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -15899,6 +16609,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15906,6 +16617,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -15932,6 +16644,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15939,12 +16652,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15958,12 +16673,14 @@ paths: tags: - drives.driveItem summary: Get fields from drives + description: A collection of the fields and values for this version of the list item. operationId: drives.root.listItem.versions_GetFields parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15971,6 +16688,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -16018,6 +16736,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16025,6 +16744,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -16051,6 +16771,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16058,12 +16779,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16083,6 +16806,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16090,6 +16814,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -16099,6 +16824,45 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/drives/{drive-id}/root/microsoft.graph.assignSensitivityLabel': + post: + tags: + - drives.Actions + summary: Invoke action assignSensitivityLabel + operationId: drives.root_assignSensitivityLabel + parameters: + - name: drive-id + in: path + description: 'key: id of drive' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: drive + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sensitivityLabelId: + type: string + nullable: true + assignmentMethod: + $ref: '#/components/schemas/microsoft.graph.sensitivityLabelAssignmentMethod' + justificationText: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/drives/{drive-id}/root/microsoft.graph.checkin': post: tags: @@ -16110,6 +16874,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16146,6 +16911,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16166,6 +16932,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16205,6 +16972,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16264,6 +17032,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16300,6 +17069,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16332,6 +17102,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16339,6 +17110,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -16371,6 +17143,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16395,6 +17168,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16419,6 +17193,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16426,6 +17201,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -16433,6 +17209,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -16440,6 +17217,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -16472,6 +17250,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16544,6 +17323,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16596,6 +17376,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16635,6 +17416,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16642,6 +17424,7 @@ paths: in: path description: 'Usage: q=''{q}''' required: true + style: simple schema: type: string nullable: true @@ -16674,6 +17457,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16694,6 +17478,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16723,12 +17508,14 @@ paths: tags: - drives.driveItem summary: Get permissions from drives + description: The set of permissions for the item. Read-only. Nullable. operationId: drives.root_ListPermissions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16826,6 +17613,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16851,12 +17639,14 @@ paths: tags: - drives.driveItem summary: Get permissions from drives + description: The set of permissions for the item. Read-only. Nullable. operationId: drives.root_GetPermissions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16864,6 +17654,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -16927,6 +17718,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16934,6 +17726,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -16960,6 +17753,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16967,12 +17761,14 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16992,6 +17788,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -16999,6 +17796,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -17050,6 +17848,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17057,6 +17856,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -17089,12 +17889,14 @@ paths: tags: - drives.driveItem summary: Get subscriptions from drives + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: drives.root_ListSubscriptions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17204,6 +18006,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17229,12 +18032,14 @@ paths: tags: - drives.driveItem summary: Get subscriptions from drives + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: drives.root_GetSubscriptions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17242,6 +18047,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -17307,6 +18113,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17314,6 +18121,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -17340,6 +18148,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17347,12 +18156,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17372,6 +18183,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17379,6 +18191,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -17393,12 +18206,14 @@ paths: tags: - drives.driveItem summary: Get thumbnails from drives + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: drives.root_ListThumbnails parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17475,6 +18290,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17500,12 +18316,14 @@ paths: tags: - drives.driveItem summary: Get thumbnails from drives + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: drives.root_GetThumbnails parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17513,6 +18331,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -17564,6 +18383,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17571,6 +18391,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -17597,6 +18418,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17604,12 +18426,14 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17623,12 +18447,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: drives.root_ListVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17708,6 +18534,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17733,12 +18560,14 @@ paths: tags: - drives.driveItem summary: Get versions from drives + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: drives.root_GetVersions parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17746,6 +18575,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -17801,6 +18631,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17808,6 +18639,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -17834,6 +18666,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17841,12 +18674,14 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17866,6 +18701,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17873,6 +18709,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -17897,6 +18734,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17904,6 +18742,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -17932,6 +18771,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -17939,6 +18779,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -17953,12 +18794,14 @@ paths: tags: - drives.driveItem summary: Get special from drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_ListSpecial parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18145,12 +18988,14 @@ paths: tags: - drives.driveItem summary: Get special from drives + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: drives_GetSpecial parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18158,6 +19003,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -18313,12 +19159,14 @@ paths: tags: - drives.driveItem summary: Get content for the navigation property special from drives + description: 'The content stream, if the item represents a file.' operationId: drives_GetSpecialContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18326,6 +19174,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -18344,12 +19193,14 @@ paths: tags: - drives.driveItem summary: Update content for the navigation property special in drives + description: 'The content stream, if the item represents a file.' operationId: drives_SetSpecialContent parameters: - name: drive-id in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18357,6 +19208,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -18379,12 +19231,14 @@ paths: tags: - groups.drive summary: Get drive from groups + description: The group's default drive. Read-only. operationId: groups_GetDrive parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18496,12 +19350,14 @@ paths: tags: - groups.drive summary: Get drives from groups + description: The group's drives. Read-only. operationId: groups_ListDrives parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18626,6 +19482,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18651,12 +19508,14 @@ paths: tags: - groups.drive summary: Get drives from groups + description: The group's drives. Read-only. operationId: groups_GetDrives parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18664,6 +19523,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18795,6 +19655,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18802,6 +19663,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18828,6 +19690,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18835,12 +19698,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18854,12 +19719,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place under this drive. operationId: groups.drives_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18867,6 +19734,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18944,6 +19812,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18951,6 +19820,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18976,12 +19846,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place under this drive. operationId: groups.drives_GetActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18989,6 +19861,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -18996,6 +19869,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -19063,6 +19937,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19070,6 +19945,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19077,6 +19953,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -19103,6 +19980,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19110,6 +19988,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19117,12 +19996,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19142,6 +20023,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19149,6 +20031,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19156,6 +20039,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -19322,12 +20206,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.activities_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19335,6 +20221,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19342,6 +20229,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -19360,12 +20248,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.activities_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19373,6 +20263,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19380,6 +20271,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -19408,6 +20300,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19415,6 +20308,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19422,6 +20316,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -19541,12 +20436,14 @@ paths: tags: - groups.drive summary: Get bundles from groups + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: groups.drives_ListBundles parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19554,6 +20451,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19740,12 +20638,14 @@ paths: tags: - groups.drive summary: Get bundles from groups + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: groups.drives_GetBundles parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19753,6 +20653,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19760,6 +20661,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -19926,12 +20828,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property bundles from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_GetBundlesContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19939,6 +20843,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19946,6 +20851,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -19964,12 +20870,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property bundles in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_SetBundlesContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19977,6 +20885,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -19984,6 +20893,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -20006,12 +20916,14 @@ paths: tags: - groups.drive summary: Get following from groups + description: The list of items the user is following. Only in OneDrive for Business. operationId: groups.drives_ListFollowing parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20019,6 +20931,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20205,12 +21118,14 @@ paths: tags: - groups.drive summary: Get following from groups + description: The list of items the user is following. Only in OneDrive for Business. operationId: groups.drives_GetFollowing parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20218,6 +21133,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20225,6 +21141,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -20391,12 +21308,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property following from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_GetFollowingContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20404,6 +21323,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20411,6 +21331,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -20429,12 +21350,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property following in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_SetFollowingContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20442,6 +21365,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20449,6 +21373,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -20471,12 +21396,14 @@ paths: tags: - groups.drive summary: Get items from groups + description: All items contained in the drive. Read-only. Nullable. operationId: groups.drives_ListItems parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20484,6 +21411,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20675,6 +21603,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20682,6 +21611,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20707,12 +21637,14 @@ paths: tags: - groups.drive summary: Get items from groups + description: All items contained in the drive. Read-only. Nullable. operationId: groups.drives_GetItems parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20720,6 +21652,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20727,6 +21660,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -20885,6 +21819,8 @@ paths: group-id: $request.path.group-id drive-id: $request.path.drive-id driveItem-id: $request.path.driveItem-id + assignSensitivityLabel: + operationId: groups.group.drives.drive.items.driveItem.assignSensitivityLabel checkin: operationId: groups.group.drives.drive.items.driveItem.checkin checkout: @@ -20928,6 +21864,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20935,6 +21872,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20942,6 +21880,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -20968,6 +21907,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20975,6 +21915,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -20982,12 +21923,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21001,12 +21944,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.items_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21014,6 +21959,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21021,6 +21967,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21093,12 +22040,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.items_GetActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21106,6 +22055,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21113,6 +22063,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21120,6 +22071,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -21184,12 +22136,14 @@ paths: tags: - groups.drive summary: Get analytics from groups + description: Analytics about the view activities that took place on this item. operationId: groups.drives.items_GetAnalytics parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21197,6 +22151,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21204,6 +22159,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21271,12 +22227,14 @@ paths: tags: - groups.drive summary: Get children from groups + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: groups.drives.items_ListChildren parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21284,6 +22242,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21291,6 +22250,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21477,12 +22437,14 @@ paths: tags: - groups.drive summary: Get children from groups + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: groups.drives.items_GetChildren parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21490,6 +22452,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21497,6 +22460,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21504,6 +22468,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21681,12 +22646,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property children from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.items_GetChildrenContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21694,6 +22661,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21701,6 +22669,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21708,6 +22677,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21726,12 +22696,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property children in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.items_SetChildrenContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21739,6 +22711,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21746,6 +22719,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21753,6 +22727,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21775,12 +22750,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property items from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_GetItemsContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21788,6 +22765,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21795,6 +22773,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21813,12 +22792,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property items in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_SetItemsContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21826,6 +22807,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21833,6 +22815,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -21855,12 +22838,14 @@ paths: tags: - groups.drive summary: Get listItem from groups + description: 'For drives in SharePoint, the associated document library list item. Read-only. Nullable.' operationId: groups.drives.items_GetListItem parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21868,6 +22853,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -21875,6 +22861,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22003,6 +22990,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22010,6 +22998,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22017,6 +23006,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22043,6 +23033,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22050,6 +23041,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22057,12 +23049,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22076,12 +23070,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.items.listItem_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22089,6 +23085,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22096,6 +23093,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22173,6 +23171,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22180,6 +23179,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22187,6 +23187,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22212,12 +23213,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.items.listItem_GetActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22225,6 +23228,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22232,6 +23236,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22239,6 +23244,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -22308,6 +23314,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22315,6 +23322,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22322,6 +23330,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22329,6 +23338,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -22355,6 +23365,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22362,6 +23373,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22369,6 +23381,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22376,12 +23389,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22401,6 +23416,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22408,6 +23424,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22415,6 +23432,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22422,6 +23440,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -22599,12 +23618,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.items.listItem.activities_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22612,6 +23633,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22619,6 +23641,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22626,6 +23649,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -22644,12 +23668,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.items.listItem.activities_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22657,6 +23683,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22664,6 +23691,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22671,6 +23699,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -22699,6 +23728,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22706,6 +23736,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22713,6 +23744,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22720,6 +23752,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -22847,12 +23880,14 @@ paths: tags: - groups.drive summary: Get analytics from groups + description: Analytics about the view activities that took place on this item. operationId: groups.drives.items.listItem_GetAnalytics parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22860,6 +23895,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22867,6 +23903,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -22934,12 +23971,14 @@ paths: tags: - groups.drive summary: Get documentSetVersions from groups + description: Version information for a document set version created by a user. operationId: groups.drives.items.listItem_ListDocumentSetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22947,6 +23986,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -22954,6 +23994,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23044,6 +24085,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23051,6 +24093,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23058,6 +24101,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23083,12 +24127,14 @@ paths: tags: - groups.drive summary: Get documentSetVersions from groups + description: Version information for a document set version created by a user. operationId: groups.drives.items.listItem_GetDocumentSetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23096,6 +24142,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23103,6 +24150,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23110,6 +24158,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -23177,6 +24226,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23184,6 +24234,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23191,6 +24242,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23198,6 +24250,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -23224,6 +24277,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23231,6 +24285,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23238,6 +24293,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23245,12 +24301,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23264,12 +24322,14 @@ paths: tags: - groups.drive summary: Get driveItem from groups + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: groups.drives.items.listItem_GetDriveItem parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23277,6 +24337,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23284,6 +24345,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23450,12 +24512,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.items.listItem_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23463,6 +24527,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23470,6 +24535,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23488,12 +24554,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.items.listItem_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23501,6 +24569,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23508,6 +24577,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23530,12 +24600,14 @@ paths: tags: - groups.drive summary: Get fields from groups + description: The values of the columns set on this list item. operationId: groups.drives.items.listItem_GetFields parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23543,6 +24615,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23550,6 +24623,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23597,6 +24671,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23604,6 +24679,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23611,6 +24687,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23637,6 +24714,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23644,6 +24722,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23651,12 +24730,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23670,12 +24751,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: The list of previous versions of the list item. operationId: groups.drives.items.listItem_ListVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23683,6 +24766,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23690,6 +24774,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23765,6 +24850,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23772,6 +24858,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23779,6 +24866,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23804,12 +24892,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: The list of previous versions of the list item. operationId: groups.drives.items.listItem_GetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23817,6 +24907,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23824,6 +24915,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23831,6 +24923,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -23893,6 +24986,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23900,6 +24994,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23907,6 +25002,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23914,6 +25010,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -23940,6 +25037,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23947,6 +25045,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -23954,6 +25053,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -23961,12 +25061,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23980,12 +25082,14 @@ paths: tags: - groups.drive summary: Get fields from groups + description: A collection of the fields and values for this version of the list item. operationId: groups.drives.items.listItem.versions_GetFields parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23993,6 +25097,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24000,6 +25105,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24007,6 +25113,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -24054,6 +25161,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24061,6 +25169,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24068,6 +25177,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24075,6 +25185,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -24101,6 +25212,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24108,6 +25220,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24115,6 +25228,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24122,12 +25236,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24141,12 +25257,14 @@ paths: tags: - groups.drive summary: Get permissions from groups + description: The set of permissions for the item. Read-only. Nullable. operationId: groups.drives.items_ListPermissions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24154,6 +25272,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24161,6 +25280,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24258,6 +25378,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24265,6 +25386,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24272,6 +25394,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24297,12 +25420,14 @@ paths: tags: - groups.drive summary: Get permissions from groups + description: The set of permissions for the item. Read-only. Nullable. operationId: groups.drives.items_GetPermissions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24310,6 +25435,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24317,6 +25443,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24324,6 +25451,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -24387,6 +25515,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24394,6 +25523,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24401,6 +25531,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24408,6 +25539,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -24434,6 +25566,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24441,6 +25574,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24448,6 +25582,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24455,12 +25590,14 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24474,12 +25611,14 @@ paths: tags: - groups.drive summary: Get subscriptions from groups + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: groups.drives.items_ListSubscriptions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24487,6 +25626,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24494,6 +25634,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24603,6 +25744,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24610,6 +25752,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24617,6 +25760,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24642,12 +25786,14 @@ paths: tags: - groups.drive summary: Get subscriptions from groups + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: groups.drives.items_GetSubscriptions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24655,6 +25801,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24662,6 +25809,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24669,6 +25817,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -24734,6 +25883,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24741,6 +25891,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24748,6 +25899,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24755,6 +25907,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -24781,6 +25934,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24788,6 +25942,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24795,6 +25950,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24802,12 +25958,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24821,12 +25979,14 @@ paths: tags: - groups.drive summary: Get thumbnails from groups + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: groups.drives.items_ListThumbnails parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24834,6 +25994,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24841,6 +26002,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24917,6 +26079,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24924,6 +26087,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24931,6 +26095,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24956,12 +26121,14 @@ paths: tags: - groups.drive summary: Get thumbnails from groups + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: groups.drives.items_GetThumbnails parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24969,6 +26136,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -24976,6 +26144,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -24983,6 +26152,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -25034,6 +26204,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25041,6 +26212,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25048,6 +26220,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25055,6 +26228,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -25081,6 +26255,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25088,6 +26263,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25095,6 +26271,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25102,12 +26279,14 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25121,12 +26300,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: groups.drives.items_ListVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25134,6 +26315,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25141,6 +26323,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25220,6 +26403,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25227,6 +26411,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25234,6 +26419,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25259,12 +26445,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: groups.drives.items_GetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25272,6 +26460,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25279,6 +26468,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25286,6 +26476,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -25341,6 +26532,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25348,6 +26540,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25355,6 +26548,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25362,6 +26556,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -25388,6 +26583,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25395,6 +26591,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25402,6 +26599,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25409,12 +26607,14 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25434,6 +26634,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25441,6 +26642,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25448,6 +26650,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25455,6 +26658,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -25479,6 +26683,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25486,6 +26691,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25493,6 +26699,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -25500,6 +26707,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -25522,12 +26730,14 @@ paths: tags: - groups.drive summary: Get list from groups + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: groups.drives_GetList parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25535,6 +26745,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25659,6 +26870,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25666,6 +26878,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25692,6 +26905,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25699,12 +26913,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25718,12 +26934,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The recent activities that took place within this list. operationId: groups.drives.list_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25731,6 +26949,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25808,6 +27027,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25815,6 +27035,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -25846,6 +27067,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25853,6 +27075,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26012,6 +27235,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26019,6 +27243,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26050,6 +27275,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26057,6 +27283,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26064,6 +27291,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -26151,6 +27379,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26158,6 +27387,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26165,6 +27395,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -26191,6 +27422,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26198,6 +27430,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26205,12 +27438,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26224,12 +27459,14 @@ paths: tags: - groups.drive summary: Get sourceColumn from groups + description: The source column for content type column. operationId: groups.drives.list.columns_GetSourceColumn parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26237,6 +27474,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26244,6 +27482,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -26332,6 +27571,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26339,6 +27579,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26455,6 +27696,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26462,6 +27704,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26493,6 +27736,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26500,6 +27744,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26507,6 +27752,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -26619,6 +27865,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26626,6 +27873,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26633,6 +27881,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -26659,6 +27908,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26666,6 +27916,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26673,12 +27924,14 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26692,12 +27945,14 @@ paths: tags: - groups.drive summary: Get base from groups + description: Parent contentType from which this content type is derived. operationId: groups.drives.list.contentTypes_GetBase parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26705,6 +27960,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26712,6 +27968,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -26809,12 +28066,14 @@ paths: tags: - groups.drive summary: Get baseTypes from groups + description: The collection of content types that are ancestors of this content type. operationId: groups.drives.list.contentTypes_ListBaseTypes parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26822,6 +28081,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26829,6 +28089,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -26940,12 +28201,14 @@ paths: tags: - groups.drive summary: Get baseTypes from groups + description: The collection of content types that are ancestors of this content type. operationId: groups.drives.list.contentTypes_GetBaseTypes parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26953,6 +28216,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -26960,6 +28224,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -26967,6 +28232,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27069,12 +28335,14 @@ paths: tags: - groups.drive summary: Get columnLinks from groups + description: The collection of columns that are required by this content type operationId: groups.drives.list.contentTypes_ListColumnLinks parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27082,6 +28350,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27089,6 +28358,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27156,6 +28426,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27163,6 +28434,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27170,6 +28442,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27195,12 +28468,14 @@ paths: tags: - groups.drive summary: Get columnLinks from groups + description: The collection of columns that are required by this content type operationId: groups.drives.list.contentTypes_GetColumnLinks parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27208,6 +28483,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27215,6 +28491,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27222,6 +28499,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -27270,6 +28548,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27277,6 +28556,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27284,6 +28564,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27291,6 +28572,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -27317,6 +28599,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27324,6 +28607,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27331,6 +28615,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27338,12 +28623,14 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27357,12 +28644,14 @@ paths: tags: - groups.drive summary: Get columnPositions from groups + description: Column order information in a content type. operationId: groups.drives.list.contentTypes_ListColumnPositions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27370,6 +28659,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27377,6 +28667,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27531,12 +28822,14 @@ paths: tags: - groups.drive summary: Get columnPositions from groups + description: Column order information in a content type. operationId: groups.drives.list.contentTypes_GetColumnPositions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27544,6 +28837,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27551,6 +28845,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27558,6 +28853,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -27641,12 +28937,14 @@ paths: tags: - groups.drive summary: Get columns from groups + description: The collection of column definitions for this contentType. operationId: groups.drives.list.contentTypes_ListColumns parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27654,6 +28952,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27661,6 +28960,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27820,6 +29120,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27827,6 +29128,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27834,6 +29136,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27859,12 +29162,14 @@ paths: tags: - groups.drive summary: Get columns from groups + description: The collection of column definitions for this contentType. operationId: groups.drives.list.contentTypes_GetColumns parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27872,6 +29177,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27879,6 +29185,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27886,6 +29193,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -27974,6 +29282,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27981,6 +29290,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -27988,6 +29298,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -27995,6 +29306,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -28021,6 +29333,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28028,6 +29341,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28035,6 +29349,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -28042,12 +29357,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28061,12 +29378,14 @@ paths: tags: - groups.drive summary: Get sourceColumn from groups + description: The source column for content type column. operationId: groups.drives.list.contentTypes.columns_GetSourceColumn parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28074,6 +29393,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28081,6 +29401,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -28088,6 +29409,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -28171,12 +29493,14 @@ paths: tags: - groups.drive summary: Get drive from groups + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: groups.drives.list_GetDrive parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28184,6 +29508,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28304,12 +29629,14 @@ paths: tags: - groups.drive summary: Get items from groups + description: All items contained in the list. operationId: groups.drives.list_ListItems parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28317,6 +29644,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28433,6 +29761,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28440,6 +29769,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28465,12 +29795,14 @@ paths: tags: - groups.drive summary: Get items from groups + description: All items contained in the list. operationId: groups.drives.list_GetItems parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28478,6 +29810,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28485,6 +29818,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28613,6 +29947,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28620,6 +29955,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28627,6 +29963,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28653,6 +29990,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28660,6 +29998,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28667,12 +30006,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28686,12 +30027,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.list.items_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28699,6 +30042,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28706,6 +30050,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28783,6 +30128,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28790,6 +30136,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28797,6 +30144,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28822,12 +30170,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.list.items_GetActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28835,6 +30185,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28842,6 +30193,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28849,6 +30201,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -28918,6 +30271,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28925,6 +30279,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28932,6 +30287,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28939,6 +30295,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -28965,6 +30322,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28972,6 +30330,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -28979,6 +30338,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -28986,12 +30346,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29011,6 +30373,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29018,6 +30381,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29025,6 +30389,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29032,6 +30397,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -29209,12 +30575,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.list.items.activities_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29222,6 +30590,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29229,6 +30598,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29236,6 +30606,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -29254,12 +30625,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.list.items.activities_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29267,6 +30640,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29274,6 +30648,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29281,6 +30656,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -29309,6 +30685,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29316,6 +30693,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29323,6 +30701,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29330,6 +30709,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -29457,12 +30837,14 @@ paths: tags: - groups.drive summary: Get analytics from groups + description: Analytics about the view activities that took place on this item. operationId: groups.drives.list.items_GetAnalytics parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29470,6 +30852,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29477,6 +30860,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29544,12 +30928,14 @@ paths: tags: - groups.drive summary: Get documentSetVersions from groups + description: Version information for a document set version created by a user. operationId: groups.drives.list.items_ListDocumentSetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29557,6 +30943,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29564,6 +30951,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29654,6 +31042,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29661,6 +31050,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29668,6 +31058,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29693,12 +31084,14 @@ paths: tags: - groups.drive summary: Get documentSetVersions from groups + description: Version information for a document set version created by a user. operationId: groups.drives.list.items_GetDocumentSetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29706,6 +31099,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29713,6 +31107,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29720,6 +31115,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -29787,6 +31183,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29794,6 +31191,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29801,6 +31199,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29808,6 +31207,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -29834,6 +31234,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29841,6 +31242,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29848,6 +31250,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -29855,12 +31258,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29874,12 +31279,14 @@ paths: tags: - groups.drive summary: Get driveItem from groups + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: groups.drives.list.items_GetDriveItem parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29887,6 +31294,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -29894,6 +31302,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30060,12 +31469,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.list.items_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30073,6 +31484,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30080,6 +31492,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30098,12 +31511,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.list.items_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30111,6 +31526,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30118,6 +31534,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30140,12 +31557,14 @@ paths: tags: - groups.drive summary: Get fields from groups + description: The values of the columns set on this list item. operationId: groups.drives.list.items_GetFields parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30153,6 +31572,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30160,6 +31580,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30207,6 +31628,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30214,6 +31636,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30221,6 +31644,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30247,6 +31671,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30254,6 +31679,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30261,12 +31687,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30280,12 +31708,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: The list of previous versions of the list item. operationId: groups.drives.list.items_ListVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30293,6 +31723,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30300,6 +31731,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30375,6 +31807,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30382,6 +31815,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30389,6 +31823,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30414,12 +31849,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: The list of previous versions of the list item. operationId: groups.drives.list.items_GetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30427,6 +31864,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30434,6 +31872,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30441,6 +31880,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -30503,6 +31943,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30510,6 +31951,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30517,6 +31959,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30524,6 +31967,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -30550,6 +31994,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30557,6 +32002,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30564,6 +32010,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30571,12 +32018,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30590,12 +32039,14 @@ paths: tags: - groups.drive summary: Get fields from groups + description: A collection of the fields and values for this version of the list item. operationId: groups.drives.list.items.versions_GetFields parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30603,6 +32054,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30610,6 +32062,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30617,6 +32070,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -30664,6 +32118,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30671,6 +32126,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30678,6 +32134,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30685,6 +32142,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -30711,6 +32169,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30718,6 +32177,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30725,6 +32185,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -30732,12 +32193,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30751,12 +32214,14 @@ paths: tags: - groups.drive summary: Get operations from groups + description: The collection of long running operations for the list. operationId: groups.drives.list_ListOperations parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30764,6 +32229,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30855,6 +32321,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30862,6 +32329,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30887,12 +32355,14 @@ paths: tags: - groups.drive summary: Get operations from groups + description: The collection of long running operations for the list. operationId: groups.drives.list_GetOperations parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30900,6 +32370,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30907,6 +32378,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -30963,6 +32435,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30970,6 +32443,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -30977,6 +32451,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -31003,6 +32478,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31010,6 +32486,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31017,12 +32494,14 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31036,12 +32515,14 @@ paths: tags: - groups.drive summary: Get subscriptions from groups + description: The set of subscriptions on the list. operationId: groups.drives.list_ListSubscriptions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31049,6 +32530,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31158,6 +32640,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31165,6 +32648,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31190,12 +32674,14 @@ paths: tags: - groups.drive summary: Get subscriptions from groups + description: The set of subscriptions on the list. operationId: groups.drives.list_GetSubscriptions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31203,6 +32689,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31210,6 +32697,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -31275,6 +32763,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31282,6 +32771,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31289,6 +32779,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -31315,6 +32806,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31322,6 +32814,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31329,12 +32822,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31348,12 +32843,14 @@ paths: tags: - groups.drive summary: Get root from groups + description: The root folder of the drive. Read-only. operationId: groups.drives_GetRoot parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31361,6 +32858,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31508,6 +33006,8 @@ paths: parameters: group-id: $request.path.group-id drive-id: $request.path.drive-id + assignSensitivityLabel: + operationId: groups.group.drives.drive.root.assignSensitivityLabel checkin: operationId: groups.group.drives.drive.root.checkin checkout: @@ -31551,6 +33051,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31558,6 +33059,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31584,6 +33086,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31591,12 +33094,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31610,12 +33115,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.root_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31623,6 +33130,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31695,12 +33203,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.root_GetActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31708,6 +33218,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31715,6 +33226,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -31777,12 +33289,14 @@ paths: tags: - groups.drive summary: Get analytics from groups + description: Analytics about the view activities that took place on this item. operationId: groups.drives.root_GetAnalytics parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31790,6 +33304,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -31854,12 +33369,14 @@ paths: tags: - groups.drive summary: Get children from groups + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: groups.drives.root_ListChildren parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31867,6 +33384,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32053,12 +33571,14 @@ paths: tags: - groups.drive summary: Get children from groups + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: groups.drives.root_GetChildren parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32066,6 +33586,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32073,6 +33594,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -32239,12 +33761,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property children from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.root_GetChildrenContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32252,6 +33776,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32259,6 +33784,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -32277,12 +33803,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property children in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.root_SetChildrenContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32290,6 +33818,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32297,6 +33826,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -32319,12 +33849,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property root from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_GetRootContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32332,6 +33864,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32350,12 +33883,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property root in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_SetRootContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32363,6 +33898,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32385,12 +33921,14 @@ paths: tags: - groups.drive summary: Get listItem from groups + description: 'For drives in SharePoint, the associated document library list item. Read-only. Nullable.' operationId: groups.drives.root_GetListItem parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32398,6 +33936,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32518,6 +34057,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32525,6 +34065,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32551,6 +34092,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32558,12 +34100,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32577,12 +34121,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.root.listItem_ListActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32590,6 +34136,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32667,6 +34214,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32674,6 +34222,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32699,12 +34248,14 @@ paths: tags: - groups.drive summary: Get activities from groups + description: The list of recent activities that took place on this item. operationId: groups.drives.root.listItem_GetActivities parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32712,6 +34263,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32719,6 +34271,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -32786,6 +34339,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32793,6 +34347,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32800,6 +34355,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -32826,6 +34382,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32833,6 +34390,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32840,12 +34398,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32865,6 +34425,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -32872,6 +34433,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -32879,6 +34441,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -33045,12 +34608,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.root.listItem.activities_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33058,6 +34623,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33065,6 +34631,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -33083,12 +34650,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.root.listItem.activities_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33096,6 +34665,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33103,6 +34673,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -33131,6 +34702,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33138,6 +34710,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33145,6 +34718,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -33264,12 +34838,14 @@ paths: tags: - groups.drive summary: Get analytics from groups + description: Analytics about the view activities that took place on this item. operationId: groups.drives.root.listItem_GetAnalytics parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33277,6 +34853,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33341,12 +34918,14 @@ paths: tags: - groups.drive summary: Get documentSetVersions from groups + description: Version information for a document set version created by a user. operationId: groups.drives.root.listItem_ListDocumentSetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33354,6 +34933,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33444,6 +35024,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33451,6 +35032,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33476,12 +35058,14 @@ paths: tags: - groups.drive summary: Get documentSetVersions from groups + description: Version information for a document set version created by a user. operationId: groups.drives.root.listItem_GetDocumentSetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33489,6 +35073,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33496,6 +35081,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -33562,6 +35148,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33569,6 +35156,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33576,6 +35164,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -33602,6 +35191,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33609,6 +35199,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33616,12 +35207,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33635,12 +35228,14 @@ paths: tags: - groups.drive summary: Get driveItem from groups + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: groups.drives.root.listItem_GetDriveItem parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33648,6 +35243,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33803,12 +35399,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property driveItem from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.root.listItem_GetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33816,6 +35414,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33834,12 +35433,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property driveItem in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives.root.listItem_SetDriveItemContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33847,6 +35448,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33869,12 +35471,14 @@ paths: tags: - groups.drive summary: Get fields from groups + description: The values of the columns set on this list item. operationId: groups.drives.root.listItem_GetFields parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33882,6 +35486,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33929,6 +35534,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33936,6 +35542,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -33962,6 +35569,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -33969,12 +35577,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33988,12 +35598,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: The list of previous versions of the list item. operationId: groups.drives.root.listItem_ListVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34001,6 +35613,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34076,6 +35689,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34083,6 +35697,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34108,12 +35723,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: The list of previous versions of the list item. operationId: groups.drives.root.listItem_GetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34121,6 +35738,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34128,6 +35746,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -34189,6 +35808,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34196,6 +35816,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34203,6 +35824,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -34229,6 +35851,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34236,6 +35859,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34243,12 +35867,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34262,12 +35888,14 @@ paths: tags: - groups.drive summary: Get fields from groups + description: A collection of the fields and values for this version of the list item. operationId: groups.drives.root.listItem.versions_GetFields parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34275,6 +35903,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34282,6 +35911,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -34329,6 +35959,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34336,6 +35967,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34343,6 +35975,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -34369,6 +36002,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34376,6 +36010,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34383,12 +36018,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34402,12 +36039,14 @@ paths: tags: - groups.drive summary: Get permissions from groups + description: The set of permissions for the item. Read-only. Nullable. operationId: groups.drives.root_ListPermissions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34415,6 +36054,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34512,6 +36152,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34519,6 +36160,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34544,12 +36186,14 @@ paths: tags: - groups.drive summary: Get permissions from groups + description: The set of permissions for the item. Read-only. Nullable. operationId: groups.drives.root_GetPermissions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34557,6 +36201,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34564,6 +36209,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -34627,6 +36273,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34634,6 +36281,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34641,6 +36289,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -34667,6 +36316,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34674,6 +36324,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34681,12 +36332,14 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34700,12 +36353,14 @@ paths: tags: - groups.drive summary: Get subscriptions from groups + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: groups.drives.root_ListSubscriptions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34713,6 +36368,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34822,6 +36478,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34829,6 +36486,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34854,12 +36512,14 @@ paths: tags: - groups.drive summary: Get subscriptions from groups + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: groups.drives.root_GetSubscriptions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34867,6 +36527,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34874,6 +36535,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -34939,6 +36601,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34946,6 +36609,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34953,6 +36617,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -34979,6 +36644,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -34986,6 +36652,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -34993,12 +36660,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35012,12 +36681,14 @@ paths: tags: - groups.drive summary: Get thumbnails from groups + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: groups.drives.root_ListThumbnails parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35025,6 +36696,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35101,6 +36773,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35108,6 +36781,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35133,12 +36807,14 @@ paths: tags: - groups.drive summary: Get thumbnails from groups + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: groups.drives.root_GetThumbnails parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35146,6 +36822,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35153,6 +36830,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -35204,6 +36882,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35211,6 +36890,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35218,6 +36898,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -35244,6 +36925,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35251,6 +36933,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35258,12 +36941,14 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35277,12 +36962,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: groups.drives.root_ListVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35290,6 +36977,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35369,6 +37057,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35376,6 +37065,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35401,12 +37091,14 @@ paths: tags: - groups.drive summary: Get versions from groups + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: groups.drives.root_GetVersions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35414,6 +37106,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35421,6 +37114,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -35476,6 +37170,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35483,6 +37178,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35490,6 +37186,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -35516,6 +37213,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35523,6 +37221,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35530,12 +37229,14 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35555,6 +37256,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35562,6 +37264,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35569,6 +37272,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -35593,6 +37297,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35600,6 +37305,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35607,6 +37313,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -35629,12 +37336,14 @@ paths: tags: - groups.drive summary: Get special from groups + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: groups.drives_ListSpecial parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35642,6 +37351,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35828,12 +37538,14 @@ paths: tags: - groups.drive summary: Get special from groups + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: groups.drives_GetSpecial parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -35841,6 +37553,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -35848,6 +37561,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -36014,12 +37728,14 @@ paths: tags: - groups.drive summary: Get content for the navigation property special from groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_GetSpecialContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36027,6 +37743,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -36034,6 +37751,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -36052,12 +37770,14 @@ paths: tags: - groups.drive summary: Update content for the navigation property special in groups + description: 'The content stream, if the item represents a file.' operationId: groups.drives_SetSpecialContent parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -36065,6 +37785,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -36072,6 +37793,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -36094,6 +37816,7 @@ paths: tags: - shares.sharedDriveItem summary: Accessing shared DriveItems + description: 'Access a shared DriveItem or a collection of shared items by using a **shareId** or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token.' operationId: shares.sharedDriveItem_ListSharedDriveItem parameters: - $ref: '#/components/parameters/top' @@ -36222,12 +37945,14 @@ paths: tags: - shares.sharedDriveItem summary: Accessing shared DriveItems + description: 'Access a shared DriveItem or a collection of shared items by using a **shareId** or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token.' operationId: shares.sharedDriveItem_GetSharedDriveItem parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36340,6 +38065,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36366,12 +38092,14 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36385,12 +38113,14 @@ paths: tags: - shares.driveItem summary: Get driveItem from shares + description: Used to access the underlying driveItem operationId: shares_GetDriveItem parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36535,12 +38265,14 @@ paths: tags: - shares.driveItem summary: Get content for the navigation property driveItem from shares + description: 'The content stream, if the item represents a file.' operationId: shares_GetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36559,12 +38291,14 @@ paths: tags: - shares.driveItem summary: Update content for the navigation property driveItem in shares + description: 'The content stream, if the item represents a file.' operationId: shares_SetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36587,12 +38321,14 @@ paths: tags: - shares.driveItem summary: Get items from shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_ListItems parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36779,12 +38515,14 @@ paths: tags: - shares.driveItem summary: Get items from shares + description: All driveItems contained in the sharing root. This collection cannot be enumerated. operationId: shares_GetItems parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36792,6 +38530,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -36947,12 +38686,14 @@ paths: tags: - shares.driveItem summary: Get content for the navigation property items from shares + description: 'The content stream, if the item represents a file.' operationId: shares_GetItemsContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36960,6 +38701,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -36978,12 +38720,14 @@ paths: tags: - shares.driveItem summary: Update content for the navigation property items in shares + description: 'The content stream, if the item represents a file.' operationId: shares_SetItemsContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -36991,6 +38735,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -37013,12 +38758,14 @@ paths: tags: - shares.list summary: Get list from shares + description: Used to access the underlying list operationId: shares_GetList parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37134,6 +38881,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37160,12 +38908,14 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37179,12 +38929,14 @@ paths: tags: - shares.list summary: Get activities from shares + description: The recent activities that took place within this list. operationId: shares.list_ListActivities parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37262,6 +39014,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37293,6 +39046,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37452,6 +39206,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37483,6 +39238,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37490,6 +39246,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -37576,6 +39333,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37583,6 +39341,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -37609,6 +39368,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37616,12 +39376,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37635,12 +39397,14 @@ paths: tags: - shares.list summary: Get sourceColumn from shares + description: The source column for content type column. operationId: shares.list.columns_GetSourceColumn parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37648,6 +39412,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -37735,6 +39500,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37851,6 +39617,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37882,6 +39649,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -37889,6 +39657,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -37996,6 +39765,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38003,6 +39773,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38029,6 +39800,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38036,12 +39808,14 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38055,12 +39829,14 @@ paths: tags: - shares.list summary: Get base from shares + description: Parent contentType from which this content type is derived. operationId: shares.list.contentTypes_GetBase parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38068,6 +39844,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38160,12 +39937,14 @@ paths: tags: - shares.list summary: Get baseTypes from shares + description: The collection of content types that are ancestors of this content type. operationId: shares.list.contentTypes_ListBaseTypes parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38173,6 +39952,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38284,12 +40064,14 @@ paths: tags: - shares.list summary: Get baseTypes from shares + description: The collection of content types that are ancestors of this content type. operationId: shares.list.contentTypes_GetBaseTypes parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38297,6 +40079,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38304,6 +40087,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38401,12 +40185,14 @@ paths: tags: - shares.list summary: Get columnLinks from shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_ListColumnLinks parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38414,6 +40200,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38481,6 +40268,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38488,6 +40276,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38513,12 +40302,14 @@ paths: tags: - shares.list summary: Get columnLinks from shares + description: The collection of columns that are required by this content type operationId: shares.list.contentTypes_GetColumnLinks parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38526,6 +40317,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38533,6 +40325,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -38581,6 +40374,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38588,6 +40382,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38595,6 +40390,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -38621,6 +40417,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38628,6 +40425,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38635,12 +40433,14 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38654,12 +40454,14 @@ paths: tags: - shares.list summary: Get columnPositions from shares + description: Column order information in a content type. operationId: shares.list.contentTypes_ListColumnPositions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38667,6 +40469,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38821,12 +40624,14 @@ paths: tags: - shares.list summary: Get columnPositions from shares + description: Column order information in a content type. operationId: shares.list.contentTypes_GetColumnPositions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38834,6 +40639,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -38841,6 +40647,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -38923,12 +40730,14 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_ListColumns parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -38936,6 +40745,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39095,6 +40905,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39102,6 +40913,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39127,12 +40939,14 @@ paths: tags: - shares.list summary: Get columns from shares + description: The collection of column definitions for this contentType. operationId: shares.list.contentTypes_GetColumns parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39140,6 +40954,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39147,6 +40962,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -39234,6 +41050,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39241,6 +41058,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39248,6 +41066,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -39274,6 +41093,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39281,6 +41101,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39288,12 +41109,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39307,12 +41130,14 @@ paths: tags: - shares.list summary: Get sourceColumn from shares + description: The source column for content type column. operationId: shares.list.contentTypes.columns_GetSourceColumn parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39320,6 +41145,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39327,6 +41153,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -39415,6 +41242,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39422,6 +41250,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39460,6 +41289,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39467,6 +41297,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39502,6 +41333,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39509,6 +41341,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39539,6 +41372,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39546,6 +41380,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39566,6 +41401,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39573,6 +41409,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -39593,6 +41430,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39629,6 +41467,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39665,6 +41504,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39691,12 +41531,14 @@ paths: tags: - shares.list summary: Get drive from shares + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: shares.list_GetDrive parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39808,12 +41650,14 @@ paths: tags: - shares.list summary: Get items from shares + description: All items contained in the list. operationId: shares.list_ListItems parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39930,6 +41774,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39955,12 +41800,14 @@ paths: tags: - shares.list summary: Get items from shares + description: All items contained in the list. operationId: shares.list_GetItems parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -39968,6 +41815,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40088,6 +41936,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40095,6 +41944,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40121,6 +41971,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40128,12 +41979,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40147,12 +42000,14 @@ paths: tags: - shares.list summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_ListActivities parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40160,6 +42015,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40237,6 +42093,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40244,6 +42101,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40269,12 +42127,14 @@ paths: tags: - shares.list summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.list.items_GetActivities parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40282,6 +42142,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40289,6 +42150,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -40356,6 +42218,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40363,6 +42226,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40370,6 +42234,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -40396,6 +42261,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40403,6 +42269,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40410,12 +42277,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40435,6 +42304,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40442,6 +42312,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40449,6 +42320,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -40615,12 +42487,14 @@ paths: tags: - shares.list summary: Get content for the navigation property driveItem from shares + description: 'The content stream, if the item represents a file.' operationId: shares.list.items.activities_GetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40628,6 +42502,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40635,6 +42510,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -40653,12 +42529,14 @@ paths: tags: - shares.list summary: Update content for the navigation property driveItem in shares + description: 'The content stream, if the item represents a file.' operationId: shares.list.items.activities_SetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40666,6 +42544,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40673,6 +42552,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -40701,6 +42581,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40708,6 +42589,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40715,6 +42597,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -40834,12 +42717,14 @@ paths: tags: - shares.list summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.list.items_GetAnalytics parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40847,6 +42732,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -40911,12 +42797,14 @@ paths: tags: - shares.list summary: Get documentSetVersions from shares + description: Version information for a document set version created by a user. operationId: shares.list.items_ListDocumentSetVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -40924,6 +42812,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41014,6 +42903,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41021,6 +42911,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41046,12 +42937,14 @@ paths: tags: - shares.list summary: Get documentSetVersions from shares + description: Version information for a document set version created by a user. operationId: shares.list.items_GetDocumentSetVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41059,6 +42952,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41066,6 +42960,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -41132,6 +43027,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41139,6 +43035,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41146,6 +43043,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -41172,6 +43070,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41179,6 +43078,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41186,12 +43086,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41211,6 +43113,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41218,6 +43121,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41225,6 +43129,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -41239,12 +43144,14 @@ paths: tags: - shares.list summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.list.items_GetDriveItem parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41252,6 +43159,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41407,12 +43315,14 @@ paths: tags: - shares.list summary: Get content for the navigation property driveItem from shares + description: 'The content stream, if the item represents a file.' operationId: shares.list.items_GetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41420,6 +43330,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41438,12 +43349,14 @@ paths: tags: - shares.list summary: Update content for the navigation property driveItem in shares + description: 'The content stream, if the item represents a file.' operationId: shares.list.items_SetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41451,6 +43364,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41473,12 +43387,14 @@ paths: tags: - shares.list summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.list.items_GetFields parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41486,6 +43402,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41533,6 +43450,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41540,6 +43458,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41566,6 +43485,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41573,12 +43493,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41598,6 +43520,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41605,6 +43528,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41661,6 +43585,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41668,6 +43593,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41675,6 +43601,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -41682,6 +43609,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -41689,6 +43617,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -41715,12 +43644,14 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.items_ListVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41728,6 +43659,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41803,6 +43735,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41810,6 +43743,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41835,12 +43769,14 @@ paths: tags: - shares.list summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.list.items_GetVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41848,6 +43784,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41855,6 +43792,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -41916,6 +43854,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41923,6 +43862,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41930,6 +43870,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -41956,6 +43897,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -41963,6 +43905,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -41970,12 +43913,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41989,12 +43934,14 @@ paths: tags: - shares.list summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.list.items.versions_GetFields parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42002,6 +43949,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -42009,6 +43957,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -42056,6 +44005,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42063,6 +44013,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -42070,6 +44021,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -42096,6 +44048,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42103,6 +44056,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -42110,12 +44064,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42135,6 +44091,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42142,6 +44099,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -42149,6 +44107,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -42169,6 +44128,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42201,6 +44161,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42208,6 +44169,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -42234,12 +44196,14 @@ paths: tags: - shares.list summary: Get operations from shares + description: The collection of long running operations for the list. operationId: shares.list_ListOperations parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42331,6 +44295,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42356,12 +44321,14 @@ paths: tags: - shares.list summary: Get operations from shares + description: The collection of long running operations for the list. operationId: shares.list_GetOperations parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42369,6 +44336,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -42425,6 +44393,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42432,6 +44401,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -42458,6 +44428,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42465,12 +44436,14 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42484,12 +44457,14 @@ paths: tags: - shares.list summary: Get subscriptions from shares + description: The set of subscriptions on the list. operationId: shares.list_ListSubscriptions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42599,6 +44574,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42624,12 +44600,14 @@ paths: tags: - shares.list summary: Get subscriptions from shares + description: The set of subscriptions on the list. operationId: shares.list_GetSubscriptions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42637,6 +44615,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -42702,6 +44681,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42709,6 +44689,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -42735,6 +44716,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42742,12 +44724,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42767,6 +44751,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42774,6 +44759,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -42788,12 +44774,14 @@ paths: tags: - shares.listItem summary: Get listItem from shares + description: Used to access the underlying listItem operationId: shares_GetListItem parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42906,6 +44894,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -42932,12 +44921,14 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42951,12 +44942,14 @@ paths: tags: - shares.listItem summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_ListActivities parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43034,6 +45027,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43059,12 +45053,14 @@ paths: tags: - shares.listItem summary: Get activities from shares + description: The list of recent activities that took place on this item. operationId: shares.listItem_GetActivities parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43072,6 +45068,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -43137,6 +45134,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43144,6 +45142,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -43170,6 +45169,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43177,12 +45177,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43202,6 +45204,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43209,6 +45212,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -43364,12 +45368,14 @@ paths: tags: - shares.listItem summary: Get content for the navigation property driveItem from shares + description: 'The content stream, if the item represents a file.' operationId: shares.listItem.activities_GetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43377,6 +45383,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -43395,12 +45402,14 @@ paths: tags: - shares.listItem summary: Update content for the navigation property driveItem in shares + description: 'The content stream, if the item represents a file.' operationId: shares.listItem.activities_SetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43408,6 +45417,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -43436,6 +45446,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43443,6 +45454,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -43554,12 +45566,14 @@ paths: tags: - shares.listItem summary: Get analytics from shares + description: Analytics about the view activities that took place on this item. operationId: shares.listItem_GetAnalytics parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43621,12 +45635,14 @@ paths: tags: - shares.listItem summary: Get documentSetVersions from shares + description: Version information for a document set version created by a user. operationId: shares.listItem_ListDocumentSetVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43717,6 +45733,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43742,12 +45759,14 @@ paths: tags: - shares.listItem summary: Get documentSetVersions from shares + description: Version information for a document set version created by a user. operationId: shares.listItem_GetDocumentSetVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43755,6 +45774,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -43820,6 +45840,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43827,6 +45848,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -43853,6 +45875,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43860,12 +45883,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -43885,6 +45910,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -43892,6 +45918,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -43906,12 +45933,14 @@ paths: tags: - shares.listItem summary: Get driveItem from shares + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: shares.listItem_GetDriveItem parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44056,12 +46085,14 @@ paths: tags: - shares.listItem summary: Get content for the navigation property driveItem from shares + description: 'The content stream, if the item represents a file.' operationId: shares.listItem_GetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44080,12 +46111,14 @@ paths: tags: - shares.listItem summary: Update content for the navigation property driveItem in shares + description: 'The content stream, if the item represents a file.' operationId: shares.listItem_SetDriveItemContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44108,12 +46141,14 @@ paths: tags: - shares.listItem summary: Get fields from shares + description: The values of the columns set on this list item. operationId: shares.listItem_GetFields parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44161,6 +46196,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44187,12 +46223,14 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44212,6 +46250,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44268,6 +46307,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44275,6 +46315,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -44282,6 +46323,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -44289,6 +46331,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -44315,12 +46358,14 @@ paths: tags: - shares.listItem summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.listItem_ListVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44396,6 +46441,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44421,12 +46467,14 @@ paths: tags: - shares.listItem summary: Get versions from shares + description: The list of previous versions of the list item. operationId: shares.listItem_GetVersions parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44434,6 +46482,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -44494,6 +46543,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44501,6 +46551,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -44527,6 +46578,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44534,12 +46586,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44553,12 +46607,14 @@ paths: tags: - shares.listItem summary: Get fields from shares + description: A collection of the fields and values for this version of the list item. operationId: shares.listItem.versions_GetFields parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44566,6 +46622,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -44613,6 +46670,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44620,6 +46678,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -44646,6 +46705,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44653,12 +46713,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44678,6 +46740,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44685,6 +46748,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -44699,12 +46763,14 @@ paths: tags: - shares.permission summary: Get permission from shares + description: Used to access the permission representing the underlying sharing link operationId: shares_GetPermission parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44768,6 +46834,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44794,12 +46861,14 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44819,6 +46888,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44870,6 +46940,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -44908,6 +46979,7 @@ paths: in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -45052,12 +47124,14 @@ paths: tags: - shares.driveItem summary: Get content for the navigation property root from shares + description: 'The content stream, if the item represents a file.' operationId: shares_GetRootContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -45076,12 +47150,14 @@ paths: tags: - shares.driveItem summary: Update content for the navigation property root in shares + description: 'The content stream, if the item represents a file.' operationId: shares_SetRootContent parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -45104,12 +47180,14 @@ paths: tags: - shares.site summary: Get site from shares + description: Used to access the underlying site operationId: shares_GetSite parameters: - name: sharedDriveItem-id in: path description: 'key: id of sharedDriveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedDriveItem @@ -45264,12 +47342,14 @@ paths: tags: - users.drive summary: Get drive from users + description: The user's OneDrive. Read-only. operationId: users_GetDrive parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45381,12 +47461,14 @@ paths: tags: - users.drive summary: Get drives from users + description: A collection of drives available for this user. Read-only. operationId: users_ListDrives parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45511,6 +47593,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45536,12 +47619,14 @@ paths: tags: - users.drive summary: Get drives from users + description: A collection of drives available for this user. Read-only. operationId: users_GetDrives parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45549,6 +47634,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -45680,6 +47766,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45687,6 +47774,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -45713,6 +47801,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45720,12 +47809,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45739,12 +47830,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place under this drive. operationId: users.drives_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45752,6 +47845,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -45829,6 +47923,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45836,6 +47931,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -45861,12 +47957,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place under this drive. operationId: users.drives_GetActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45874,6 +47972,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -45881,6 +47980,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -45948,6 +48048,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45955,6 +48056,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -45962,6 +48064,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -45988,6 +48091,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -45995,6 +48099,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46002,12 +48107,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46027,6 +48134,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46034,6 +48142,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46041,6 +48150,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -46207,12 +48317,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.activities_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46220,6 +48332,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46227,6 +48340,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -46245,12 +48359,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.activities_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46258,6 +48374,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46265,6 +48382,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -46293,6 +48411,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46300,6 +48419,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46307,6 +48427,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -46426,12 +48547,14 @@ paths: tags: - users.drive summary: Get bundles from users + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: users.drives_ListBundles parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46439,6 +48562,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46625,12 +48749,14 @@ paths: tags: - users.drive summary: Get bundles from users + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' operationId: users.drives_GetBundles parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46638,6 +48764,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46645,6 +48772,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -46811,12 +48939,14 @@ paths: tags: - users.drive summary: Get content for the navigation property bundles from users + description: 'The content stream, if the item represents a file.' operationId: users.drives_GetBundlesContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46824,6 +48954,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46831,6 +48962,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -46849,12 +48981,14 @@ paths: tags: - users.drive summary: Update content for the navigation property bundles in users + description: 'The content stream, if the item represents a file.' operationId: users.drives_SetBundlesContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46862,6 +48996,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -46869,6 +49004,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -46891,12 +49027,14 @@ paths: tags: - users.drive summary: Get following from users + description: The list of items the user is following. Only in OneDrive for Business. operationId: users.drives_ListFollowing parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -46904,6 +49042,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47090,12 +49229,14 @@ paths: tags: - users.drive summary: Get following from users + description: The list of items the user is following. Only in OneDrive for Business. operationId: users.drives_GetFollowing parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47103,6 +49244,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47110,6 +49252,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -47276,12 +49419,14 @@ paths: tags: - users.drive summary: Get content for the navigation property following from users + description: 'The content stream, if the item represents a file.' operationId: users.drives_GetFollowingContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47289,6 +49434,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47296,6 +49442,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -47314,12 +49461,14 @@ paths: tags: - users.drive summary: Update content for the navigation property following in users + description: 'The content stream, if the item represents a file.' operationId: users.drives_SetFollowingContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47327,6 +49476,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47334,6 +49484,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -47356,12 +49507,14 @@ paths: tags: - users.drive summary: Get items from users + description: All items contained in the drive. Read-only. Nullable. operationId: users.drives_ListItems parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47369,6 +49522,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47560,6 +49714,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47567,6 +49722,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47592,12 +49748,14 @@ paths: tags: - users.drive summary: Get items from users + description: All items contained in the drive. Read-only. Nullable. operationId: users.drives_GetItems parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47605,6 +49763,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47612,6 +49771,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -47770,6 +49930,8 @@ paths: user-id: $request.path.user-id drive-id: $request.path.drive-id driveItem-id: $request.path.driveItem-id + assignSensitivityLabel: + operationId: users.user.drives.drive.items.driveItem.assignSensitivityLabel checkin: operationId: users.user.drives.drive.items.driveItem.checkin checkout: @@ -47813,6 +49975,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47820,6 +49983,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47827,6 +49991,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -47853,6 +50018,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47860,6 +50026,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47867,12 +50034,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47886,12 +50055,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.items_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47899,6 +50070,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47906,6 +50078,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -47978,12 +50151,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.items_GetActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -47991,6 +50166,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -47998,6 +50174,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48005,6 +50182,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -48069,12 +50247,14 @@ paths: tags: - users.drive summary: Get analytics from users + description: Analytics about the view activities that took place on this item. operationId: users.drives.items_GetAnalytics parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48082,6 +50262,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48089,6 +50270,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48156,12 +50338,14 @@ paths: tags: - users.drive summary: Get children from users + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: users.drives.items_ListChildren parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48169,6 +50353,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48176,6 +50361,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48362,12 +50548,14 @@ paths: tags: - users.drive summary: Get children from users + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: users.drives.items_GetChildren parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48375,6 +50563,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48382,6 +50571,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48389,6 +50579,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48566,12 +50757,14 @@ paths: tags: - users.drive summary: Get content for the navigation property children from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.items_GetChildrenContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48579,6 +50772,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48586,6 +50780,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48593,6 +50788,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48611,12 +50807,14 @@ paths: tags: - users.drive summary: Update content for the navigation property children in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.items_SetChildrenContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48624,6 +50822,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48631,6 +50830,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48638,6 +50838,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48660,12 +50861,14 @@ paths: tags: - users.drive summary: Get content for the navigation property items from users + description: 'The content stream, if the item represents a file.' operationId: users.drives_GetItemsContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48673,6 +50876,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48680,6 +50884,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48698,12 +50903,14 @@ paths: tags: - users.drive summary: Update content for the navigation property items in users + description: 'The content stream, if the item represents a file.' operationId: users.drives_SetItemsContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48711,6 +50918,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48718,6 +50926,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48740,12 +50949,14 @@ paths: tags: - users.drive summary: Get listItem from users + description: 'For drives in SharePoint, the associated document library list item. Read-only. Nullable.' operationId: users.drives.items_GetListItem parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48753,6 +50964,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48760,6 +50972,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48888,6 +51101,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48895,6 +51109,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48902,6 +51117,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -48928,6 +51144,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48935,6 +51152,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48942,12 +51160,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -48961,12 +51181,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.items.listItem_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -48974,6 +51196,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -48981,6 +51204,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49058,6 +51282,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49065,6 +51290,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49072,6 +51298,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49097,12 +51324,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.items.listItem_GetActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49110,6 +51339,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49117,6 +51347,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49124,6 +51355,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -49193,6 +51425,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49200,6 +51433,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49207,6 +51441,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49214,6 +51449,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -49240,6 +51476,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49247,6 +51484,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49254,6 +51492,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49261,12 +51500,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49286,6 +51527,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49293,6 +51535,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49300,6 +51543,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49307,6 +51551,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -49484,12 +51729,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.items.listItem.activities_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49497,6 +51744,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49504,6 +51752,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49511,6 +51760,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -49529,12 +51779,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.items.listItem.activities_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49542,6 +51794,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49549,6 +51802,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49556,6 +51810,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -49584,6 +51839,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49591,6 +51847,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49598,6 +51855,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49605,6 +51863,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -49732,12 +51991,14 @@ paths: tags: - users.drive summary: Get analytics from users + description: Analytics about the view activities that took place on this item. operationId: users.drives.items.listItem_GetAnalytics parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49745,6 +52006,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49752,6 +52014,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49819,12 +52082,14 @@ paths: tags: - users.drive summary: Get documentSetVersions from users + description: Version information for a document set version created by a user. operationId: users.drives.items.listItem_ListDocumentSetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49832,6 +52097,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49839,6 +52105,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49929,6 +52196,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49936,6 +52204,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49943,6 +52212,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49968,12 +52238,14 @@ paths: tags: - users.drive summary: Get documentSetVersions from users + description: Version information for a document set version created by a user. operationId: users.drives.items.listItem_GetDocumentSetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -49981,6 +52253,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -49988,6 +52261,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -49995,6 +52269,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -50062,6 +52337,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50069,6 +52345,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50076,6 +52353,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50083,6 +52361,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -50109,6 +52388,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50116,6 +52396,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50123,6 +52404,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50130,12 +52412,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50149,12 +52433,14 @@ paths: tags: - users.drive summary: Get driveItem from users + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: users.drives.items.listItem_GetDriveItem parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50162,6 +52448,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50169,6 +52456,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50335,12 +52623,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.items.listItem_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50348,6 +52638,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50355,6 +52646,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50373,12 +52665,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.items.listItem_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50386,6 +52680,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50393,6 +52688,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50415,12 +52711,14 @@ paths: tags: - users.drive summary: Get fields from users + description: The values of the columns set on this list item. operationId: users.drives.items.listItem_GetFields parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50428,6 +52726,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50435,6 +52734,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50482,6 +52782,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50489,6 +52790,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50496,6 +52798,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50522,6 +52825,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50529,6 +52833,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50536,12 +52841,14 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50555,12 +52862,14 @@ paths: tags: - users.drive summary: Get versions from users + description: The list of previous versions of the list item. operationId: users.drives.items.listItem_ListVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50568,6 +52877,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50575,6 +52885,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50650,6 +52961,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50657,6 +52969,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50664,6 +52977,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50689,12 +53003,14 @@ paths: tags: - users.drive summary: Get versions from users + description: The list of previous versions of the list item. operationId: users.drives.items.listItem_GetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50702,6 +53018,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50709,6 +53026,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50716,6 +53034,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -50778,6 +53097,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50785,6 +53105,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50792,6 +53113,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50799,6 +53121,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -50825,6 +53148,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50832,6 +53156,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50839,6 +53164,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50846,12 +53172,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50865,12 +53193,14 @@ paths: tags: - users.drive summary: Get fields from users + description: A collection of the fields and values for this version of the list item. operationId: users.drives.items.listItem.versions_GetFields parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50878,6 +53208,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50885,6 +53216,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50892,6 +53224,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -50939,6 +53272,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50946,6 +53280,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -50953,6 +53288,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -50960,6 +53296,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -50986,6 +53323,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -50993,6 +53331,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51000,6 +53339,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51007,12 +53347,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51026,12 +53368,14 @@ paths: tags: - users.drive summary: Get permissions from users + description: The set of permissions for the item. Read-only. Nullable. operationId: users.drives.items_ListPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51039,6 +53383,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51046,6 +53391,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51143,6 +53489,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51150,6 +53497,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51157,6 +53505,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51182,12 +53531,14 @@ paths: tags: - users.drive summary: Get permissions from users + description: The set of permissions for the item. Read-only. Nullable. operationId: users.drives.items_GetPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51195,6 +53546,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51202,6 +53554,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51209,6 +53562,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -51272,6 +53626,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51279,6 +53634,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51286,6 +53642,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51293,6 +53650,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -51319,6 +53677,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51326,6 +53685,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51333,6 +53693,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51340,12 +53701,14 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51359,12 +53722,14 @@ paths: tags: - users.drive summary: Get subscriptions from users + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: users.drives.items_ListSubscriptions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51372,6 +53737,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51379,6 +53745,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51488,6 +53855,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51495,6 +53863,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51502,6 +53871,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51527,12 +53897,14 @@ paths: tags: - users.drive summary: Get subscriptions from users + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: users.drives.items_GetSubscriptions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51540,6 +53912,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51547,6 +53920,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51554,6 +53928,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -51619,6 +53994,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51626,6 +54002,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51633,6 +54010,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51640,6 +54018,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -51666,6 +54045,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51673,6 +54053,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51680,6 +54061,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51687,12 +54069,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51706,12 +54090,14 @@ paths: tags: - users.drive summary: Get thumbnails from users + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: users.drives.items_ListThumbnails parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51719,6 +54105,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51726,6 +54113,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51802,6 +54190,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51809,6 +54198,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51816,6 +54206,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51841,12 +54232,14 @@ paths: tags: - users.drive summary: Get thumbnails from users + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: users.drives.items_GetThumbnails parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51854,6 +54247,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51861,6 +54255,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51868,6 +54263,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -51919,6 +54315,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51926,6 +54323,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51933,6 +54331,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51940,6 +54339,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -51966,6 +54366,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -51973,6 +54374,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -51980,6 +54382,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -51987,12 +54390,14 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52006,12 +54411,14 @@ paths: tags: - users.drive summary: Get versions from users + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: users.drives.items_ListVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52019,6 +54426,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52026,6 +54434,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52105,6 +54514,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52112,6 +54522,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52119,6 +54530,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52144,12 +54556,14 @@ paths: tags: - users.drive summary: Get versions from users + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: users.drives.items_GetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52157,6 +54571,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52164,6 +54579,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52171,6 +54587,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -52226,6 +54643,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52233,6 +54651,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52240,6 +54659,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52247,6 +54667,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -52273,6 +54694,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52280,6 +54702,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52287,6 +54710,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52294,12 +54718,14 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52319,6 +54745,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52326,6 +54753,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52333,6 +54761,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52340,6 +54769,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -52364,6 +54794,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52371,6 +54802,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52378,6 +54810,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -52385,6 +54818,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -52407,12 +54841,14 @@ paths: tags: - users.drive summary: Get list from users + description: 'For drives in SharePoint, the underlying document library list. Read-only. Nullable.' operationId: users.drives_GetList parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52420,6 +54856,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52544,6 +54981,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52551,6 +54989,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52577,6 +55016,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52584,12 +55024,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52603,12 +55045,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The recent activities that took place within this list. operationId: users.drives.list_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52616,6 +55060,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52693,6 +55138,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52700,6 +55146,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52731,6 +55178,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52738,6 +55186,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52897,6 +55346,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52904,6 +55354,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52935,6 +55386,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -52942,6 +55394,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -52949,6 +55402,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -53036,6 +55490,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53043,6 +55498,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53050,6 +55506,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -53076,6 +55533,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53083,6 +55541,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53090,12 +55549,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53109,12 +55570,14 @@ paths: tags: - users.drive summary: Get sourceColumn from users + description: The source column for content type column. operationId: users.drives.list.columns_GetSourceColumn parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53122,6 +55585,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53129,6 +55593,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -53217,6 +55682,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53224,6 +55690,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53340,6 +55807,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53347,6 +55815,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53378,6 +55847,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53385,6 +55855,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53392,6 +55863,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -53504,6 +55976,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53511,6 +55984,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53518,6 +55992,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -53544,6 +56019,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53551,6 +56027,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53558,12 +56035,14 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53577,12 +56056,14 @@ paths: tags: - users.drive summary: Get base from users + description: Parent contentType from which this content type is derived. operationId: users.drives.list.contentTypes_GetBase parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53590,6 +56071,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53597,6 +56079,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -53694,12 +56177,14 @@ paths: tags: - users.drive summary: Get baseTypes from users + description: The collection of content types that are ancestors of this content type. operationId: users.drives.list.contentTypes_ListBaseTypes parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53707,6 +56192,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53714,6 +56200,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -53825,12 +56312,14 @@ paths: tags: - users.drive summary: Get baseTypes from users + description: The collection of content types that are ancestors of this content type. operationId: users.drives.list.contentTypes_GetBaseTypes parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53838,6 +56327,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53845,6 +56335,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -53852,6 +56343,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -53954,12 +56446,14 @@ paths: tags: - users.drive summary: Get columnLinks from users + description: The collection of columns that are required by this content type operationId: users.drives.list.contentTypes_ListColumnLinks parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -53967,6 +56461,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -53974,6 +56469,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54041,6 +56537,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54048,6 +56545,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54055,6 +56553,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54080,12 +56579,14 @@ paths: tags: - users.drive summary: Get columnLinks from users + description: The collection of columns that are required by this content type operationId: users.drives.list.contentTypes_GetColumnLinks parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54093,6 +56594,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54100,6 +56602,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54107,6 +56610,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -54155,6 +56659,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54162,6 +56667,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54169,6 +56675,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54176,6 +56683,7 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink @@ -54202,6 +56710,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54209,6 +56718,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54216,6 +56726,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54223,12 +56734,14 @@ paths: in: path description: 'key: id of columnLink' required: true + style: simple schema: type: string x-ms-docs-key-type: columnLink - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54242,12 +56755,14 @@ paths: tags: - users.drive summary: Get columnPositions from users + description: Column order information in a content type. operationId: users.drives.list.contentTypes_ListColumnPositions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54255,6 +56770,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54262,6 +56778,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54416,12 +56933,14 @@ paths: tags: - users.drive summary: Get columnPositions from users + description: Column order information in a content type. operationId: users.drives.list.contentTypes_GetColumnPositions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54429,6 +56948,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54436,6 +56956,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54443,6 +56964,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -54526,12 +57048,14 @@ paths: tags: - users.drive summary: Get columns from users + description: The collection of column definitions for this contentType. operationId: users.drives.list.contentTypes_ListColumns parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54539,6 +57063,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54546,6 +57071,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54705,6 +57231,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54712,6 +57239,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54719,6 +57247,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54744,12 +57273,14 @@ paths: tags: - users.drive summary: Get columns from users + description: The collection of column definitions for this contentType. operationId: users.drives.list.contentTypes_GetColumns parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54757,6 +57288,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54764,6 +57296,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54771,6 +57304,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -54859,6 +57393,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54866,6 +57401,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54873,6 +57409,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54880,6 +57417,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -54906,6 +57444,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54913,6 +57452,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54920,6 +57460,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54927,12 +57468,14 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54946,12 +57489,14 @@ paths: tags: - users.drive summary: Get sourceColumn from users + description: The source column for content type column. operationId: users.drives.list.contentTypes.columns_GetSourceColumn parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -54959,6 +57504,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -54966,6 +57512,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -54973,6 +57520,7 @@ paths: in: path description: 'key: id of columnDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: columnDefinition @@ -55056,12 +57604,14 @@ paths: tags: - users.drive summary: Get drive from users + description: 'Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].' operationId: users.drives.list_GetDrive parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55069,6 +57619,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55189,12 +57740,14 @@ paths: tags: - users.drive summary: Get items from users + description: All items contained in the list. operationId: users.drives.list_ListItems parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55202,6 +57755,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55318,6 +57872,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55325,6 +57880,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55350,12 +57906,14 @@ paths: tags: - users.drive summary: Get items from users + description: All items contained in the list. operationId: users.drives.list_GetItems parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55363,6 +57921,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55370,6 +57929,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55498,6 +58058,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55505,6 +58066,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55512,6 +58074,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55538,6 +58101,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55545,6 +58109,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55552,12 +58117,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55571,12 +58138,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.list.items_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55584,6 +58153,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55591,6 +58161,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55668,6 +58239,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55675,6 +58247,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55682,6 +58255,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55707,12 +58281,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.list.items_GetActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55720,6 +58296,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55727,6 +58304,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55734,6 +58312,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -55803,6 +58382,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55810,6 +58390,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55817,6 +58398,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55824,6 +58406,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -55850,6 +58433,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55857,6 +58441,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55864,6 +58449,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55871,12 +58457,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55896,6 +58484,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -55903,6 +58492,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -55910,6 +58500,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -55917,6 +58508,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -56094,12 +58686,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.list.items.activities_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56107,6 +58701,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56114,6 +58709,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56121,6 +58717,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -56139,12 +58736,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.list.items.activities_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56152,6 +58751,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56159,6 +58759,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56166,6 +58767,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -56194,6 +58796,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56201,6 +58804,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56208,6 +58812,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56215,6 +58820,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -56342,12 +58948,14 @@ paths: tags: - users.drive summary: Get analytics from users + description: Analytics about the view activities that took place on this item. operationId: users.drives.list.items_GetAnalytics parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56355,6 +58963,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56362,6 +58971,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56429,12 +59039,14 @@ paths: tags: - users.drive summary: Get documentSetVersions from users + description: Version information for a document set version created by a user. operationId: users.drives.list.items_ListDocumentSetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56442,6 +59054,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56449,6 +59062,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56539,6 +59153,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56546,6 +59161,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56553,6 +59169,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56578,12 +59195,14 @@ paths: tags: - users.drive summary: Get documentSetVersions from users + description: Version information for a document set version created by a user. operationId: users.drives.list.items_GetDocumentSetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56591,6 +59210,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56598,6 +59218,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56605,6 +59226,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -56672,6 +59294,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56679,6 +59302,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56686,6 +59310,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56693,6 +59318,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -56719,6 +59345,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56726,6 +59353,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56733,6 +59361,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56740,12 +59369,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -56759,12 +59390,14 @@ paths: tags: - users.drive summary: Get driveItem from users + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: users.drives.list.items_GetDriveItem parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56772,6 +59405,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56779,6 +59413,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56945,12 +59580,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.list.items_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56958,6 +59595,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -56965,6 +59603,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -56983,12 +59622,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.list.items_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -56996,6 +59637,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57003,6 +59645,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57025,12 +59668,14 @@ paths: tags: - users.drive summary: Get fields from users + description: The values of the columns set on this list item. operationId: users.drives.list.items_GetFields parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57038,6 +59683,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57045,6 +59691,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57092,6 +59739,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57099,6 +59747,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57106,6 +59755,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57132,6 +59782,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57139,6 +59790,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57146,12 +59798,14 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57165,12 +59819,14 @@ paths: tags: - users.drive summary: Get versions from users + description: The list of previous versions of the list item. operationId: users.drives.list.items_ListVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57178,6 +59834,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57185,6 +59842,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57260,6 +59918,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57267,6 +59926,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57274,6 +59934,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57299,12 +59960,14 @@ paths: tags: - users.drive summary: Get versions from users + description: The list of previous versions of the list item. operationId: users.drives.list.items_GetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57312,6 +59975,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57319,6 +59983,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57326,6 +59991,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -57388,6 +60054,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57395,6 +60062,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57402,6 +60070,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57409,6 +60078,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -57435,6 +60105,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57442,6 +60113,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57449,6 +60121,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57456,12 +60129,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57475,12 +60150,14 @@ paths: tags: - users.drive summary: Get fields from users + description: A collection of the fields and values for this version of the list item. operationId: users.drives.list.items.versions_GetFields parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57488,6 +60165,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57495,6 +60173,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57502,6 +60181,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -57549,6 +60229,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57556,6 +60237,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57563,6 +60245,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57570,6 +60253,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -57596,6 +60280,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57603,6 +60288,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57610,6 +60296,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -57617,12 +60304,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57636,12 +60325,14 @@ paths: tags: - users.drive summary: Get operations from users + description: The collection of long running operations for the list. operationId: users.drives.list_ListOperations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57649,6 +60340,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57740,6 +60432,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57747,6 +60440,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57772,12 +60466,14 @@ paths: tags: - users.drive summary: Get operations from users + description: The collection of long running operations for the list. operationId: users.drives.list_GetOperations parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57785,6 +60481,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57792,6 +60489,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -57848,6 +60546,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57855,6 +60554,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57862,6 +60562,7 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation @@ -57888,6 +60589,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57895,6 +60597,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -57902,12 +60605,14 @@ paths: in: path description: 'key: id of richLongRunningOperation' required: true + style: simple schema: type: string x-ms-docs-key-type: richLongRunningOperation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57921,12 +60626,14 @@ paths: tags: - users.drive summary: Get subscriptions from users + description: The set of subscriptions on the list. operationId: users.drives.list_ListSubscriptions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -57934,6 +60641,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58043,6 +60751,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58050,6 +60759,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58075,12 +60785,14 @@ paths: tags: - users.drive summary: Get subscriptions from users + description: The set of subscriptions on the list. operationId: users.drives.list_GetSubscriptions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58088,6 +60800,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58095,6 +60808,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -58160,6 +60874,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58167,6 +60882,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58174,6 +60890,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -58200,6 +60917,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58207,6 +60925,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58214,12 +60933,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -58233,12 +60954,14 @@ paths: tags: - users.drive summary: Get root from users + description: The root folder of the drive. Read-only. operationId: users.drives_GetRoot parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58246,6 +60969,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58393,6 +61117,8 @@ paths: parameters: user-id: $request.path.user-id drive-id: $request.path.drive-id + assignSensitivityLabel: + operationId: users.user.drives.drive.root.assignSensitivityLabel checkin: operationId: users.user.drives.drive.root.checkin checkout: @@ -58436,6 +61162,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58443,6 +61170,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58469,6 +61197,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58476,12 +61205,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -58495,12 +61226,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.root_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58508,6 +61241,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58580,12 +61314,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.root_GetActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58593,6 +61329,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58600,6 +61337,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -58662,12 +61400,14 @@ paths: tags: - users.drive summary: Get analytics from users + description: Analytics about the view activities that took place on this item. operationId: users.drives.root_GetAnalytics parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58675,6 +61415,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58739,12 +61480,14 @@ paths: tags: - users.drive summary: Get children from users + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: users.drives.root_ListChildren parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58752,6 +61495,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58938,12 +61682,14 @@ paths: tags: - users.drive summary: Get children from users + description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. operationId: users.drives.root_GetChildren parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -58951,6 +61697,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -58958,6 +61705,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -59124,12 +61872,14 @@ paths: tags: - users.drive summary: Get content for the navigation property children from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.root_GetChildrenContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59137,6 +61887,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59144,6 +61895,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -59162,12 +61914,14 @@ paths: tags: - users.drive summary: Update content for the navigation property children in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.root_SetChildrenContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59175,6 +61929,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59182,6 +61937,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -59204,12 +61960,14 @@ paths: tags: - users.drive summary: Get content for the navigation property root from users + description: 'The content stream, if the item represents a file.' operationId: users.drives_GetRootContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59217,6 +61975,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59235,12 +61994,14 @@ paths: tags: - users.drive summary: Update content for the navigation property root in users + description: 'The content stream, if the item represents a file.' operationId: users.drives_SetRootContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59248,6 +62009,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59270,12 +62032,14 @@ paths: tags: - users.drive summary: Get listItem from users + description: 'For drives in SharePoint, the associated document library list item. Read-only. Nullable.' operationId: users.drives.root_GetListItem parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59283,6 +62047,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59403,6 +62168,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59410,6 +62176,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59436,6 +62203,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59443,12 +62211,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59462,12 +62232,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.root.listItem_ListActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59475,6 +62247,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59552,6 +62325,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59559,6 +62333,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59584,12 +62359,14 @@ paths: tags: - users.drive summary: Get activities from users + description: The list of recent activities that took place on this item. operationId: users.drives.root.listItem_GetActivities parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59597,6 +62374,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59604,6 +62382,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -59671,6 +62450,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59678,6 +62458,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59685,6 +62466,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -59711,6 +62493,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59718,6 +62501,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59725,12 +62509,14 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59750,6 +62536,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59757,6 +62544,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59764,6 +62552,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -59930,12 +62719,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.root.listItem.activities_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59943,6 +62734,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59950,6 +62742,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -59968,12 +62761,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.root.listItem.activities_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -59981,6 +62776,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -59988,6 +62784,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -60016,6 +62813,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60023,6 +62821,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60030,6 +62829,7 @@ paths: in: path description: 'key: id of itemActivityOLD' required: true + style: simple schema: type: string x-ms-docs-key-type: itemActivityOLD @@ -60149,12 +62949,14 @@ paths: tags: - users.drive summary: Get analytics from users + description: Analytics about the view activities that took place on this item. operationId: users.drives.root.listItem_GetAnalytics parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60162,6 +62964,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60226,12 +63029,14 @@ paths: tags: - users.drive summary: Get documentSetVersions from users + description: Version information for a document set version created by a user. operationId: users.drives.root.listItem_ListDocumentSetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60239,6 +63044,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60329,6 +63135,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60336,6 +63143,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60361,12 +63169,14 @@ paths: tags: - users.drive summary: Get documentSetVersions from users + description: Version information for a document set version created by a user. operationId: users.drives.root.listItem_GetDocumentSetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60374,6 +63184,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60381,6 +63192,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -60447,6 +63259,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60454,6 +63267,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60461,6 +63275,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -60487,6 +63302,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60494,6 +63310,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60501,12 +63318,14 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -60520,12 +63339,14 @@ paths: tags: - users.drive summary: Get driveItem from users + description: 'For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]' operationId: users.drives.root.listItem_GetDriveItem parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60533,6 +63354,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60688,12 +63510,14 @@ paths: tags: - users.drive summary: Get content for the navigation property driveItem from users + description: 'The content stream, if the item represents a file.' operationId: users.drives.root.listItem_GetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60701,6 +63525,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60719,12 +63544,14 @@ paths: tags: - users.drive summary: Update content for the navigation property driveItem in users + description: 'The content stream, if the item represents a file.' operationId: users.drives.root.listItem_SetDriveItemContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60732,6 +63559,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60754,12 +63582,14 @@ paths: tags: - users.drive summary: Get fields from users + description: The values of the columns set on this list item. operationId: users.drives.root.listItem_GetFields parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60767,6 +63597,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60814,6 +63645,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60821,6 +63653,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60847,6 +63680,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60854,12 +63688,14 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -60873,12 +63709,14 @@ paths: tags: - users.drive summary: Get versions from users + description: The list of previous versions of the list item. operationId: users.drives.root.listItem_ListVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60886,6 +63724,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60961,6 +63800,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -60968,6 +63808,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -60993,12 +63834,14 @@ paths: tags: - users.drive summary: Get versions from users + description: The list of previous versions of the list item. operationId: users.drives.root.listItem_GetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61006,6 +63849,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61013,6 +63857,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -61074,6 +63919,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61081,6 +63927,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61088,6 +63935,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -61114,6 +63962,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61121,6 +63970,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61128,12 +63978,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61147,12 +63999,14 @@ paths: tags: - users.drive summary: Get fields from users + description: A collection of the fields and values for this version of the list item. operationId: users.drives.root.listItem.versions_GetFields parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61160,6 +64014,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61167,6 +64022,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -61214,6 +64070,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61221,6 +64078,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61228,6 +64086,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -61254,6 +64113,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61261,6 +64121,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61268,12 +64129,14 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61287,12 +64150,14 @@ paths: tags: - users.drive summary: Get permissions from users + description: The set of permissions for the item. Read-only. Nullable. operationId: users.drives.root_ListPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61300,6 +64165,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61397,6 +64263,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61404,6 +64271,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61429,12 +64297,14 @@ paths: tags: - users.drive summary: Get permissions from users + description: The set of permissions for the item. Read-only. Nullable. operationId: users.drives.root_GetPermissions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61442,6 +64312,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61449,6 +64320,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -61512,6 +64384,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61519,6 +64392,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61526,6 +64400,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -61552,6 +64427,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61559,6 +64435,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61566,12 +64443,14 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61585,12 +64464,14 @@ paths: tags: - users.drive summary: Get subscriptions from users + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: users.drives.root_ListSubscriptions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61598,6 +64479,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61707,6 +64589,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61714,6 +64597,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61739,12 +64623,14 @@ paths: tags: - users.drive summary: Get subscriptions from users + description: The set of subscriptions on the item. Only supported on the root of a drive. operationId: users.drives.root_GetSubscriptions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61752,6 +64638,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61759,6 +64646,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -61824,6 +64712,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61831,6 +64720,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61838,6 +64728,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -61864,6 +64755,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61871,6 +64763,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61878,12 +64771,14 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61897,12 +64792,14 @@ paths: tags: - users.drive summary: Get thumbnails from users + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: users.drives.root_ListThumbnails parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61910,6 +64807,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -61986,6 +64884,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -61993,6 +64892,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62018,12 +64918,14 @@ paths: tags: - users.drive summary: Get thumbnails from users + description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' operationId: users.drives.root_GetThumbnails parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62031,6 +64933,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62038,6 +64941,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -62089,6 +64993,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62096,6 +65001,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62103,6 +65009,7 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet @@ -62129,6 +65036,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62136,6 +65044,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62143,12 +65052,14 @@ paths: in: path description: 'key: id of thumbnailSet' required: true + style: simple schema: type: string x-ms-docs-key-type: thumbnailSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -62162,12 +65073,14 @@ paths: tags: - users.drive summary: Get versions from users + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: users.drives.root_ListVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62175,6 +65088,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62254,6 +65168,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62261,6 +65176,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62286,12 +65202,14 @@ paths: tags: - users.drive summary: Get versions from users + description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' operationId: users.drives.root_GetVersions parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62299,6 +65217,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62306,6 +65225,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -62361,6 +65281,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62368,6 +65289,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62375,6 +65297,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -62401,6 +65324,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62408,6 +65332,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62415,12 +65340,14 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -62440,6 +65367,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62447,6 +65375,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62454,6 +65383,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -62478,6 +65408,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62485,6 +65416,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62492,6 +65424,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -62514,12 +65447,14 @@ paths: tags: - users.drive summary: Get special from users + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: users.drives_ListSpecial parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62527,6 +65462,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62713,12 +65649,14 @@ paths: tags: - users.drive summary: Get special from users + description: Collection of common folders available in OneDrive. Read-only. Nullable. operationId: users.drives_GetSpecial parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62726,6 +65664,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62733,6 +65672,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -62899,12 +65839,14 @@ paths: tags: - users.drive summary: Get content for the navigation property special from users + description: 'The content stream, if the item represents a file.' operationId: users.drives_GetSpecialContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62912,6 +65854,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62919,6 +65862,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -62937,12 +65881,14 @@ paths: tags: - users.drive summary: Update content for the navigation property special in users + description: 'The content stream, if the item represents a file.' operationId: users.drives_SetSpecialContent parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -62950,6 +65896,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -62957,6 +65904,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -63352,6 +66300,14 @@ components: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' additionalProperties: type: object + microsoft.graph.sensitivityLabelAssignmentMethod: + title: sensitivityLabelAssignmentMethod + enum: + - standard + - privileged + - auto + - unknownFutureValue + type: string microsoft.graph.itemReference: title: itemReference type: object @@ -63581,12 +66537,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -63943,7 +66897,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -64347,7 +67300,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -64594,7 +67546,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -64792,7 +67743,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -65658,6 +68608,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -65954,7 +68910,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -66146,7 +69101,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -66182,11 +69136,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -66586,14 +69540,6 @@ components: type: object additionalProperties: type: object - microsoft.graph.sensitivityLabelAssignmentMethod: - title: sensitivityLabelAssignmentMethod - enum: - - standard - - privileged - - auto - - unknownFutureValue - type: string microsoft.graph.termStore.term: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -66919,12 +69865,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -67100,6 +70044,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -67392,6 +70337,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -67661,6 +70608,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -67700,7 +70649,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -69037,7 +71985,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -69844,7 +72792,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -70023,50 +72970,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -70074,7 +73011,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -70688,6 +73624,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -70824,7 +73762,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -70943,11 +73880,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -71003,14 +73940,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -71078,7 +74013,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -71101,7 +74035,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -71308,14 +74241,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -71788,6 +74732,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -72048,10 +75012,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -72951,7 +75913,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -73431,6 +76393,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -74596,6 +77562,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -75860,43 +78832,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -76377,12 +79342,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -77103,6 +80068,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -77519,21 +80529,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -77544,7 +80550,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printerShareViewpoint: @@ -77618,12 +80623,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -79353,6 +82361,59 @@ components: additionalProperties: type: object description: The security baseline compliance state of a setting for a device + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.windowsDeviceHealthState: title: windowsDeviceHealthState enum: @@ -80576,7 +83637,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -80876,6 +83936,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.timeClockSettings: title: timeClockSettings type: object @@ -82024,7 +85092,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -85728,6 +88796,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -85736,6 +88806,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -85743,18 +88815,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/Financials.yml b/openApiDocs/beta/Financials.yml index ba5b3d150ed..f5a22fac6dd 100644 --- a/openApiDocs/beta/Financials.yml +++ b/openApiDocs/beta/Financials.yml @@ -242,6 +242,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -505,6 +506,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -587,6 +589,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -618,6 +621,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -625,6 +629,7 @@ paths: in: path description: 'key: id of account' required: true + style: simple schema: type: string x-ms-docs-key-type: account @@ -679,6 +684,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -773,6 +779,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -804,6 +811,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -811,6 +819,7 @@ paths: in: path description: 'key: id of agedAccountsPayable' required: true + style: simple schema: type: string x-ms-docs-key-type: agedAccountsPayable @@ -869,6 +878,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -963,6 +973,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -994,6 +1005,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1001,6 +1013,7 @@ paths: in: path description: 'key: id of agedAccountsReceivable' required: true + style: simple schema: type: string x-ms-docs-key-type: agedAccountsReceivable @@ -1059,6 +1072,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1159,6 +1173,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1190,6 +1205,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1197,6 +1213,7 @@ paths: in: path description: 'key: id of companyInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: companyInformation @@ -1256,6 +1273,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1263,6 +1281,7 @@ paths: in: path description: 'key: id of companyInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: companyInformation @@ -1290,6 +1309,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1297,6 +1317,7 @@ paths: in: path description: 'key: id of companyInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: companyInformation @@ -1321,6 +1342,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1328,6 +1350,7 @@ paths: in: path description: 'key: id of companyInformation' required: true + style: simple schema: type: string x-ms-docs-key-type: companyInformation @@ -1356,6 +1379,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1432,6 +1456,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1463,6 +1488,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1470,6 +1496,7 @@ paths: in: path description: 'key: id of countryRegion' required: true + style: simple schema: type: string x-ms-docs-key-type: countryRegion @@ -1521,6 +1548,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1528,6 +1556,7 @@ paths: in: path description: 'key: id of countryRegion' required: true + style: simple schema: type: string x-ms-docs-key-type: countryRegion @@ -1554,6 +1583,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1561,12 +1591,14 @@ paths: in: path description: 'key: id of countryRegion' required: true + style: simple schema: type: string x-ms-docs-key-type: countryRegion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1586,6 +1618,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1668,6 +1701,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1699,6 +1733,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1706,6 +1741,7 @@ paths: in: path description: 'key: id of currency' required: true + style: simple schema: type: string x-ms-docs-key-type: currency @@ -1759,6 +1795,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1766,6 +1803,7 @@ paths: in: path description: 'key: id of currency' required: true + style: simple schema: type: string x-ms-docs-key-type: currency @@ -1792,6 +1830,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1799,12 +1838,14 @@ paths: in: path description: 'key: id of currency' required: true + style: simple schema: type: string x-ms-docs-key-type: currency - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1824,6 +1865,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1907,6 +1949,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1938,6 +1981,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -1945,6 +1989,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2012,6 +2057,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2019,6 +2065,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2045,6 +2092,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2052,12 +2100,14 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2077,6 +2127,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2084,6 +2135,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2137,6 +2189,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2144,6 +2197,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2171,6 +2225,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2178,6 +2233,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2286,6 +2342,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2293,6 +2350,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2324,6 +2382,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2331,6 +2390,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2338,6 +2398,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2408,6 +2469,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2415,6 +2477,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2422,6 +2485,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2448,6 +2512,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2455,6 +2520,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2462,12 +2528,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2487,6 +2555,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2494,6 +2563,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2501,6 +2571,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2607,6 +2678,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2614,6 +2686,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2621,6 +2694,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2647,6 +2721,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2654,6 +2729,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2661,12 +2737,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2686,6 +2764,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2693,6 +2772,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2700,6 +2780,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2753,6 +2834,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2760,6 +2842,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2767,6 +2850,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2793,6 +2877,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2800,6 +2885,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2807,12 +2893,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2832,6 +2920,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2839,6 +2928,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2846,6 +2936,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2896,6 +2987,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2903,6 +2995,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2910,6 +3003,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -2936,6 +3030,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2943,6 +3038,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2950,12 +3046,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2975,6 +3073,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -2982,6 +3081,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -2989,6 +3089,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3043,6 +3144,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3050,6 +3152,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3057,6 +3160,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3083,6 +3187,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3090,6 +3195,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3097,12 +3203,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3122,6 +3230,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3129,6 +3238,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3136,6 +3246,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3212,6 +3323,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3219,6 +3331,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3226,6 +3339,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3257,6 +3371,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3264,6 +3379,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3271,6 +3387,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3278,6 +3395,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -3329,6 +3447,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3336,6 +3455,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3343,6 +3463,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3350,6 +3471,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -3376,6 +3498,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3383,6 +3506,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3390,6 +3514,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3397,12 +3522,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3422,6 +3549,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3429,6 +3557,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3436,6 +3565,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3443,6 +3573,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -3467,6 +3598,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3474,6 +3606,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3481,6 +3614,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3488,6 +3622,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -3516,6 +3651,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3523,6 +3659,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3530,6 +3667,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3580,6 +3718,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3587,6 +3726,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3594,6 +3734,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3620,6 +3761,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3627,6 +3769,7 @@ paths: in: path description: 'key: id of customerPaymentJournal' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPaymentJournal @@ -3634,12 +3777,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3659,6 +3804,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3767,6 +3913,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3798,6 +3945,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3805,6 +3953,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3874,6 +4023,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3881,6 +4031,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -3907,6 +4058,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3914,12 +4066,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3939,6 +4093,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -3946,6 +4101,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4047,6 +4203,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4054,6 +4211,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4080,6 +4238,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4087,12 +4246,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4112,6 +4273,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4119,6 +4281,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4172,6 +4335,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4179,6 +4343,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4205,6 +4370,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4212,12 +4378,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4237,6 +4405,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4244,6 +4413,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4294,6 +4464,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4301,6 +4472,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4327,6 +4499,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4334,12 +4507,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4359,6 +4534,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4366,6 +4542,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4420,6 +4597,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4427,6 +4605,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4453,6 +4632,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4460,12 +4640,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4485,6 +4667,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4492,6 +4675,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4568,6 +4752,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4575,6 +4760,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4606,6 +4792,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4613,6 +4800,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4620,6 +4808,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -4671,6 +4860,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4678,6 +4868,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4685,6 +4876,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -4711,6 +4903,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4718,6 +4911,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4725,12 +4919,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4750,6 +4946,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4757,6 +4954,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4764,6 +4962,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -4788,6 +4987,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4795,6 +4995,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4802,6 +5003,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -4830,6 +5032,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4837,6 +5040,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4887,6 +5091,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4894,6 +5099,7 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment @@ -4920,6 +5126,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -4927,12 +5134,14 @@ paths: in: path description: 'key: id of customerPayment' required: true + style: simple schema: type: string x-ms-docs-key-type: customerPayment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4952,6 +5161,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5080,6 +5290,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5111,6 +5322,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5118,6 +5330,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5219,6 +5432,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5226,6 +5440,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5252,6 +5467,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5259,12 +5475,14 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5284,6 +5502,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5291,6 +5510,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5344,6 +5564,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5351,6 +5572,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5377,6 +5599,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5384,12 +5607,14 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5409,6 +5634,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5416,6 +5642,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5466,6 +5693,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5473,6 +5701,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5499,6 +5728,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5506,12 +5736,14 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5531,6 +5763,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5538,6 +5771,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5592,6 +5826,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5599,6 +5834,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5625,6 +5861,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5632,12 +5869,14 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5657,6 +5896,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5664,6 +5904,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5740,6 +5981,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5747,6 +5989,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5778,6 +6021,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5785,6 +6029,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5792,6 +6037,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -5843,6 +6089,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5850,6 +6097,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5857,6 +6105,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -5883,6 +6132,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5890,6 +6140,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5897,12 +6148,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5922,6 +6175,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5929,6 +6183,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5936,6 +6191,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -5960,6 +6216,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -5967,6 +6224,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -5974,6 +6232,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -6002,6 +6261,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6009,6 +6269,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -6059,6 +6320,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6066,6 +6328,7 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer @@ -6092,6 +6355,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6099,12 +6363,14 @@ paths: in: path description: 'key: id of customer' required: true + style: simple schema: type: string x-ms-docs-key-type: customer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6124,6 +6390,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6199,6 +6466,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6230,6 +6498,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6237,6 +6506,7 @@ paths: in: path description: 'key: id of dimension' required: true + style: simple schema: type: string x-ms-docs-key-type: dimension @@ -6296,6 +6566,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6303,6 +6574,7 @@ paths: in: path description: 'key: id of dimension' required: true + style: simple schema: type: string x-ms-docs-key-type: dimension @@ -6376,6 +6648,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6383,6 +6656,7 @@ paths: in: path description: 'key: id of dimension' required: true + style: simple schema: type: string x-ms-docs-key-type: dimension @@ -6414,6 +6688,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6421,6 +6696,7 @@ paths: in: path description: 'key: id of dimension' required: true + style: simple schema: type: string x-ms-docs-key-type: dimension @@ -6428,6 +6704,7 @@ paths: in: path description: 'key: id of dimensionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: dimensionValue @@ -6479,6 +6756,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6552,6 +6830,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6583,6 +6862,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6590,6 +6870,7 @@ paths: in: path description: 'key: id of dimensionValue' required: true + style: simple schema: type: string x-ms-docs-key-type: dimensionValue @@ -6641,6 +6922,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6758,6 +7040,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6789,6 +7072,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6796,6 +7080,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -6868,6 +7153,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6875,6 +7161,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -6901,6 +7188,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6908,12 +7196,14 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6933,6 +7223,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -6940,6 +7231,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7016,6 +7308,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7023,6 +7316,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7054,6 +7348,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7061,6 +7356,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7068,6 +7364,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -7119,6 +7416,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7126,6 +7424,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7133,6 +7432,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -7159,6 +7459,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7166,6 +7467,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7173,12 +7475,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7198,6 +7502,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7205,6 +7510,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7212,6 +7518,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -7236,6 +7543,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7243,6 +7551,7 @@ paths: in: path description: 'key: id of employee' required: true + style: simple schema: type: string x-ms-docs-key-type: employee @@ -7250,6 +7559,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -7278,6 +7588,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7371,6 +7682,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7402,6 +7714,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7409,6 +7722,7 @@ paths: in: path description: 'key: id of generalLedgerEntry' required: true + style: simple schema: type: string x-ms-docs-key-type: generalLedgerEntry @@ -7474,6 +7788,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7481,6 +7796,7 @@ paths: in: path description: 'key: id of generalLedgerEntry' required: true + style: simple schema: type: string x-ms-docs-key-type: generalLedgerEntry @@ -7534,6 +7850,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7541,6 +7858,7 @@ paths: in: path description: 'key: id of generalLedgerEntry' required: true + style: simple schema: type: string x-ms-docs-key-type: generalLedgerEntry @@ -7568,6 +7886,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7641,6 +7960,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7672,6 +7992,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7679,6 +8000,7 @@ paths: in: path description: 'key: id of itemCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: itemCategory @@ -7729,6 +8051,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7736,6 +8059,7 @@ paths: in: path description: 'key: id of itemCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: itemCategory @@ -7762,6 +8086,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7769,12 +8094,14 @@ paths: in: path description: 'key: id of itemCategory' required: true + style: simple schema: type: string x-ms-docs-key-type: itemCategory - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7794,6 +8121,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7907,6 +8235,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7938,6 +8267,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -7945,6 +8275,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8022,6 +8353,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8029,6 +8361,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8055,6 +8388,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8062,12 +8396,14 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8087,6 +8423,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8094,6 +8431,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8144,6 +8482,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8151,6 +8490,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8177,6 +8517,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8184,12 +8525,14 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8209,6 +8552,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8216,6 +8560,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8292,6 +8637,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8299,6 +8645,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8330,6 +8677,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8337,6 +8685,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8344,6 +8693,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -8395,6 +8745,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8402,6 +8753,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8409,6 +8761,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -8435,6 +8788,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8442,6 +8796,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8449,12 +8804,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8474,6 +8831,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8481,6 +8839,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8488,6 +8847,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -8512,6 +8872,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8519,6 +8880,7 @@ paths: in: path description: 'key: id of item' required: true + style: simple schema: type: string x-ms-docs-key-type: item @@ -8526,6 +8888,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -8554,6 +8917,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8653,6 +9017,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8684,6 +9049,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8691,6 +9057,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -8757,6 +9124,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8764,6 +9132,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -8790,6 +9159,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8797,12 +9167,14 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8822,6 +9194,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8829,6 +9202,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -8882,6 +9256,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8889,6 +9264,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -8916,6 +9292,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -8999,6 +9376,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9030,6 +9408,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9037,6 +9416,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9106,6 +9486,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9113,6 +9494,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9139,6 +9521,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9146,12 +9529,14 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9171,6 +9556,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9178,6 +9564,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9231,6 +9618,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9238,6 +9626,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9265,6 +9654,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9272,6 +9662,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9371,6 +9762,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9378,6 +9770,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9409,6 +9802,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9416,6 +9810,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9423,6 +9818,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -9490,6 +9886,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9497,6 +9894,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9504,6 +9902,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -9530,6 +9929,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9537,6 +9937,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9544,12 +9945,14 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9569,6 +9972,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9576,6 +9980,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9583,6 +9988,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -9636,6 +10042,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9643,6 +10050,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9650,6 +10058,7 @@ paths: in: path description: 'key: id of journalLine' required: true + style: simple schema: type: string x-ms-docs-key-type: journalLine @@ -9677,6 +10086,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9684,6 +10094,7 @@ paths: in: path description: 'key: id of journal' required: true + style: simple schema: type: string x-ms-docs-key-type: journal @@ -9704,6 +10115,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9777,6 +10189,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9808,6 +10221,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9815,6 +10229,7 @@ paths: in: path description: 'key: id of paymentMethod' required: true + style: simple schema: type: string x-ms-docs-key-type: paymentMethod @@ -9865,6 +10280,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9872,6 +10288,7 @@ paths: in: path description: 'key: id of paymentMethod' required: true + style: simple schema: type: string x-ms-docs-key-type: paymentMethod @@ -9898,6 +10315,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -9905,12 +10323,14 @@ paths: in: path description: 'key: id of paymentMethod' required: true + style: simple schema: type: string x-ms-docs-key-type: paymentMethod - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9930,6 +10350,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10015,6 +10436,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10046,6 +10468,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10053,6 +10476,7 @@ paths: in: path description: 'key: id of paymentTerm' required: true + style: simple schema: type: string x-ms-docs-key-type: paymentTerm @@ -10107,6 +10531,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10114,6 +10539,7 @@ paths: in: path description: 'key: id of paymentTerm' required: true + style: simple schema: type: string x-ms-docs-key-type: paymentTerm @@ -10140,6 +10566,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10147,12 +10574,14 @@ paths: in: path description: 'key: id of paymentTerm' required: true + style: simple schema: type: string x-ms-docs-key-type: paymentTerm - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10172,6 +10601,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10248,6 +10678,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10279,6 +10710,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10286,6 +10718,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -10337,6 +10770,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10344,6 +10778,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -10370,6 +10805,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10377,12 +10813,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10402,6 +10840,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10409,6 +10848,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -10433,6 +10873,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10440,6 +10881,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -10468,6 +10910,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10599,6 +11042,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10630,6 +11074,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10637,6 +11082,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -10720,6 +11166,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10727,6 +11174,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -10754,6 +11202,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10761,6 +11210,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -10814,6 +11264,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10821,6 +11272,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -10848,6 +11300,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10855,6 +11308,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -10932,6 +11386,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10939,6 +11394,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -10965,6 +11421,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -10972,12 +11429,14 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10997,6 +11456,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11004,6 +11464,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11054,6 +11515,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11061,6 +11523,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11087,6 +11550,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11094,12 +11558,14 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11119,6 +11585,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11126,6 +11593,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11202,6 +11670,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11209,6 +11678,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11240,6 +11710,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11247,6 +11718,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11254,6 +11726,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -11305,6 +11778,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11312,6 +11786,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11319,6 +11794,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -11345,6 +11821,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11352,6 +11829,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11359,12 +11837,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11384,6 +11864,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11391,6 +11872,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11398,6 +11880,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -11422,6 +11905,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11429,6 +11913,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -11436,6 +11921,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -11464,6 +11950,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11612,6 +12099,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11643,6 +12131,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11650,6 +12139,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -11747,6 +12237,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11754,6 +12245,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -11781,6 +12273,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11788,6 +12281,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -11841,6 +12335,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11848,6 +12343,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -11874,6 +12370,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11881,12 +12378,14 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11906,6 +12405,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11913,6 +12413,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -11933,6 +12434,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -11940,6 +12442,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12071,6 +12574,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12078,6 +12582,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12109,6 +12614,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12116,6 +12622,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12123,6 +12630,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12208,6 +12716,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12215,6 +12724,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12222,6 +12732,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12249,6 +12760,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12256,6 +12768,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12263,6 +12776,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12316,6 +12830,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12323,6 +12838,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12330,6 +12846,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12357,6 +12874,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12364,6 +12882,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12371,6 +12890,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12450,6 +12970,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12457,6 +12978,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12464,6 +12986,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12490,6 +13013,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12497,6 +13021,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12504,12 +13029,14 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12529,6 +13056,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12536,6 +13064,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12543,6 +13072,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12593,6 +13123,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12600,6 +13131,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12607,6 +13139,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12633,6 +13166,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12640,6 +13174,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12647,12 +13182,14 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12672,6 +13209,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12679,6 +13217,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12686,6 +13225,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12762,6 +13302,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12769,6 +13310,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12776,6 +13318,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12807,6 +13350,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12814,6 +13358,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12821,6 +13366,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12828,6 +13374,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -12879,6 +13426,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12886,6 +13434,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12893,6 +13442,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12900,6 +13450,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -12926,6 +13477,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12933,6 +13485,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12940,6 +13493,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12947,12 +13501,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12972,6 +13528,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -12979,6 +13536,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -12986,6 +13544,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -12993,6 +13552,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -13017,6 +13577,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13024,6 +13585,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13031,6 +13593,7 @@ paths: in: path description: 'key: id of purchaseInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoiceLine @@ -13038,6 +13601,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -13066,6 +13630,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13073,6 +13638,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13164,6 +13730,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13171,6 +13738,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13197,6 +13765,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13204,12 +13773,14 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13229,6 +13800,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13236,6 +13808,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13289,6 +13862,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13296,6 +13870,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13322,6 +13897,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13329,12 +13905,14 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13354,6 +13932,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13361,6 +13940,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13411,6 +13991,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13418,6 +13999,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13444,6 +14026,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13451,12 +14034,14 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13476,6 +14061,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13483,6 +14069,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13537,6 +14124,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13544,6 +14132,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13570,6 +14159,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13577,12 +14167,14 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13602,6 +14194,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13609,6 +14202,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13685,6 +14279,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13692,6 +14287,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13723,6 +14319,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13730,6 +14327,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13737,6 +14335,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -13788,6 +14387,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13795,6 +14395,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13802,6 +14403,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -13828,6 +14430,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13835,6 +14438,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13842,12 +14446,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13867,6 +14473,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13874,6 +14481,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13881,6 +14489,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -13905,6 +14514,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -13912,6 +14522,7 @@ paths: in: path description: 'key: id of purchaseInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: purchaseInvoice @@ -13919,6 +14530,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -13947,6 +14559,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14081,6 +14694,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14112,6 +14726,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14119,6 +14734,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14203,6 +14819,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14210,6 +14827,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14237,6 +14855,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14244,6 +14863,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14297,6 +14917,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14304,6 +14925,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14331,6 +14953,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14338,6 +14961,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14415,6 +15039,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14422,6 +15047,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14448,6 +15074,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14455,12 +15082,14 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14480,6 +15109,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14487,6 +15117,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14537,6 +15168,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14544,6 +15176,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14570,6 +15203,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14577,12 +15211,14 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14602,6 +15238,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14609,6 +15246,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14685,6 +15323,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14692,6 +15331,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14723,6 +15363,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14730,6 +15371,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14737,6 +15379,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -14788,6 +15431,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14795,6 +15439,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14802,6 +15447,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -14828,6 +15474,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14835,6 +15482,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14842,12 +15490,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14867,6 +15517,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14874,6 +15525,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14881,6 +15533,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -14905,6 +15558,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -14912,6 +15566,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -14919,6 +15574,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -14947,6 +15603,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15103,6 +15760,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15134,6 +15792,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15141,6 +15800,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15245,6 +15905,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15252,6 +15913,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15279,6 +15941,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15286,6 +15949,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15339,6 +16003,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15346,6 +16011,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15372,6 +16038,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15379,12 +16046,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15404,6 +16073,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15411,6 +16081,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15512,6 +16183,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15519,6 +16191,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15545,6 +16218,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15552,12 +16226,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15577,6 +16253,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15584,6 +16261,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15637,6 +16315,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15644,6 +16323,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15670,6 +16350,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15677,12 +16358,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15702,6 +16385,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15709,6 +16393,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15759,6 +16444,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15766,6 +16452,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15792,6 +16479,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15799,12 +16487,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15824,6 +16514,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15831,6 +16522,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15885,6 +16577,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15892,6 +16585,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -15918,6 +16612,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15925,12 +16620,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15950,6 +16647,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -15957,6 +16655,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16033,6 +16732,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16040,6 +16740,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16071,6 +16772,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16078,6 +16780,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16085,6 +16788,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -16136,6 +16840,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16143,6 +16848,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16150,6 +16856,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -16176,6 +16883,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16183,6 +16891,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16190,12 +16899,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16215,6 +16926,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16222,6 +16934,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16229,6 +16942,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -16253,6 +16967,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16260,6 +16975,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16267,6 +16983,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -16295,6 +17012,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16302,6 +17020,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16352,6 +17071,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16359,6 +17079,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16385,6 +17106,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16392,12 +17114,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16417,6 +17141,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16424,6 +17149,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16478,6 +17204,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16485,6 +17212,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16511,6 +17239,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16518,12 +17247,14 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16543,6 +17274,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16550,6 +17282,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16684,6 +17417,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16691,6 +17425,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16722,6 +17457,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16729,6 +17465,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16736,6 +17473,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -16822,6 +17560,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16829,6 +17568,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16836,6 +17576,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -16863,6 +17604,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16870,6 +17612,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16877,6 +17620,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -16930,6 +17674,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16937,6 +17682,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16944,6 +17690,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -16971,6 +17718,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -16978,6 +17726,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -16985,6 +17734,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17064,6 +17814,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17071,6 +17822,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17078,6 +17830,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17104,6 +17857,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17111,6 +17865,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17118,12 +17873,14 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17143,6 +17900,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17150,6 +17908,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17157,6 +17916,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17207,6 +17967,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17214,6 +17975,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17221,6 +17983,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17247,6 +18010,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17254,6 +18018,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17261,12 +18026,14 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17286,6 +18053,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17293,6 +18061,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17300,6 +18069,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17376,6 +18146,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17383,6 +18154,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17390,6 +18162,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17421,6 +18194,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17428,6 +18202,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17435,6 +18210,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17442,6 +18218,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -17493,6 +18270,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17500,6 +18278,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17507,6 +18286,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17514,6 +18294,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -17540,6 +18321,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17547,6 +18329,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17554,6 +18337,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17561,12 +18345,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17586,6 +18372,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17593,6 +18380,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17600,6 +18388,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17607,6 +18396,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -17631,6 +18421,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17638,6 +18429,7 @@ paths: in: path description: 'key: id of salesCreditMemo' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemo @@ -17645,6 +18437,7 @@ paths: in: path description: 'key: id of salesCreditMemoLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesCreditMemoLine @@ -17652,6 +18445,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -17680,6 +18474,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17814,6 +18609,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17845,6 +18641,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17852,6 +18649,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -17936,6 +18734,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17943,6 +18742,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -17970,6 +18770,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -17977,6 +18778,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18030,6 +18832,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18037,6 +18840,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18064,6 +18868,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18071,6 +18876,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18148,6 +18954,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18155,6 +18962,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18181,6 +18989,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18188,12 +18997,14 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18213,6 +19024,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18220,6 +19032,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18270,6 +19083,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18277,6 +19091,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18303,6 +19118,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18310,12 +19126,14 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18335,6 +19153,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18342,6 +19161,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18418,6 +19238,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18425,6 +19246,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18456,6 +19278,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18463,6 +19286,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18470,6 +19294,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -18521,6 +19346,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18528,6 +19354,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18535,6 +19362,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -18561,6 +19389,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18568,6 +19397,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18575,12 +19405,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18600,6 +19432,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18607,6 +19440,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18614,6 +19448,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -18638,6 +19473,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18645,6 +19481,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -18652,6 +19489,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -18680,6 +19518,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18853,6 +19692,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18884,6 +19724,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -18891,6 +19732,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19017,6 +19859,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19024,6 +19867,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19051,6 +19895,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19058,6 +19903,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19111,6 +19957,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19118,6 +19965,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19144,6 +19992,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19151,12 +20000,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19176,6 +20027,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19183,6 +20035,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19284,6 +20137,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19291,6 +20145,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19317,6 +20172,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19324,12 +20180,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19349,6 +20207,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19356,6 +20215,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19409,6 +20269,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19416,6 +20277,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19442,6 +20304,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19449,12 +20312,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19474,6 +20339,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19481,6 +20347,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19531,6 +20398,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19538,6 +20406,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19564,6 +20433,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19571,12 +20441,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19596,6 +20468,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19603,6 +20476,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19657,6 +20531,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19664,6 +20539,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19690,6 +20566,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19697,12 +20574,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19722,6 +20601,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19729,6 +20609,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19805,6 +20686,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19812,6 +20694,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19843,6 +20726,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19850,6 +20734,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19857,6 +20742,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -19908,6 +20794,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19915,6 +20802,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19922,6 +20810,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -19948,6 +20837,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19955,6 +20845,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -19962,12 +20853,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19987,6 +20880,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -19994,6 +20888,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20001,6 +20896,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -20025,6 +20921,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20032,6 +20929,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20039,6 +20937,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -20067,6 +20966,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20074,6 +20974,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20124,6 +21025,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20131,6 +21033,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20157,6 +21060,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20164,12 +21068,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20189,6 +21095,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20196,6 +21103,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20216,6 +21124,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20223,6 +21132,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20243,6 +21153,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20250,6 +21161,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20270,6 +21182,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20277,6 +21190,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20297,6 +21211,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20304,6 +21219,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20324,6 +21240,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20331,6 +21248,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20385,6 +21303,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20392,6 +21311,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20418,6 +21338,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20425,12 +21346,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20450,6 +21373,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20457,6 +21381,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20591,6 +21516,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20598,6 +21524,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20629,6 +21556,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20636,6 +21564,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20643,6 +21572,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -20729,6 +21659,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20736,6 +21667,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20743,6 +21675,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -20770,6 +21703,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20777,6 +21711,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20784,6 +21719,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -20837,6 +21773,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20844,6 +21781,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20851,6 +21789,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -20878,6 +21817,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20885,6 +21825,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20892,6 +21833,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -20971,6 +21913,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -20978,6 +21921,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -20985,6 +21929,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21011,6 +21956,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21018,6 +21964,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21025,12 +21972,14 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21050,6 +21999,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21057,6 +22007,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21064,6 +22015,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21114,6 +22066,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21121,6 +22074,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21128,6 +22082,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21154,6 +22109,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21161,6 +22117,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21168,12 +22125,14 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21193,6 +22152,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21200,6 +22160,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21207,6 +22168,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21283,6 +22245,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21290,6 +22253,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21297,6 +22261,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21328,6 +22293,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21335,6 +22301,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21342,6 +22309,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21349,6 +22317,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -21400,6 +22369,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21407,6 +22377,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21414,6 +22385,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21421,6 +22393,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -21447,6 +22420,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21454,6 +22428,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21461,6 +22436,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21468,12 +22444,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21493,6 +22471,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21500,6 +22479,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21507,6 +22487,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21514,6 +22495,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -21538,6 +22520,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21545,6 +22528,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21552,6 +22536,7 @@ paths: in: path description: 'key: id of salesInvoiceLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoiceLine @@ -21559,6 +22544,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -21587,6 +22573,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21594,6 +22581,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21644,6 +22632,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21651,6 +22640,7 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice @@ -21677,6 +22667,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21684,12 +22675,14 @@ paths: in: path description: 'key: id of salesInvoice' required: true + style: simple schema: type: string x-ms-docs-key-type: salesInvoice - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21709,6 +22702,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21855,6 +22849,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21886,6 +22881,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21893,6 +22889,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -21981,6 +22978,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -21988,6 +22986,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22015,6 +23014,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22022,6 +23022,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22075,6 +23076,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22082,6 +23084,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22109,6 +23112,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22116,6 +23120,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22193,6 +23198,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22200,6 +23206,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22226,6 +23233,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22233,12 +23241,14 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22258,6 +23268,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22265,6 +23276,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22315,6 +23327,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22322,6 +23335,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22348,6 +23362,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22355,12 +23370,14 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22380,6 +23397,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22387,6 +23405,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22463,6 +23482,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22470,6 +23490,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22501,6 +23522,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22508,6 +23530,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22515,6 +23538,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -22566,6 +23590,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22573,6 +23598,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22580,6 +23606,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -22606,6 +23633,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22613,6 +23641,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22620,12 +23649,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22645,6 +23676,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22652,6 +23684,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22659,6 +23692,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -22683,6 +23717,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22690,6 +23725,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -22697,6 +23733,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -22725,6 +23762,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22890,6 +23928,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22921,6 +23960,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -22928,6 +23968,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23035,6 +24076,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23042,6 +24084,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23069,6 +24112,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23076,6 +24120,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23129,6 +24174,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23136,6 +24182,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23162,6 +24209,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23169,12 +24217,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23194,6 +24244,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23201,6 +24252,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23302,6 +24354,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23309,6 +24362,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23335,6 +24389,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23342,12 +24397,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23367,6 +24424,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23374,6 +24432,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23427,6 +24486,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23434,6 +24494,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23460,6 +24521,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23467,12 +24529,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23492,6 +24556,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23499,6 +24564,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23549,6 +24615,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23556,6 +24623,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23582,6 +24650,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23589,12 +24658,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23614,6 +24685,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23621,6 +24693,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23675,6 +24748,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23682,6 +24756,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23708,6 +24783,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23715,12 +24791,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23740,6 +24818,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23747,6 +24826,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23823,6 +24903,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23830,6 +24911,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23861,6 +24943,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23868,6 +24951,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23875,6 +24959,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -23926,6 +25011,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23933,6 +25019,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23940,6 +25027,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -23966,6 +25054,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -23973,6 +25062,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -23980,12 +25070,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24005,6 +25097,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24012,6 +25105,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24019,6 +25113,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -24043,6 +25138,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24050,6 +25146,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24057,6 +25154,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -24085,6 +25183,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24092,6 +25191,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24142,6 +25242,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24149,6 +25250,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24175,6 +25277,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24182,12 +25285,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24207,6 +25312,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24214,6 +25320,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24268,6 +25375,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24275,6 +25383,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24301,6 +25410,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24308,12 +25418,14 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24333,6 +25445,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24340,6 +25453,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24486,6 +25600,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24493,6 +25608,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24524,6 +25640,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24531,6 +25648,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24538,6 +25656,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -24628,6 +25747,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24635,6 +25755,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24642,6 +25763,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -24669,6 +25791,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24676,6 +25799,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24683,6 +25807,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -24736,6 +25861,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24743,6 +25869,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24750,6 +25877,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -24777,6 +25905,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24784,6 +25913,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24791,6 +25921,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -24870,6 +26001,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24877,6 +26009,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24884,6 +26017,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -24910,6 +26044,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24917,6 +26052,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24924,12 +26060,14 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24949,6 +26087,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -24956,6 +26095,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -24963,6 +26103,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25013,6 +26154,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25020,6 +26162,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25027,6 +26170,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25053,6 +26197,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25060,6 +26205,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25067,12 +26213,14 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25092,6 +26240,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25099,6 +26248,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25106,6 +26256,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25182,6 +26333,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25189,6 +26341,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25196,6 +26349,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25227,6 +26381,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25234,6 +26389,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25241,6 +26397,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25248,6 +26405,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -25299,6 +26457,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25306,6 +26465,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25313,6 +26473,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25320,6 +26481,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -25346,6 +26508,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25353,6 +26516,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25360,6 +26524,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25367,12 +26532,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25392,6 +26559,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25399,6 +26567,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25406,6 +26575,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25413,6 +26583,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -25437,6 +26608,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25444,6 +26616,7 @@ paths: in: path description: 'key: id of salesOrder' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrder @@ -25451,6 +26624,7 @@ paths: in: path description: 'key: id of salesOrderLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesOrderLine @@ -25458,6 +26632,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -25486,6 +26661,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25614,6 +26790,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25645,6 +26822,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25652,6 +26830,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -25734,6 +26913,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25741,6 +26921,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -25768,6 +26949,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25775,6 +26957,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -25828,6 +27011,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25835,6 +27019,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -25862,6 +27047,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25869,6 +27055,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -25946,6 +27133,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25953,6 +27141,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -25979,6 +27168,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -25986,12 +27176,14 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26011,6 +27203,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26018,6 +27211,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26068,6 +27262,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26075,6 +27270,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26101,6 +27297,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26108,12 +27305,14 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26133,6 +27332,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26140,6 +27340,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26216,6 +27417,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26223,6 +27425,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26254,6 +27457,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26261,6 +27465,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26268,6 +27473,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -26319,6 +27525,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26326,6 +27533,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26333,6 +27541,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -26359,6 +27568,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26366,6 +27576,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26373,12 +27584,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26398,6 +27611,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26405,6 +27619,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26412,6 +27627,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -26436,6 +27652,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26443,6 +27660,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -26450,6 +27668,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -26478,6 +27697,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26645,6 +27865,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26676,6 +27897,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26683,6 +27905,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -26801,6 +28024,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26808,6 +28032,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -26835,6 +28060,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26842,6 +28068,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -26895,6 +28122,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26902,6 +28130,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -26928,6 +28157,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26935,12 +28165,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26960,6 +28192,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -26967,6 +28200,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27068,6 +28302,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27075,6 +28310,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27101,6 +28337,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27108,12 +28345,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27133,6 +28372,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27140,6 +28380,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27193,6 +28434,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27200,6 +28442,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27226,6 +28469,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27233,12 +28477,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27258,6 +28504,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27265,6 +28512,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27315,6 +28563,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27322,6 +28571,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27348,6 +28598,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27355,12 +28606,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27380,6 +28633,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27387,6 +28641,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27441,6 +28696,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27448,6 +28704,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27474,6 +28731,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27481,12 +28739,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27506,6 +28766,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27513,6 +28774,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27589,6 +28851,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27596,6 +28859,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27627,6 +28891,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27634,6 +28899,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27641,6 +28907,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -27692,6 +28959,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27699,6 +28967,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27706,6 +28975,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -27732,6 +29002,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27739,6 +29010,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27746,12 +29018,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27771,6 +29045,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27778,6 +29053,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27785,6 +29061,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -27809,6 +29086,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27816,6 +29094,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27823,6 +29102,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -27851,6 +29131,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27858,6 +29139,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27908,6 +29190,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27915,6 +29198,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -27941,6 +29225,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27948,12 +29233,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27973,6 +29260,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -27980,6 +29268,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28000,6 +29289,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28007,6 +29297,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28027,6 +29318,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28034,6 +29326,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28088,6 +29381,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28095,6 +29389,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28121,6 +29416,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28128,12 +29424,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28153,6 +29451,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28160,6 +29459,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28288,6 +29588,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28295,6 +29596,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28326,6 +29628,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28333,6 +29636,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28340,6 +29644,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28424,6 +29729,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28431,6 +29737,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28438,6 +29745,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28465,6 +29773,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28472,6 +29781,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28479,6 +29789,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28532,6 +29843,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28539,6 +29851,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28546,6 +29859,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28573,6 +29887,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28580,6 +29895,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28587,6 +29903,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28666,6 +29983,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28673,6 +29991,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28680,6 +29999,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28706,6 +30026,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28713,6 +30034,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28720,12 +30042,14 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28745,6 +30069,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28752,6 +30077,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28759,6 +30085,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28809,6 +30136,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28816,6 +30144,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28823,6 +30152,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28849,6 +30179,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28856,6 +30187,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28863,12 +30195,14 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28888,6 +30222,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28895,6 +30230,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28902,6 +30238,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -28978,6 +30315,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -28985,6 +30323,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -28992,6 +30331,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -29023,6 +30363,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29030,6 +30371,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29037,6 +30379,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -29044,6 +30387,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -29095,6 +30439,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29102,6 +30447,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29109,6 +30455,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -29116,6 +30463,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -29142,6 +30490,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29149,6 +30498,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29156,6 +30506,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -29163,12 +30514,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29188,6 +30541,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29195,6 +30549,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29202,6 +30557,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -29209,6 +30565,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -29233,6 +30590,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29240,6 +30598,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29247,6 +30606,7 @@ paths: in: path description: 'key: id of salesQuoteLine' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuoteLine @@ -29254,6 +30614,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -29282,6 +30643,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29289,6 +30651,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29339,6 +30702,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29346,6 +30710,7 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote @@ -29372,6 +30737,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29379,12 +30745,14 @@ paths: in: path description: 'key: id of salesQuote' required: true + style: simple schema: type: string x-ms-docs-key-type: salesQuote - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29404,6 +30772,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29477,6 +30846,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29508,6 +30878,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29515,6 +30886,7 @@ paths: in: path description: 'key: id of shipmentMethod' required: true + style: simple schema: type: string x-ms-docs-key-type: shipmentMethod @@ -29565,6 +30937,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29572,6 +30945,7 @@ paths: in: path description: 'key: id of shipmentMethod' required: true + style: simple schema: type: string x-ms-docs-key-type: shipmentMethod @@ -29598,6 +30972,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29605,12 +30980,14 @@ paths: in: path description: 'key: id of shipmentMethod' required: true + style: simple schema: type: string x-ms-docs-key-type: shipmentMethod - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29630,6 +31007,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29706,6 +31084,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29737,6 +31116,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29744,6 +31124,7 @@ paths: in: path description: 'key: id of taxArea' required: true + style: simple schema: type: string x-ms-docs-key-type: taxArea @@ -29795,6 +31176,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29802,6 +31184,7 @@ paths: in: path description: 'key: id of taxArea' required: true + style: simple schema: type: string x-ms-docs-key-type: taxArea @@ -29828,6 +31211,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29835,12 +31219,14 @@ paths: in: path description: 'key: id of taxArea' required: true + style: simple schema: type: string x-ms-docs-key-type: taxArea - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29860,6 +31246,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29936,6 +31323,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29967,6 +31355,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -29974,6 +31363,7 @@ paths: in: path description: 'key: id of taxGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: taxGroup @@ -30025,6 +31415,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30032,6 +31423,7 @@ paths: in: path description: 'key: id of taxGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: taxGroup @@ -30058,6 +31450,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30065,12 +31458,14 @@ paths: in: path description: 'key: id of taxGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: taxGroup - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30090,6 +31485,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30166,6 +31562,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30197,6 +31594,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30204,6 +31602,7 @@ paths: in: path description: 'key: id of unitOfMeasure' required: true + style: simple schema: type: string x-ms-docs-key-type: unitOfMeasure @@ -30255,6 +31654,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30262,6 +31662,7 @@ paths: in: path description: 'key: id of unitOfMeasure' required: true + style: simple schema: type: string x-ms-docs-key-type: unitOfMeasure @@ -30288,6 +31689,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30295,12 +31697,14 @@ paths: in: path description: 'key: id of unitOfMeasure' required: true + style: simple schema: type: string x-ms-docs-key-type: unitOfMeasure - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30320,6 +31724,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30437,6 +31842,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30468,6 +31874,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30475,6 +31882,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30566,6 +31974,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30573,6 +31982,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30599,6 +32009,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30606,12 +32017,14 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30631,6 +32044,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30638,6 +32052,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30691,6 +32106,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30698,6 +32114,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30724,6 +32141,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30731,12 +32149,14 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30756,6 +32176,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30763,6 +32184,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30813,6 +32235,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30820,6 +32243,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30846,6 +32270,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30853,12 +32278,14 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30878,6 +32305,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30885,6 +32313,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30939,6 +32368,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30946,6 +32376,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -30972,6 +32403,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -30979,12 +32411,14 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31004,6 +32438,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31011,6 +32446,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31087,6 +32523,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31094,6 +32531,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31125,6 +32563,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31132,6 +32571,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31139,6 +32579,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -31190,6 +32631,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31197,6 +32639,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31204,6 +32647,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -31230,6 +32674,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31237,6 +32682,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31244,12 +32690,14 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31269,6 +32717,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31276,6 +32725,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31283,6 +32733,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -31307,6 +32758,7 @@ paths: in: path description: 'key: id of company' required: true + style: simple schema: type: string x-ms-docs-key-type: company @@ -31314,6 +32766,7 @@ paths: in: path description: 'key: id of vendor' required: true + style: simple schema: type: string x-ms-docs-key-type: vendor @@ -31321,6 +32774,7 @@ paths: in: path description: 'key: id of picture' required: true + style: simple schema: type: string x-ms-docs-key-type: picture @@ -34358,6 +35812,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -34366,6 +35822,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -34373,18 +35831,24 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean securitySchemes: diff --git a/openApiDocs/beta/Groups.yml b/openApiDocs/beta/Groups.yml index 27c8fd12e47..b1e77e7f057 100644 --- a/openApiDocs/beta/Groups.yml +++ b/openApiDocs/beta/Groups.yml @@ -11,6 +11,7 @@ paths: tags: - groupLifecyclePolicies.groupLifecyclePolicy summary: List groupLifecyclePolicies + description: List all the groupLifecyclePolicies. operationId: groupLifecyclePolicies.groupLifecyclePolicy_ListGroupLifecyclePolicy parameters: - $ref: '#/components/parameters/top' @@ -77,6 +78,7 @@ paths: tags: - groupLifecyclePolicies.groupLifecyclePolicy summary: Create groupLifecyclePolicy + description: Creates a new groupLifecyclePolicy. operationId: groupLifecyclePolicies.groupLifecyclePolicy_CreateGroupLifecyclePolicy requestBody: description: New entity @@ -100,12 +102,14 @@ paths: tags: - groupLifecyclePolicies.groupLifecyclePolicy summary: Get groupLifecyclePolicy + description: Retrieve the properties and relationships of a groupLifecyclePolicies object. operationId: groupLifecyclePolicies.groupLifecyclePolicy_GetGroupLifecyclePolicy parameters: - name: groupLifecyclePolicy-id in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -155,12 +159,14 @@ paths: tags: - groupLifecyclePolicies.groupLifecyclePolicy summary: Update groupLifecyclePolicy + description: Update the properties of a groupLifecyclePolicygroupLifecyclePolicy resource type object. operationId: groupLifecyclePolicies.groupLifecyclePolicy_UpdateGroupLifecyclePolicy parameters: - name: groupLifecyclePolicy-id in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -181,18 +187,21 @@ paths: tags: - groupLifecyclePolicies.groupLifecyclePolicy summary: Delete groupLifecyclePolicy + description: Delete a groupLifecyclePolicy. operationId: groupLifecyclePolicies.groupLifecyclePolicy_DeleteGroupLifecyclePolicy parameters: - name: groupLifecyclePolicy-id in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -212,6 +221,7 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -254,6 +264,7 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -324,11 +335,13 @@ paths: tags: - groups.group summary: List groups + description: 'List all the groups available in an organization, excluding dynamic distribution groups. To retrieve dynamic distribution groups, use the Exchange admin center. This operation returns by default only a subset of the more commonly used properties for each group. These _default_ properties are noted in the Properties section. To get properties that are _not_ returned by default, do a GET operation for the group and specify the properties in a `$select` OData query option. The **hasMembersWithLicenseErrors** and **isArchived** properties are an exception and are not returned in the `$select` query.' operationId: groups.group_ListGroup parameters: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -336,10 +349,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -546,46 +556,6 @@ paths: - photos - team type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - appRoleAssignments - - createdOnBehalfOf - - endpoints - - memberOf - - members - - membersWithLicenseErrors - - owners - - permissionGrants - - settings - - transitiveMemberOf - - transitiveMembers - - acceptedSenders - - calendar - - calendarView - - conversations - - events - - rejectedSenders - - threads - - drive - - drives - - sites - - extensions - - groupLifecyclePolicies - - planner - - onenote - - photo - - photos - - team - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' @@ -599,6 +569,7 @@ paths: tags: - groups.group summary: Create group + description: 'Create a new group as specified in the request body. You can create one of the following groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are _not_ returned by default, do a GET operation and specify the properties in a `$select` OData query option. **Note**: To create a team, first create a group then add a team to it, see create team.' operationId: groups.group_CreateGroup requestBody: description: New entity @@ -622,12 +593,14 @@ paths: tags: - groups.group summary: Get group + description: 'Get the properties and relationships of a group object. This operation returns by default only a subset of all the available properties, as noted in the Properties section. To get properties that are _not_ returned by default, specify them in a `$select` OData query option. The **hasMembersWithLicenseErrors** and **isArchived** properties are an exception and are not returned in the `$select` query. Because the **group** resource supports extensions, you can also use the `GET` operation to get custom properties and extension data in a **group** instance.' operationId: groups.group_GetGroup parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -722,46 +695,6 @@ paths: - photos - team type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - appRoleAssignments - - createdOnBehalfOf - - endpoints - - memberOf - - members - - membersWithLicenseErrors - - owners - - permissionGrants - - settings - - transitiveMemberOf - - transitiveMembers - - acceptedSenders - - calendar - - calendarView - - conversations - - events - - rejectedSenders - - threads - - drive - - drives - - sites - - extensions - - groupLifecyclePolicies - - planner - - onenote - - photo - - photos - - team - type: string responses: '200': description: Retrieved entity @@ -919,12 +852,14 @@ paths: tags: - groups.group summary: Update group + description: Update the properties of a group object. operationId: groups.group_UpdateGroup parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -945,18 +880,21 @@ paths: tags: - groups.group summary: Delete group + description: 'Deletes a group. When deleted, Microsoft 365 groups are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted. This isn''t applicable to Security groups and Distribution groups which are permanently deleted immediately. To learn more, see deletedItems.' operationId: groups.group_DeleteGroup parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -970,12 +908,14 @@ paths: tags: - groups.directoryObject summary: Get acceptedSenders from groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_ListAcceptedSenders parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1031,6 +971,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1038,17 +979,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -1062,12 +1007,14 @@ paths: tags: - groups.directoryObject summary: Get ref of acceptedSenders from groups + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. operationId: groups_ListAcceptedSendersGraphBPreRef parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1109,18 +1056,12 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -1138,6 +1079,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1145,6 +1087,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1181,6 +1124,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1188,6 +1132,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1195,6 +1140,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1231,6 +1177,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1238,6 +1185,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1245,6 +1193,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1252,6 +1201,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1288,6 +1238,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1295,6 +1246,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1302,6 +1254,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1309,6 +1262,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1346,6 +1300,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1353,6 +1308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1360,6 +1316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1367,6 +1324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1400,6 +1358,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1407,6 +1366,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1414,6 +1374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1421,6 +1382,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1460,6 +1422,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1467,6 +1430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1474,6 +1438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1481,6 +1446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1501,6 +1467,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1508,6 +1475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1515,6 +1483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1522,6 +1491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1559,6 +1529,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1566,6 +1537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1573,6 +1545,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1580,6 +1553,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1612,6 +1586,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1619,6 +1594,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1626,6 +1602,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1633,6 +1610,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1672,6 +1650,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1679,6 +1658,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1686,6 +1666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1718,6 +1699,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1725,6 +1707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1732,6 +1715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1769,6 +1753,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1776,6 +1761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1783,6 +1769,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1816,6 +1803,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1823,6 +1811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1830,6 +1819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1869,6 +1859,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1876,6 +1867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1883,6 +1875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1903,6 +1896,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1910,6 +1904,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1917,6 +1912,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1954,6 +1950,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -1961,6 +1958,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -1968,6 +1966,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2000,6 +1999,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2007,6 +2007,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2014,6 +2015,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2053,6 +2055,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2060,6 +2063,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2092,6 +2096,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2099,6 +2104,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2106,6 +2112,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2142,6 +2149,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2149,6 +2157,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2156,6 +2165,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2163,6 +2173,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2199,6 +2210,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2206,6 +2218,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2213,6 +2226,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2220,6 +2234,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2257,6 +2272,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2264,6 +2280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2271,6 +2288,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2278,6 +2296,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2311,6 +2330,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2318,6 +2338,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2325,6 +2346,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2332,6 +2354,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2371,6 +2394,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2378,6 +2402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2385,6 +2410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2392,6 +2418,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2412,6 +2439,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2419,6 +2447,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2426,6 +2455,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2433,6 +2463,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2470,6 +2501,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2477,6 +2509,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2484,6 +2517,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2491,6 +2525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2523,6 +2558,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2530,6 +2566,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2537,6 +2574,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2544,6 +2582,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2583,6 +2622,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2590,6 +2630,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2597,6 +2638,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2629,6 +2671,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2636,6 +2679,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2643,6 +2687,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2680,6 +2725,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2687,6 +2733,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2694,6 +2741,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2727,6 +2775,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2734,6 +2783,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2741,6 +2791,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2780,6 +2831,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2787,6 +2839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2794,6 +2847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2814,6 +2868,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2821,6 +2876,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2828,6 +2884,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2865,6 +2922,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2872,6 +2930,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2879,6 +2938,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2911,6 +2971,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2918,6 +2979,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2925,6 +2987,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -2964,6 +3027,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -2971,6 +3035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3003,6 +3068,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3010,6 +3076,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3047,6 +3114,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3054,6 +3122,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3087,6 +3156,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3094,6 +3164,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3133,6 +3204,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3140,6 +3212,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3160,6 +3233,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3167,6 +3241,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3204,6 +3279,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3211,6 +3287,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3243,6 +3320,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3250,6 +3328,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3289,6 +3368,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3321,6 +3401,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3328,6 +3409,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3364,6 +3446,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3371,6 +3454,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3378,6 +3462,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3414,6 +3499,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3421,6 +3507,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3428,6 +3515,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3435,6 +3523,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3471,6 +3560,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3478,6 +3568,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3485,6 +3576,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3492,6 +3584,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3529,6 +3622,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3536,6 +3630,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3543,6 +3638,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3550,6 +3646,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3583,6 +3680,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3590,6 +3688,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3597,6 +3696,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3604,6 +3704,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3643,6 +3744,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3650,6 +3752,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3657,6 +3760,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3664,6 +3768,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3684,6 +3789,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3691,6 +3797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3698,6 +3805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3705,6 +3813,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3742,6 +3851,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3749,6 +3859,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3756,6 +3867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3763,6 +3875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3795,6 +3908,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3802,6 +3916,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3809,6 +3924,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3816,6 +3932,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3855,6 +3972,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3862,6 +3980,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3869,6 +3988,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3901,6 +4021,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3908,6 +4029,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3915,6 +4037,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3952,6 +4075,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -3959,6 +4083,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3966,6 +4091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -3999,6 +4125,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4006,6 +4133,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4013,6 +4141,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4052,6 +4181,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4059,6 +4189,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4066,6 +4197,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4086,6 +4218,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4093,6 +4226,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4100,6 +4234,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4137,6 +4272,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4144,6 +4280,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4151,6 +4288,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4183,6 +4321,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4190,6 +4329,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4197,6 +4337,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4236,6 +4377,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4243,6 +4385,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4275,6 +4418,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4282,6 +4426,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4289,6 +4434,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4325,6 +4471,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4332,6 +4479,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4339,6 +4487,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4346,6 +4495,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4382,6 +4532,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4389,6 +4540,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4396,6 +4548,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4403,6 +4556,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4440,6 +4594,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4447,6 +4602,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4454,6 +4610,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4461,6 +4618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4494,6 +4652,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4501,6 +4660,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4508,6 +4668,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4515,6 +4676,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4554,6 +4716,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4561,6 +4724,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4568,6 +4732,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4575,6 +4740,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4595,6 +4761,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4602,6 +4769,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4609,6 +4777,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4616,6 +4785,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4653,6 +4823,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4660,6 +4831,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4667,6 +4839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4674,6 +4847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4706,6 +4880,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4713,6 +4888,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4720,6 +4896,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4727,6 +4904,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4766,6 +4944,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4773,6 +4952,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4780,6 +4960,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4812,6 +4993,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4819,6 +5001,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4826,6 +5009,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4863,6 +5047,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4870,6 +5055,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4877,6 +5063,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4910,6 +5097,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4917,6 +5105,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4924,6 +5113,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4963,6 +5153,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -4970,6 +5161,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4977,6 +5169,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -4997,6 +5190,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5004,6 +5198,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5011,6 +5206,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5048,6 +5244,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5055,6 +5252,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5062,6 +5260,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5094,6 +5293,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5101,6 +5301,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5108,6 +5309,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5147,6 +5349,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5154,6 +5357,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5186,6 +5390,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5193,6 +5398,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5230,6 +5436,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5237,6 +5444,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5270,6 +5478,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5277,6 +5486,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5316,6 +5526,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5323,6 +5534,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5343,6 +5555,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5350,6 +5563,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5387,6 +5601,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5394,6 +5609,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5426,6 +5642,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5433,6 +5650,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5472,6 +5690,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5504,6 +5723,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5511,6 +5731,7 @@ paths: in: path description: 'Usage: User=''{User}''' required: true + style: simple schema: type: string responses: @@ -5542,6 +5763,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5599,6 +5821,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5606,6 +5829,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5642,6 +5866,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5649,6 +5874,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5656,6 +5882,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5692,6 +5919,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5699,6 +5927,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5706,6 +5935,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5713,6 +5943,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5749,6 +5980,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5756,6 +5988,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5763,6 +5996,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5770,6 +6004,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5807,6 +6042,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5814,6 +6050,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5821,6 +6058,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5828,6 +6066,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5861,6 +6100,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5868,6 +6108,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5875,6 +6116,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5882,6 +6124,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5921,6 +6164,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5928,6 +6172,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5935,6 +6180,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5942,6 +6188,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5962,6 +6209,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -5969,6 +6217,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5976,6 +6225,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -5983,6 +6233,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6020,6 +6271,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6027,6 +6279,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6034,6 +6287,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6041,6 +6295,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6073,6 +6328,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6080,6 +6336,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6087,6 +6344,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6094,6 +6352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6133,6 +6392,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6140,6 +6400,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6147,6 +6408,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6179,6 +6441,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6186,6 +6449,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6193,6 +6457,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6230,6 +6495,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6237,6 +6503,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6244,6 +6511,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6277,6 +6545,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6284,6 +6553,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6291,6 +6561,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6330,6 +6601,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6337,6 +6609,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6344,6 +6617,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6364,6 +6638,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6371,6 +6646,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6378,6 +6654,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6415,6 +6692,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6422,6 +6700,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6429,6 +6708,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6461,6 +6741,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6468,6 +6749,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6475,6 +6757,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6514,6 +6797,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6521,6 +6805,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6553,6 +6838,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6560,6 +6846,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6567,6 +6854,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6603,6 +6891,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6610,6 +6899,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6617,6 +6907,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6624,6 +6915,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6660,6 +6952,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6667,6 +6960,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6674,6 +6968,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6681,6 +6976,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6718,6 +7014,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6725,6 +7022,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6732,6 +7030,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6739,6 +7038,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6772,6 +7072,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6779,6 +7080,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6786,6 +7088,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6793,6 +7096,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6832,6 +7136,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6839,6 +7144,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6846,6 +7152,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6853,6 +7160,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6873,6 +7181,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6880,6 +7189,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6887,6 +7197,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6894,6 +7205,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6931,6 +7243,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6938,6 +7251,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6945,6 +7259,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6952,6 +7267,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6984,6 +7300,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -6991,6 +7308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -6998,6 +7316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7005,6 +7324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7044,6 +7364,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7051,6 +7372,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7058,6 +7380,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7090,6 +7413,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7097,6 +7421,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7104,6 +7429,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7141,6 +7467,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7148,6 +7475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7155,6 +7483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7188,6 +7517,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7195,6 +7525,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7202,6 +7533,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7241,6 +7573,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7248,6 +7581,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7255,6 +7589,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7275,6 +7610,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7282,6 +7618,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7289,6 +7626,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7326,6 +7664,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7333,6 +7672,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7340,6 +7680,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7372,6 +7713,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7379,6 +7721,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7386,6 +7729,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7425,6 +7769,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7432,6 +7777,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7464,6 +7810,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7471,6 +7818,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7508,6 +7856,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7515,6 +7864,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7548,6 +7898,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7555,6 +7906,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7594,6 +7946,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7601,6 +7954,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7621,6 +7975,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7628,6 +7983,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7665,6 +8021,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7672,6 +8029,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7704,6 +8062,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7711,6 +8070,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -7750,6 +8110,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7776,12 +8137,14 @@ paths: tags: - groups.conversation summary: Get conversations from groups + description: The group's conversations. operationId: groups_ListConversations parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7850,6 +8213,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7875,12 +8239,14 @@ paths: tags: - groups.conversation summary: Get conversations from groups + description: The group's conversations. operationId: groups_GetConversations parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7888,6 +8254,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -7935,6 +8302,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7942,6 +8310,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -7968,6 +8337,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -7975,12 +8345,14 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7994,12 +8366,14 @@ paths: tags: - groups.conversation summary: Get threads from groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_ListThreads parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8007,6 +8381,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8096,6 +8471,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8103,6 +8479,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8128,12 +8505,14 @@ paths: tags: - groups.conversation summary: Get threads from groups + description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations_GetThreads parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8141,6 +8520,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8148,6 +8528,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8214,6 +8595,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8221,6 +8603,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8228,6 +8611,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8254,6 +8638,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8261,6 +8646,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8268,12 +8654,14 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8293,6 +8681,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8300,6 +8689,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8307,6 +8697,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8339,6 +8730,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8346,6 +8738,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8353,6 +8746,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8467,6 +8861,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8474,6 +8869,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8481,6 +8877,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8512,6 +8909,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8519,6 +8917,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8526,6 +8925,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8533,6 +8933,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -8652,6 +9053,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8659,6 +9061,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8666,6 +9069,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8673,6 +9077,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -8699,6 +9104,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8706,6 +9112,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8713,6 +9120,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8720,12 +9128,14 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8739,12 +9149,14 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.conversations.threads.posts_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8752,6 +9164,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8759,6 +9172,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8766,6 +9180,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -8844,6 +9259,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8851,6 +9267,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8858,6 +9275,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8865,6 +9283,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -8890,12 +9309,14 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.conversations.threads.posts_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8903,6 +9324,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8910,6 +9332,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8917,6 +9340,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -8924,6 +9348,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -8976,6 +9401,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -8983,6 +9409,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -8990,6 +9417,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -8997,6 +9425,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9004,6 +9433,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -9030,6 +9460,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9037,6 +9468,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9044,6 +9476,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9051,6 +9484,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9058,12 +9492,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9083,6 +9519,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9090,6 +9527,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9097,6 +9535,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9104,6 +9543,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9134,12 +9574,14 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9147,6 +9589,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9154,6 +9597,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9161,6 +9605,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9224,6 +9669,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9231,6 +9677,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9238,6 +9685,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9245,6 +9693,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9270,12 +9719,14 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9283,6 +9734,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9290,6 +9742,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9297,6 +9750,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9304,6 +9758,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -9351,6 +9806,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9358,6 +9814,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9365,6 +9822,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9372,6 +9830,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9379,6 +9838,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -9405,6 +9865,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9412,6 +9873,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9419,6 +9881,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9426,6 +9889,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9433,12 +9897,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9452,12 +9918,14 @@ paths: tags: - groups.conversation summary: Get inReplyTo from groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. Supports $expand. operationId: groups.conversations.threads.posts_GetInReplyTo parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9465,6 +9933,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9472,6 +9941,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9479,6 +9949,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9598,6 +10069,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9605,6 +10077,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9612,6 +10085,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9619,6 +10093,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9645,6 +10120,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9652,6 +10128,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9659,6 +10136,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9666,12 +10144,14 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9685,12 +10165,14 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.conversations.threads.posts.inReplyTo_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9698,6 +10180,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9705,6 +10188,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9712,6 +10196,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9790,6 +10275,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9797,6 +10283,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9804,6 +10291,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9811,6 +10299,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9836,12 +10325,14 @@ paths: tags: - groups.conversation summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.conversations.threads.posts.inReplyTo_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9849,6 +10340,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9856,6 +10348,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9863,6 +10356,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9870,6 +10364,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -9922,6 +10417,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9929,6 +10425,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9936,6 +10433,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9943,6 +10441,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -9950,6 +10449,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -9976,6 +10476,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -9983,6 +10484,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -9990,6 +10492,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -9997,6 +10500,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10004,12 +10508,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10029,6 +10535,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10036,6 +10543,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10043,6 +10551,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10050,6 +10559,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10080,12 +10590,14 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.inReplyTo_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10093,6 +10605,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10100,6 +10613,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10107,6 +10621,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10170,6 +10685,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10177,6 +10693,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10184,6 +10701,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10191,6 +10709,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10216,12 +10735,14 @@ paths: tags: - groups.conversation summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.inReplyTo_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10229,6 +10750,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10236,6 +10758,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10243,6 +10766,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10250,6 +10774,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -10297,6 +10822,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10304,6 +10830,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10311,6 +10838,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10318,6 +10846,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10325,6 +10854,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -10351,6 +10881,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10358,6 +10889,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10365,6 +10897,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10372,6 +10905,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10379,12 +10913,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10404,6 +10940,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10411,6 +10948,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10418,6 +10956,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10425,6 +10964,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10512,6 +11052,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10519,6 +11060,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10526,6 +11068,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10533,6 +11076,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10564,6 +11108,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10571,6 +11116,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10578,6 +11124,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10585,6 +11132,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10592,6 +11140,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -10647,6 +11196,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10654,6 +11204,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10661,6 +11212,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10668,6 +11220,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10675,6 +11228,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -10701,6 +11255,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10708,6 +11263,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10715,6 +11271,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10722,6 +11279,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10729,12 +11287,14 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10754,6 +11314,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10761,6 +11322,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10768,6 +11330,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10775,6 +11338,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10812,6 +11376,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10819,6 +11384,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10826,6 +11392,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10833,6 +11400,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10859,12 +11427,14 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts.inReplyTo_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10872,6 +11442,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10879,6 +11450,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10886,6 +11458,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10953,6 +11526,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -10960,6 +11534,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -10967,6 +11542,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -10974,6 +11550,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -10999,12 +11576,14 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts.inReplyTo_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11012,6 +11591,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11019,6 +11599,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11026,6 +11607,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11033,6 +11615,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -11081,6 +11664,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11088,6 +11672,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11095,6 +11680,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11102,6 +11688,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11109,6 +11696,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -11135,6 +11723,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11142,6 +11731,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11149,6 +11739,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11156,6 +11747,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11163,12 +11755,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11182,12 +11776,14 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts.inReplyTo_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11195,6 +11791,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11202,6 +11799,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11209,6 +11807,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11276,6 +11875,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11283,6 +11883,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11290,6 +11891,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11297,6 +11899,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11322,12 +11925,14 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts.inReplyTo_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11335,6 +11940,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11342,6 +11948,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11349,6 +11956,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11356,6 +11964,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -11404,6 +12013,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11411,6 +12021,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11418,6 +12029,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11425,6 +12037,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11432,6 +12045,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -11458,6 +12072,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11465,6 +12080,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11472,6 +12088,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11479,6 +12096,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11486,12 +12104,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11511,6 +12131,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11518,6 +12139,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11525,6 +12147,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11532,6 +12155,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11619,6 +12243,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11626,6 +12251,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11633,6 +12259,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11640,6 +12267,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11671,6 +12299,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11678,6 +12307,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11685,6 +12315,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11692,6 +12323,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11699,6 +12331,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -11754,6 +12387,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11761,6 +12395,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11768,6 +12403,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11775,6 +12411,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11782,6 +12419,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -11808,6 +12446,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11815,6 +12454,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11822,6 +12462,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11829,6 +12470,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11836,12 +12478,14 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11861,6 +12505,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11868,6 +12513,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11875,6 +12521,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11882,6 +12529,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11919,6 +12567,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11926,6 +12575,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11933,6 +12583,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11940,6 +12591,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -11966,12 +12618,14 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -11979,6 +12633,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -11986,6 +12641,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -11993,6 +12649,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12060,6 +12717,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12067,6 +12725,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12074,6 +12733,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12081,6 +12741,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12106,12 +12767,14 @@ paths: tags: - groups.conversation summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12119,6 +12782,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12126,6 +12790,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12133,6 +12798,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12140,6 +12806,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -12188,6 +12855,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12195,6 +12863,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12202,6 +12871,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12209,6 +12879,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12216,6 +12887,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -12242,6 +12914,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12249,6 +12922,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12256,6 +12930,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12263,6 +12938,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12270,12 +12946,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12289,12 +12967,14 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12302,6 +12982,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12309,6 +12990,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12316,6 +12998,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12383,6 +13066,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12390,6 +13074,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12397,6 +13082,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12404,6 +13090,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12429,12 +13116,14 @@ paths: tags: - groups.conversation summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.conversations.threads.posts_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12442,6 +13131,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12449,6 +13139,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12456,6 +13147,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12463,6 +13155,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -12511,6 +13204,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12518,6 +13212,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12525,6 +13220,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12532,6 +13228,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12539,6 +13236,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -12565,6 +13263,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12572,6 +13271,7 @@ paths: in: path description: 'key: id of conversation' required: true + style: simple schema: type: string x-ms-docs-key-type: conversation @@ -12579,6 +13279,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -12586,6 +13287,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -12593,12 +13295,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12612,12 +13316,14 @@ paths: tags: - groups.directoryObject summary: Get createdOnBehalfOf from groups + description: 'The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only.' operationId: groups_GetCreatedOnBehalfGraphOPre parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12667,6 +13373,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12674,6 +13381,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12681,6 +13389,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -12688,6 +13397,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -12708,6 +13418,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12715,6 +13426,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12722,6 +13434,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -12778,6 +13491,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12785,6 +13499,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12792,6 +13507,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -12799,6 +13515,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -12806,6 +13523,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -12813,6 +13531,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -12845,6 +13564,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12852,6 +13572,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12859,6 +13580,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -12866,6 +13588,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -12875,6 +13598,61 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/microsoft.graph.assignSensitivityLabel': + post: + tags: + - groups.Actions + summary: Invoke action assignSensitivityLabel + operationId: groups.drives.items_assignSensitivityLabel + parameters: + - name: group-id + in: path + description: 'key: id of group' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: group + - name: drive-id + in: path + description: 'key: id of drive' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: drive + - name: driveItem-id + in: path + description: 'key: id of driveItem' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: driveItem + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sensitivityLabelId: + type: string + nullable: true + assignmentMethod: + $ref: '#/components/schemas/microsoft.graph.sensitivityLabelAssignmentMethod' + justificationText: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/microsoft.graph.checkin': post: tags: @@ -12886,6 +13664,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12893,6 +13672,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12900,6 +13680,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -12936,6 +13717,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12943,6 +13725,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12950,6 +13733,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -12970,6 +13754,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -12977,6 +13762,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -12984,6 +13770,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13023,6 +13810,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13030,6 +13818,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13037,6 +13826,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13096,6 +13886,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13103,6 +13894,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13110,6 +13902,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13146,6 +13939,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13153,6 +13947,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13160,6 +13955,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13192,6 +13988,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13199,6 +13996,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13206,6 +14004,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13213,6 +14012,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -13245,6 +14045,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13252,6 +14053,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13259,6 +14061,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13283,6 +14086,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13290,6 +14094,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13297,6 +14102,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13321,6 +14127,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13328,6 +14135,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13335,6 +14143,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13342,6 +14151,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -13349,6 +14159,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -13356,6 +14167,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -13388,6 +14200,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13395,6 +14208,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13402,6 +14216,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13474,6 +14289,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13481,6 +14297,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13488,6 +14305,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13540,6 +14358,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13547,6 +14366,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13554,6 +14374,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13593,6 +14414,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13600,6 +14422,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13607,6 +14430,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13614,6 +14438,7 @@ paths: in: path description: 'Usage: q=''{q}''' required: true + style: simple schema: type: string nullable: true @@ -13646,6 +14471,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13653,6 +14479,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13660,6 +14487,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13680,6 +14508,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13687,6 +14516,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13694,6 +14524,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13729,6 +14560,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13736,6 +14568,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13743,6 +14576,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13750,6 +14584,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -13801,6 +14636,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13808,6 +14644,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13815,6 +14652,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13822,6 +14660,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -13860,6 +14699,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13867,6 +14707,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13874,6 +14715,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13881,6 +14723,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -13901,6 +14744,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13908,6 +14752,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13915,6 +14760,7 @@ paths: in: path description: 'key: id of driveItem' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItem @@ -13922,6 +14768,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -13942,6 +14789,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -13949,6 +14797,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -13956,6 +14805,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -13994,6 +14844,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14001,6 +14852,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14008,6 +14860,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -14043,6 +14896,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14050,6 +14904,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14057,6 +14912,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -14087,6 +14943,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14094,6 +14951,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14101,6 +14959,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -14121,6 +14980,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14128,6 +14988,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14135,6 +14996,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -14155,6 +15017,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14162,6 +15025,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14198,6 +15062,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14205,6 +15070,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14241,6 +15107,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14248,6 +15115,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14280,6 +15148,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14287,6 +15156,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14294,6 +15164,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -14301,6 +15172,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -14321,6 +15193,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14328,6 +15201,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14335,6 +15209,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -14391,6 +15266,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14398,6 +15274,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14405,6 +15282,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -14412,6 +15290,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -14419,6 +15298,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -14426,6 +15306,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -14458,6 +15339,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14465,6 +15347,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14472,6 +15355,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -14479,6 +15363,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -14499,6 +15384,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14506,6 +15392,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14538,6 +15425,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14545,6 +15433,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14552,6 +15441,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -14584,6 +15474,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14591,6 +15482,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14598,6 +15490,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -14618,6 +15511,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14625,6 +15519,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14657,6 +15552,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14664,6 +15560,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14671,6 +15568,7 @@ paths: in: path description: 'Usage: q=''{q}''' required: true + style: simple schema: type: string nullable: true @@ -14703,6 +15601,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14710,6 +15609,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14742,6 +15642,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14749,6 +15650,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14756,6 +15658,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -14776,6 +15679,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14783,6 +15687,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14839,6 +15744,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14846,6 +15752,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14853,6 +15760,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -14860,6 +15768,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -14867,6 +15776,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -14899,6 +15809,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14906,6 +15817,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14913,6 +15825,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -14922,6 +15835,53 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action + '/groups/{group-id}/drives/{drive-id}/root/microsoft.graph.assignSensitivityLabel': + post: + tags: + - groups.Actions + summary: Invoke action assignSensitivityLabel + operationId: groups.drives.root_assignSensitivityLabel + parameters: + - name: group-id + in: path + description: 'key: id of group' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: group + - name: drive-id + in: path + description: 'key: id of drive' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: drive + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + sensitivityLabelId: + type: string + nullable: true + assignmentMethod: + $ref: '#/components/schemas/microsoft.graph.sensitivityLabelAssignmentMethod' + justificationText: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action '/groups/{group-id}/drives/{drive-id}/root/microsoft.graph.checkin': post: tags: @@ -14933,6 +15893,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14940,6 +15901,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -14976,6 +15938,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -14983,6 +15946,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15003,6 +15967,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15010,6 +15975,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15049,6 +16015,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15056,6 +16023,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15115,6 +16083,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15122,6 +16091,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15158,6 +16128,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15165,6 +16136,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15197,6 +16169,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15204,6 +16177,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15211,6 +16185,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -15243,6 +16218,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15250,6 +16226,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15274,6 +16251,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15281,6 +16259,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15305,6 +16284,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15312,6 +16292,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15319,6 +16300,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -15326,6 +16308,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -15333,6 +16316,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -15365,6 +16349,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15372,6 +16357,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15444,6 +16430,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15451,6 +16438,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15503,6 +16491,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15510,6 +16499,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15549,6 +16539,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15556,6 +16547,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15563,6 +16555,7 @@ paths: in: path description: 'Usage: q=''{q}''' required: true + style: simple schema: type: string nullable: true @@ -15595,6 +16588,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15602,6 +16596,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15622,6 +16617,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15629,6 +16625,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15664,6 +16661,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15671,6 +16669,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15678,6 +16677,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -15729,6 +16729,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15736,6 +16737,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15743,6 +16745,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -15781,6 +16784,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15788,6 +16792,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15795,6 +16800,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -15815,6 +16821,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15822,6 +16829,7 @@ paths: in: path description: 'key: id of drive' required: true + style: simple schema: type: string x-ms-docs-key-type: drive @@ -15829,6 +16837,7 @@ paths: in: path description: 'key: id of driveItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: driveItemVersion @@ -15843,12 +16852,14 @@ paths: tags: - groups.endpoint summary: Get endpoints from groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_ListEndpoints parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15931,6 +16942,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15956,12 +16968,14 @@ paths: tags: - groups.endpoint summary: Get endpoints from groups + description: Endpoints for the group. Read-only. Nullable. operationId: groups_GetEndpoints parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -15969,6 +16983,7 @@ paths: in: path description: 'key: id of endpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: endpoint @@ -16022,6 +17037,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16029,6 +17045,7 @@ paths: in: path description: 'key: id of endpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: endpoint @@ -16055,6 +17072,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16062,12 +17080,14 @@ paths: in: path description: 'key: id of endpoint' required: true + style: simple schema: type: string x-ms-docs-key-type: endpoint - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16087,6 +17107,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16094,6 +17115,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16130,6 +17152,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16137,6 +17160,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16144,6 +17168,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16180,6 +17205,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16187,6 +17213,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16194,6 +17221,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16201,6 +17229,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16237,6 +17266,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16244,6 +17274,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16251,6 +17282,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16258,6 +17290,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16295,6 +17328,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16302,6 +17336,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16309,6 +17344,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16316,6 +17352,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16349,6 +17386,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16356,6 +17394,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16363,6 +17402,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16370,6 +17410,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16409,6 +17450,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16416,6 +17458,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16423,6 +17466,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16430,6 +17474,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16450,6 +17495,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16457,6 +17503,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16464,6 +17511,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16471,6 +17519,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16508,6 +17557,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16515,6 +17565,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16522,6 +17573,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16529,6 +17581,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16561,6 +17614,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16568,6 +17622,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16575,6 +17630,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16582,6 +17638,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16621,6 +17678,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16628,6 +17686,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16635,6 +17694,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16667,6 +17727,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16674,6 +17735,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16681,6 +17743,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16718,6 +17781,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16725,6 +17789,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16732,6 +17797,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16765,6 +17831,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16772,6 +17839,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16779,6 +17847,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16818,6 +17887,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16825,6 +17895,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16832,6 +17903,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16852,6 +17924,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16859,6 +17932,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16866,6 +17940,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16903,6 +17978,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16910,6 +17986,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16917,6 +17994,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16949,6 +18027,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -16956,6 +18035,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -16963,6 +18043,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17002,6 +18083,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17009,6 +18091,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17041,6 +18124,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17048,6 +18132,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17055,6 +18140,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17091,6 +18177,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17098,6 +18185,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17105,6 +18193,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17112,6 +18201,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17148,6 +18238,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17155,6 +18246,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17162,6 +18254,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17169,6 +18262,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17206,6 +18300,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17213,6 +18308,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17220,6 +18316,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17227,6 +18324,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17260,6 +18358,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17267,6 +18366,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17274,6 +18374,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17281,6 +18382,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17320,6 +18422,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17327,6 +18430,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17334,6 +18438,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17341,6 +18446,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17361,6 +18467,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17368,6 +18475,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17375,6 +18483,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17382,6 +18491,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17419,6 +18529,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17426,6 +18537,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17433,6 +18545,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17440,6 +18553,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17472,6 +18586,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17479,6 +18594,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17486,6 +18602,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17493,6 +18610,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17532,6 +18650,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17539,6 +18658,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17546,6 +18666,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17578,6 +18699,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17585,6 +18707,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17592,6 +18715,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17629,6 +18753,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17636,6 +18761,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17643,6 +18769,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17676,6 +18803,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17683,6 +18811,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17690,6 +18819,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17729,6 +18859,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17736,6 +18867,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17743,6 +18875,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17763,6 +18896,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17770,6 +18904,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17777,6 +18912,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17814,6 +18950,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17821,6 +18958,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17828,6 +18966,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17860,6 +18999,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17867,6 +19007,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17874,6 +19015,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17913,6 +19055,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17920,6 +19063,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17952,6 +19096,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -17959,6 +19104,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -17996,6 +19142,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18003,6 +19150,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18036,6 +19184,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18043,6 +19192,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18082,6 +19232,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18089,6 +19240,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18109,6 +19261,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18116,6 +19269,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18153,6 +19307,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18160,6 +19315,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18192,6 +19348,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18199,6 +19356,7 @@ paths: in: path description: 'key: id of event' required: true + style: simple schema: type: string x-ms-docs-key-type: event @@ -18238,6 +19396,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18264,12 +19423,14 @@ paths: tags: - groups.extension summary: Get extensions from groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18334,6 +19495,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18359,12 +19521,14 @@ paths: tags: - groups.extension summary: Get extensions from groups + description: The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18372,6 +19536,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -18419,6 +19584,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18426,6 +19592,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -18452,6 +19619,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18459,12 +19627,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18478,12 +19648,14 @@ paths: tags: - groups.groupLifecyclePolicy summary: Get groupLifecyclePolicies from groups + description: The collection of lifecycle policies for this group. Read-only. Nullable. operationId: groups_ListGroupLifecyclePolicies parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18557,6 +19729,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18582,12 +19755,14 @@ paths: tags: - groups.groupLifecyclePolicy summary: Get groupLifecyclePolicies from groups + description: The collection of lifecycle policies for this group. Read-only. Nullable. operationId: groups_GetGroupLifecyclePolicies parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18595,6 +19770,7 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -18650,6 +19826,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18657,6 +19834,7 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -18683,6 +19861,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18690,12 +19869,14 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18715,6 +19896,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18722,6 +19904,7 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -18764,6 +19947,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18771,6 +19955,7 @@ paths: in: path description: 'key: id of groupLifecyclePolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: groupLifecyclePolicy @@ -18813,6 +19998,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18849,12 +20035,14 @@ paths: tags: - groups.directoryObject summary: Get memberOf from groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand.' operationId: groups_ListMemberGraphOPre parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18917,12 +20105,14 @@ paths: tags: - groups.directoryObject summary: Get memberOf from groups + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand.' operationId: groups_GetMemberGraphOPre parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -18930,6 +20120,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -18973,12 +20164,14 @@ paths: tags: - groups.directoryObject summary: Get members from groups + description: 'Direct members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName).' operationId: groups_ListMembers parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19047,6 +20240,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19054,17 +20248,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -19078,12 +20276,14 @@ paths: tags: - groups.directoryObject summary: Get ref of members from groups + description: 'Direct members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName).' operationId: groups_ListMembersGraphBPreRef parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19126,18 +20326,12 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -19149,12 +20343,14 @@ paths: tags: - groups.directoryObject summary: Get membersWithLicenseErrors from groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_ListMembersGraphWPreLicenseErrors parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19217,12 +20413,14 @@ paths: tags: - groups.directoryObject summary: Get membersWithLicenseErrors from groups + description: A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups_GetMembersGraphWPreLicenseErrors parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19230,6 +20428,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -19279,6 +20478,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19299,6 +20499,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19343,6 +20544,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19375,6 +20577,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19421,6 +20624,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19467,6 +20671,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19504,6 +20709,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19550,6 +20756,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19596,6 +20803,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19616,6 +20824,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19636,6 +20845,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19656,6 +20866,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19680,6 +20891,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19700,6 +20912,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19720,6 +20933,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19761,6 +20975,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19768,6 +20983,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -19817,6 +21033,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19824,6 +21041,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -19831,6 +21049,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -19838,6 +21057,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -19887,6 +21107,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19894,6 +21115,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -19901,6 +21123,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -19908,6 +21131,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -19957,6 +21181,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -19964,6 +21189,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -19971,6 +21197,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -19978,6 +21205,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -19985,6 +21213,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20031,6 +21260,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20038,6 +21268,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20045,6 +21276,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20052,6 +21284,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20059,6 +21292,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20093,6 +21327,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20100,6 +21335,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20107,6 +21343,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20114,6 +21351,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20121,6 +21359,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20145,6 +21384,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20152,6 +21392,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20159,6 +21400,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20208,6 +21450,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20215,6 +21458,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20222,6 +21466,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20271,6 +21516,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20278,6 +21524,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20285,6 +21532,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20292,6 +21540,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20338,6 +21587,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20345,6 +21595,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20352,6 +21603,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20359,6 +21611,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20393,6 +21646,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20400,6 +21654,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -20407,6 +21662,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20414,6 +21670,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20438,6 +21695,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20475,6 +21733,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20482,6 +21741,7 @@ paths: in: path description: 'Usage: includePersonalNotebooks={includePersonalNotebooks}' required: true + style: simple schema: type: boolean default: false @@ -20514,6 +21774,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20521,6 +21782,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20567,6 +21829,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20574,6 +21837,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20608,6 +21872,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20615,6 +21880,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20639,6 +21905,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20646,6 +21913,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20653,6 +21921,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20702,6 +21971,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20709,6 +21979,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20716,6 +21987,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20765,6 +22037,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20772,6 +22045,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20779,6 +22053,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20786,6 +22061,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20832,6 +22108,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20839,6 +22116,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20846,6 +22124,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20853,6 +22132,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20887,6 +22167,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20894,6 +22175,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -20901,6 +22183,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20908,6 +22191,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -20932,6 +22216,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20939,6 +22224,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -20988,6 +22274,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -20995,6 +22282,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -21044,6 +22332,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21051,6 +22340,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -21058,6 +22348,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -21104,6 +22395,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21111,6 +22403,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -21118,6 +22411,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -21152,6 +22446,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21159,6 +22454,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -21166,6 +22462,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -21184,12 +22481,14 @@ paths: tags: - groups.directoryObject summary: Get owners from groups + description: 'The owners of the group who can be users or service principals. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName).' operationId: groups_ListOwners parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21258,6 +22557,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21265,17 +22565,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -21289,12 +22593,14 @@ paths: tags: - groups.directoryObject summary: Get ref of owners from groups + description: 'The owners of the group who can be users or service principals. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName).' operationId: groups_ListOwnersGraphBPreRef parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21337,18 +22643,12 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -21360,12 +22660,14 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Get permissionGrants from groups + description: The permissions that have been granted for a group to a specific application. Supports $expand. operationId: groups_ListPermissionGrants parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21448,6 +22750,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21473,12 +22776,14 @@ paths: tags: - groups.resourceSpecificPermissionGrant summary: Get permissionGrants from groups + description: The permissions that have been granted for a group to a specific application. Supports $expand. operationId: groups_GetPermissionGrants parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21486,6 +22791,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21550,6 +22856,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21557,6 +22864,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21583,6 +22891,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21590,12 +22899,14 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21615,6 +22926,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21622,6 +22934,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21668,6 +22981,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21675,6 +22989,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21721,6 +23036,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21728,6 +23044,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21774,6 +23091,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21781,6 +23099,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21827,6 +23146,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21834,6 +23154,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -21858,6 +23179,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21909,6 +23231,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21949,6 +23272,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -21987,12 +23311,14 @@ paths: tags: - groups.profilePhoto summary: Get photo from groups + description: The group's profile photo. operationId: groups_GetPhoto parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22030,6 +23356,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22056,12 +23383,14 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22081,6 +23410,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22105,6 +23435,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22127,12 +23458,14 @@ paths: tags: - groups.profilePhoto summary: Get photos from groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_ListPhotos parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22190,6 +23523,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22215,12 +23549,14 @@ paths: tags: - groups.profilePhoto summary: Get photos from groups + description: The profile photos owned by the group. Read-only. Nullable. operationId: groups_GetPhotos parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22228,6 +23564,7 @@ paths: in: path description: 'key: id of profilePhoto' required: true + style: simple schema: type: string x-ms-docs-key-type: profilePhoto @@ -22265,6 +23602,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22272,6 +23610,7 @@ paths: in: path description: 'key: id of profilePhoto' required: true + style: simple schema: type: string x-ms-docs-key-type: profilePhoto @@ -22298,6 +23637,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22305,12 +23645,14 @@ paths: in: path description: 'key: id of profilePhoto' required: true + style: simple schema: type: string x-ms-docs-key-type: profilePhoto - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22330,6 +23672,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22337,6 +23680,7 @@ paths: in: path description: 'key: id of profilePhoto' required: true + style: simple schema: type: string x-ms-docs-key-type: profilePhoto @@ -22361,6 +23705,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22368,6 +23713,7 @@ paths: in: path description: 'key: id of profilePhoto' required: true + style: simple schema: type: string x-ms-docs-key-type: profilePhoto @@ -22390,12 +23736,14 @@ paths: tags: - groups.directoryObject summary: Get rejectedSenders from groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_ListRejectedSenders parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22451,6 +23799,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22458,17 +23807,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -22482,12 +23835,14 @@ paths: tags: - groups.directoryObject summary: Get ref of rejectedSenders from groups + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable operationId: groups_ListRejectedSendersGraphBPreRef parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22529,18 +23884,12 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -22552,12 +23901,14 @@ paths: tags: - groups.directorySetting summary: Get settings from groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_ListSettings parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22631,6 +23982,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22656,12 +24008,14 @@ paths: tags: - groups.directorySetting summary: Get settings from groups + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' operationId: groups_GetSettings parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22669,6 +24023,7 @@ paths: in: path description: 'key: id of directorySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySetting @@ -22719,6 +24074,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22726,6 +24082,7 @@ paths: in: path description: 'key: id of directorySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySetting @@ -22752,6 +24109,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22759,12 +24117,14 @@ paths: in: path description: 'key: id of directorySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22784,6 +24144,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22791,6 +24152,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -22798,6 +24160,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -22836,6 +24199,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22843,6 +24207,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -22850,6 +24215,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -22885,6 +24251,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22892,6 +24259,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -22899,6 +24267,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -22929,6 +24298,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22936,6 +24306,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -22943,6 +24314,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -22963,6 +24335,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -22970,6 +24343,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -22977,6 +24351,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -22997,6 +24372,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23004,6 +24380,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23040,6 +24417,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23047,6 +24425,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23083,6 +24462,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23090,6 +24470,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23122,6 +24503,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23129,6 +24511,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23136,6 +24519,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23143,6 +24527,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -23181,6 +24566,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23188,6 +24574,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23195,6 +24582,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23202,6 +24590,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -23237,6 +24626,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23244,6 +24634,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23251,6 +24642,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23258,6 +24650,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -23288,6 +24681,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23295,6 +24689,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23302,6 +24697,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23309,6 +24705,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -23329,6 +24726,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23336,6 +24734,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23343,6 +24742,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23350,6 +24750,7 @@ paths: in: path description: 'key: id of contentType' required: true + style: simple schema: type: string x-ms-docs-key-type: contentType @@ -23370,6 +24771,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23377,6 +24779,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23384,6 +24787,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23420,6 +24824,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23427,6 +24832,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23434,6 +24840,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23470,6 +24877,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23477,6 +24885,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23484,6 +24893,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23516,6 +24926,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23523,6 +24934,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23530,6 +24942,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23537,6 +24950,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -23544,6 +24958,7 @@ paths: in: path description: 'key: id of documentSetVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: documentSetVersion @@ -23564,6 +24979,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23571,6 +24987,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23578,6 +24995,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23585,6 +25003,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -23641,6 +25060,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23648,6 +25068,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23655,6 +25076,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23662,6 +25084,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -23669,6 +25092,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -23676,6 +25100,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -23683,6 +25108,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -23715,6 +25141,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23722,6 +25149,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23729,6 +25157,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23736,6 +25165,7 @@ paths: in: path description: 'key: id of listItem' required: true + style: simple schema: type: string x-ms-docs-key-type: listItem @@ -23743,6 +25173,7 @@ paths: in: path description: 'key: id of listItemVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: listItemVersion @@ -23763,6 +25194,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23770,6 +25202,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23777,6 +25210,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23809,6 +25243,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23816,6 +25251,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23823,6 +25259,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23830,6 +25267,7 @@ paths: in: path description: 'Usage: token=''{token}''' required: true + style: simple schema: type: string nullable: true @@ -23862,6 +25300,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23869,6 +25308,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23876,6 +25316,7 @@ paths: in: path description: 'key: id of list' required: true + style: simple schema: type: string x-ms-docs-key-type: list @@ -23883,6 +25324,7 @@ paths: in: path description: 'key: id of subscription' required: true + style: simple schema: type: string x-ms-docs-key-type: subscription @@ -23903,6 +25345,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23910,6 +25353,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23917,6 +25361,7 @@ paths: in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -23924,6 +25369,7 @@ paths: in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: type: string nullable: true @@ -23931,6 +25377,7 @@ paths: in: path description: 'Usage: interval=''{interval}''' required: true + style: simple schema: type: string nullable: true @@ -23963,6 +25410,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -23970,6 +25418,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -23977,6 +25426,7 @@ paths: in: path description: 'Usage: listId=''{listId}''' required: true + style: simple schema: type: string responses: @@ -24008,6 +25458,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24015,6 +25466,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24022,6 +25474,7 @@ paths: in: path description: 'Usage: path=''{path}''' required: true + style: simple schema: type: string nullable: true @@ -24046,6 +25499,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24053,6 +25507,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24060,6 +25515,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24109,6 +25565,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24116,6 +25573,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24123,6 +25581,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24130,6 +25589,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -24137,6 +25597,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24186,6 +25647,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24193,6 +25655,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24200,6 +25663,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24207,6 +25671,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -24214,6 +25679,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24263,6 +25729,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24270,6 +25737,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24277,6 +25745,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24284,6 +25753,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -24291,6 +25761,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24298,6 +25769,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24344,6 +25816,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24351,6 +25824,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24358,6 +25832,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24365,6 +25840,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -24372,6 +25848,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24379,6 +25856,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24413,6 +25891,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24420,6 +25899,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24427,6 +25907,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24434,6 +25915,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -24441,6 +25923,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24448,6 +25931,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24472,6 +25956,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24479,6 +25964,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24486,6 +25972,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24493,6 +25980,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24542,6 +26030,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24549,6 +26038,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24556,6 +26046,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24563,6 +26054,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24612,6 +26104,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24619,6 +26112,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24626,6 +26120,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24633,6 +26128,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24640,6 +26136,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24686,6 +26183,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24693,6 +26191,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24700,6 +26199,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24707,6 +26207,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24714,6 +26215,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24748,6 +26250,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24755,6 +26258,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24762,6 +26266,7 @@ paths: in: path description: 'key: id of notebook' required: true + style: simple schema: type: string x-ms-docs-key-type: notebook @@ -24769,6 +26274,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -24776,6 +26282,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24800,6 +26307,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24807,6 +26315,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24844,6 +26353,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24851,6 +26361,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24858,6 +26369,7 @@ paths: in: path description: 'Usage: includePersonalNotebooks={includePersonalNotebooks}' required: true + style: simple schema: type: boolean default: false @@ -24890,6 +26402,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24897,6 +26410,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24904,6 +26418,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24950,6 +26465,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -24957,6 +26473,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -24964,6 +26481,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -24998,6 +26516,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25005,6 +26524,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25012,6 +26532,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25036,6 +26557,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25043,6 +26565,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25050,6 +26573,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -25057,6 +26581,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25106,6 +26631,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25113,6 +26639,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25120,6 +26647,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -25127,6 +26655,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25176,6 +26705,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25183,6 +26713,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25190,6 +26721,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -25197,6 +26729,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25204,6 +26737,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25250,6 +26784,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25257,6 +26792,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25264,6 +26800,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -25271,6 +26808,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25278,6 +26816,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25312,6 +26851,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25319,6 +26859,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25326,6 +26867,7 @@ paths: in: path description: 'key: id of sectionGroup' required: true + style: simple schema: type: string x-ms-docs-key-type: sectionGroup @@ -25333,6 +26875,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25340,6 +26883,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25364,6 +26908,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25371,6 +26916,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25378,6 +26924,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25427,6 +26974,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25434,6 +26982,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25441,6 +26990,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25490,6 +27040,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25497,6 +27048,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25504,6 +27056,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25511,6 +27064,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25557,6 +27111,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25564,6 +27119,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25571,6 +27127,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25578,6 +27135,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25612,6 +27170,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25619,6 +27178,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25626,6 +27186,7 @@ paths: in: path description: 'key: id of onenoteSection' required: true + style: simple schema: type: string x-ms-docs-key-type: onenoteSection @@ -25633,6 +27194,7 @@ paths: in: path description: 'key: id of onenotePage' required: true + style: simple schema: type: string x-ms-docs-key-type: onenotePage @@ -25657,6 +27219,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25664,6 +27227,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25671,6 +27235,7 @@ paths: in: path description: 'key: id of sitePage' required: true + style: simple schema: type: string x-ms-docs-key-type: sitePage @@ -25691,6 +27256,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25698,6 +27264,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25705,6 +27272,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -25756,6 +27324,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25763,6 +27332,7 @@ paths: in: path description: 'key: id of site' required: true + style: simple schema: type: string x-ms-docs-key-type: site @@ -25770,6 +27340,7 @@ paths: in: path description: 'key: id of permission' required: true + style: simple schema: type: string x-ms-docs-key-type: permission @@ -25808,6 +27379,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25854,6 +27426,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25886,6 +27459,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25932,6 +27506,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25939,6 +27514,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -25985,6 +27561,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -25992,6 +27569,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -25999,6 +27577,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26019,6 +27598,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26026,6 +27606,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26033,6 +27614,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26053,6 +27635,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26060,6 +27643,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26067,6 +27651,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26074,6 +27659,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26094,6 +27680,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26101,6 +27688,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26108,6 +27696,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26115,6 +27704,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26135,6 +27725,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26142,6 +27733,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26149,6 +27741,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -26181,6 +27774,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26188,6 +27782,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26220,6 +27815,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26227,6 +27823,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26247,6 +27844,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26254,24 +27852,31 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel - name: userId in: query description: 'Usage: userId=''{userId}''' + style: form + explode: false schema: type: string nullable: true - name: tenantId in: query description: 'Usage: tenantId=''{tenantId}''' + style: form + explode: false schema: type: string nullable: true - name: userPrincipalName in: query description: 'Usage: userPrincipalName=''{userPrincipalName}''' + style: form + explode: false schema: type: string nullable: true @@ -26302,6 +27907,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26309,6 +27915,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26333,6 +27940,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26340,6 +27948,7 @@ paths: in: path description: 'key: id of channel' required: true + style: simple schema: type: string x-ms-docs-key-type: channel @@ -26360,6 +27969,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26392,6 +28002,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26424,6 +28035,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26431,6 +28043,7 @@ paths: in: path description: 'key: id of teamsAppInstallation' required: true + style: simple schema: type: string x-ms-docs-key-type: teamsAppInstallation @@ -26451,6 +28064,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26497,6 +28111,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26531,6 +28146,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26577,6 +28193,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26597,6 +28214,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26644,6 +28262,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26664,6 +28283,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26671,6 +28291,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -26717,6 +28338,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26724,6 +28346,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -26770,6 +28393,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26777,6 +28401,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -26823,6 +28448,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26830,6 +28456,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -26876,6 +28503,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26883,6 +28511,7 @@ paths: in: path description: 'key: id of resourceSpecificPermissionGrant' required: true + style: simple schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant @@ -26907,6 +28536,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26958,6 +28588,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -26998,6 +28629,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27042,6 +28674,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27088,6 +28721,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27095,6 +28729,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27115,6 +28750,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27122,6 +28758,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27142,6 +28779,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27149,6 +28787,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27156,6 +28795,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27176,6 +28816,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27183,6 +28824,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27190,6 +28832,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27210,6 +28853,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27217,6 +28861,7 @@ paths: in: path description: 'key: id of chatMessage' required: true + style: simple schema: type: string x-ms-docs-key-type: chatMessage @@ -27249,6 +28894,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27281,6 +28927,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27301,24 +28948,31 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: userId in: query description: 'Usage: userId=''{userId}''' + style: form + explode: false schema: type: string nullable: true - name: tenantId in: query description: 'Usage: tenantId=''{tenantId}''' + style: form + explode: false schema: type: string nullable: true - name: userPrincipalName in: query description: 'Usage: userPrincipalName=''{userPrincipalName}''' + style: form + explode: false schema: type: string nullable: true @@ -27349,6 +29003,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27373,6 +29028,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27393,6 +29049,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27437,6 +29094,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27444,6 +29102,7 @@ paths: in: path description: 'key: id of timeCard' required: true + style: simple schema: type: string x-ms-docs-key-type: timeCard @@ -27484,6 +29143,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27491,6 +29151,7 @@ paths: in: path description: 'key: id of timeCard' required: true + style: simple schema: type: string x-ms-docs-key-type: timeCard @@ -27515,6 +29176,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27522,6 +29184,7 @@ paths: in: path description: 'key: id of timeCard' required: true + style: simple schema: type: string x-ms-docs-key-type: timeCard @@ -27562,6 +29225,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27569,6 +29233,7 @@ paths: in: path description: 'key: id of timeCard' required: true + style: simple schema: type: string x-ms-docs-key-type: timeCard @@ -27609,6 +29274,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27646,12 +29312,14 @@ paths: tags: - groups.conversationThread summary: Get threads from groups + description: The group's conversation threads. Nullable. operationId: groups_ListThreads parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27728,6 +29396,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27753,12 +29422,14 @@ paths: tags: - groups.conversationThread summary: Get threads from groups + description: The group's conversation threads. Nullable. operationId: groups_GetThreads parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27766,6 +29437,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -27818,6 +29490,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27825,6 +29498,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -27851,6 +29525,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27858,12 +29533,14 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27883,6 +29560,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27890,6 +29568,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -27922,6 +29601,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -27929,6 +29609,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28043,6 +29724,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28050,6 +29732,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28081,6 +29764,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28088,6 +29772,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28095,6 +29780,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28208,6 +29894,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28215,6 +29902,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28222,6 +29910,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28248,6 +29937,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28255,6 +29945,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28262,12 +29953,14 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28281,12 +29974,14 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.threads.posts_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28294,6 +29989,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28301,6 +29997,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28379,6 +30076,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28386,6 +30084,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28393,6 +30092,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28418,12 +30118,14 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.threads.posts_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28431,6 +30133,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28438,6 +30141,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28445,6 +30149,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -28497,6 +30202,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28504,6 +30210,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28511,6 +30218,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28518,6 +30226,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -28544,6 +30253,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28551,6 +30261,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28558,6 +30269,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28565,12 +30277,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28590,6 +30304,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28597,6 +30312,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28604,6 +30320,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28634,12 +30351,14 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.threads.posts_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28647,6 +30366,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28654,6 +30374,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28717,6 +30438,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28724,6 +30446,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28731,6 +30454,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28756,12 +30480,14 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.threads.posts_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28769,6 +30495,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28776,6 +30503,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28783,6 +30511,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -28830,6 +30559,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28837,6 +30567,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28844,6 +30575,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28851,6 +30583,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -28877,6 +30610,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28884,6 +30618,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28891,6 +30626,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -28898,12 +30634,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28917,12 +30655,14 @@ paths: tags: - groups.conversationThread summary: Get inReplyTo from groups + description: The earlier post that this post is replying to in the conversationThread. Read-only. Supports $expand. operationId: groups.threads.posts_GetInReplyTo parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -28930,6 +30670,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -28937,6 +30678,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29050,6 +30792,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29057,6 +30800,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29064,6 +30808,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29090,6 +30835,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29097,6 +30843,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29104,12 +30851,14 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29123,12 +30872,14 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.threads.posts.inReplyTo_ListAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29136,6 +30887,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29143,6 +30895,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29221,6 +30974,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29228,6 +30982,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29235,6 +30990,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29260,12 +31016,14 @@ paths: tags: - groups.conversationThread summary: Get attachments from groups + description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' operationId: groups.threads.posts.inReplyTo_GetAttachments parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29273,6 +31031,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29280,6 +31039,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29287,6 +31047,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -29339,6 +31100,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29346,6 +31108,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29353,6 +31116,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29360,6 +31124,7 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment @@ -29386,6 +31151,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29393,6 +31159,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29400,6 +31167,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29407,12 +31175,14 @@ paths: in: path description: 'key: id of attachment' required: true + style: simple schema: type: string x-ms-docs-key-type: attachment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29432,6 +31202,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29439,6 +31210,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29446,6 +31218,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29476,12 +31249,14 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.inReplyTo_ListExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29489,6 +31264,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29496,6 +31272,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29559,6 +31336,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29566,6 +31344,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29573,6 +31352,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29598,12 +31378,14 @@ paths: tags: - groups.conversationThread summary: Get extensions from groups + description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.inReplyTo_GetExtensions parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29611,6 +31393,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29618,6 +31401,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29625,6 +31409,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -29672,6 +31457,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29679,6 +31465,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29686,6 +31473,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29693,6 +31481,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -29719,6 +31508,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29726,6 +31516,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29733,6 +31524,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29740,12 +31532,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29765,6 +31559,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29772,6 +31567,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29779,6 +31575,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29866,6 +31663,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29873,6 +31671,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29880,6 +31679,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29911,6 +31711,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29918,6 +31719,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -29925,6 +31727,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -29932,6 +31735,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -29987,6 +31791,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -29994,6 +31799,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30001,6 +31807,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30008,6 +31815,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -30034,6 +31842,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30041,6 +31850,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30048,6 +31858,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30055,12 +31866,14 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30080,6 +31893,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30087,6 +31901,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30094,6 +31909,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30131,6 +31947,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30138,6 +31955,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30145,6 +31963,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30171,12 +31990,14 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts.inReplyTo_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30184,6 +32005,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30191,6 +32013,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30258,6 +32081,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30265,6 +32089,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30272,6 +32097,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30297,12 +32123,14 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts.inReplyTo_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30310,6 +32138,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30317,6 +32146,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30324,6 +32154,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -30372,6 +32203,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30379,6 +32211,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30386,6 +32219,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30393,6 +32227,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -30419,6 +32254,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30426,6 +32262,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30433,6 +32270,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30440,12 +32278,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30459,12 +32299,14 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts.inReplyTo_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30472,6 +32314,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30479,6 +32322,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30546,6 +32390,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30553,6 +32398,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30560,6 +32406,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30585,12 +32432,14 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts.inReplyTo_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30598,6 +32447,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30605,6 +32455,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30612,6 +32463,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -30660,6 +32512,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30667,6 +32520,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30674,6 +32528,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30681,6 +32536,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -30707,6 +32563,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30714,6 +32571,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30721,6 +32579,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30728,12 +32587,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30753,6 +32614,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30760,6 +32622,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30767,6 +32630,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30854,6 +32718,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30861,6 +32726,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30868,6 +32734,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30899,6 +32766,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30906,6 +32774,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30913,6 +32782,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30920,6 +32790,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -30975,6 +32846,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -30982,6 +32854,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -30989,6 +32862,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -30996,6 +32870,7 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention @@ -31022,6 +32897,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31029,6 +32905,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31036,6 +32913,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31043,12 +32921,14 @@ paths: in: path description: 'key: id of mention' required: true + style: simple schema: type: string x-ms-docs-key-type: mention - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31068,6 +32948,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31075,6 +32956,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31082,6 +32964,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31119,6 +33002,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31126,6 +33010,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31133,6 +33018,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31159,12 +33045,14 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31172,6 +33060,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31179,6 +33068,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31246,6 +33136,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31253,6 +33144,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31260,6 +33152,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31285,12 +33178,14 @@ paths: tags: - groups.conversationThread summary: Get multiValueExtendedProperties from groups + description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetMultiValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31298,6 +33193,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31305,6 +33201,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31312,6 +33209,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -31360,6 +33258,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31367,6 +33266,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31374,6 +33274,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31381,6 +33282,7 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty @@ -31407,6 +33309,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31414,6 +33317,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31421,6 +33325,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31428,12 +33333,14 @@ paths: in: path description: 'key: id of multiValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: multiValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31447,12 +33354,14 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_ListSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31460,6 +33369,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31467,6 +33377,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31534,6 +33445,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31541,6 +33453,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31548,6 +33461,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31573,12 +33487,14 @@ paths: tags: - groups.conversationThread summary: Get singleValueExtendedProperties from groups + description: The collection of single-value extended properties defined for the post. Read-only. Nullable. operationId: groups.threads.posts_GetSingleValueExtendedProperties parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31586,6 +33502,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31593,6 +33510,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31600,6 +33518,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -31648,6 +33567,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31655,6 +33575,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31662,6 +33583,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31669,6 +33591,7 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty @@ -31695,6 +33618,7 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31702,6 +33626,7 @@ paths: in: path description: 'key: id of conversationThread' required: true + style: simple schema: type: string x-ms-docs-key-type: conversationThread @@ -31709,6 +33634,7 @@ paths: in: path description: 'key: id of post' required: true + style: simple schema: type: string x-ms-docs-key-type: post @@ -31716,12 +33642,14 @@ paths: in: path description: 'key: id of singleValueLegacyExtendedProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: singleValueLegacyExtendedProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31735,12 +33663,14 @@ paths: tags: - groups.directoryObject summary: Get transitiveMemberOf from groups + description: 'The groups that a group is a member of, either directly and through nested membership. Nullable.' operationId: groups_ListTransitiveMemberGraphOPre parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31803,12 +33733,14 @@ paths: tags: - groups.directoryObject summary: Get transitiveMemberOf from groups + description: 'The groups that a group is a member of, either directly and through nested membership. Nullable.' operationId: groups_GetTransitiveMemberGraphOPre parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31816,6 +33748,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -31859,12 +33792,14 @@ paths: tags: - groups.directoryObject summary: Get transitiveMembers from groups + description: The direct and transitive members of a group. Nullable. operationId: groups_ListTransitiveMembers parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31927,12 +33862,14 @@ paths: tags: - groups.directoryObject summary: Get transitiveMembers from groups + description: The direct and transitive members of a group. Nullable. operationId: groups_GetTransitiveMembers parameters: - name: group-id in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group @@ -31940,6 +33877,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -32156,6 +34094,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -32388,6 +34327,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -33409,6 +35349,14 @@ components: description: Exposes the itemActivities represented in this itemActivityStat resource. additionalProperties: type: object + microsoft.graph.sensitivityLabelAssignmentMethod: + title: sensitivityLabelAssignmentMethod + enum: + - standard + - privileged + - auto + - unknownFutureValue + type: string microsoft.graph.itemReference: title: itemReference type: object @@ -34719,6 +36667,8 @@ components: description: The tags associated with the team. template: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' + templateDefinition: + $ref: '#/components/schemas/microsoft.graph.teamTemplateDefinition' schedule: $ref: '#/components/schemas/microsoft.graph.schedule' additionalProperties: @@ -34755,10 +36705,8 @@ components: items: type: string nullable: true - description: The categories associated with the item changeKey: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' @@ -35100,7 +37048,6 @@ components: activityDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: @@ -35158,7 +37105,6 @@ components: format: date-time description: type: string - description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string @@ -35422,7 +37368,6 @@ components: properties: type: type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' nullable: true additionalProperties: type: object @@ -35669,7 +37614,6 @@ components: nullable: true frameRate: type: number - description: Frame rate of the video. format: double nullable: true height: @@ -36294,12 +38238,10 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. drive: $ref: '#/components/schemas/microsoft.graph.drive' items: @@ -36653,6 +38595,13 @@ components: - clockedOut - unknownFutureValue type: string + ReferenceCreate: + type: object + properties: + '@odata.id': + type: string + additionalProperties: + type: object microsoft.graph.groupLifecyclePolicyCollectionResponse: title: Collection of groupLifecyclePolicy type: object @@ -37090,12 +39039,10 @@ components: properties: content: type: string - description: The content stream format: base64url nullable: true contentUrl: type: string - description: The URL for downloading the content nullable: true additionalProperties: type: object @@ -37491,6 +39438,12 @@ components: type: string description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true employeeOrgData: $ref: '#/components/schemas/microsoft.graph.employeeOrgData' employeeType: @@ -37787,7 +39740,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. manager: $ref: '#/components/schemas/microsoft.graph.directoryObject' memberOf: @@ -37979,7 +39931,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. devices: type: array items: @@ -38050,6 +40001,51 @@ components: type: object additionalProperties: type: object + microsoft.graph.teamTemplateDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: teamTemplateDefinition + type: object + properties: + audience: + $ref: '#/components/schemas/microsoft.graph.teamTemplateAudience' + categories: + type: array + items: + type: string + nullable: true + description: + type: string + nullable: true + displayName: + type: string + nullable: true + iconUrl: + type: string + nullable: true + languageTag: + type: string + nullable: true + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.identitySet' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + parentTemplateId: + type: string + nullable: true + publisherName: + type: string + nullable: true + shortDescription: + type: string + nullable: true + teamDefinition: + $ref: '#/components/schemas/microsoft.graph.team' + additionalProperties: + type: object microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' @@ -38353,11 +40349,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -38741,14 +40737,6 @@ components: $ref: '#/components/schemas/microsoft.graph.publicationFacet' additionalProperties: type: object - microsoft.graph.sensitivityLabelAssignmentMethod: - title: sensitivityLabelAssignmentMethod - enum: - - standard - - privileged - - auto - - unknownFutureValue - type: string microsoft.graph.booleanColumn: title: booleanColumn type: object @@ -39538,14 +41526,12 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' displayName: type: string - description: The name of the notebook. nullable: true lastModifiedBy: $ref: '#/components/schemas/microsoft.graph.identitySet' lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -39559,7 +41545,6 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the page was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' format: date-time nullable: true additionalProperties: @@ -39582,7 +41567,6 @@ components: properties: self: type: string - description: The endpoint where you can get details about the page. Read-only. nullable: true additionalProperties: type: object @@ -39715,7 +41699,6 @@ components: $ref: '#/components/schemas/microsoft.graph.identitySet' description: type: string - description: Verbose description of the application. nullable: true displayName: type: string @@ -39845,6 +41828,7 @@ components: items: type: string nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. additionalProperties: type: object microsoft.graph.customSecurityAttributeValue: @@ -40113,6 +42097,8 @@ components: nullable: true connectivityResult: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' displayName: type: string description: The display name of the Cloud PC. @@ -40382,6 +42368,8 @@ components: description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' format: uuid nullable: true + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' appManagementPolicies: type: array items: @@ -40421,7 +42409,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' - description: Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (eq when counting empty collections). homeRealmDiscoveryPolicies: type: array items: @@ -41120,7 +43107,7 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. + description: A list of pending user consent requests. Supports $filter (eq). additionalProperties: type: object microsoft.graph.approval: @@ -41927,7 +43914,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerTasks assigned to the user. recentPlans: type: array items: @@ -42084,50 +44070,40 @@ components: properties: activationUrl: type: string - description: Required. URL used to launch the activity in the best native experience represented by the appId. Might launch a web-based app if no native app exists. activitySourceHost: type: string - description: 'Required. URL for the domain representing the cross-platform identity mapping for the app. Mapping is stored either as a JSON file hosted on the domain or configurable via Windows Dev Center. The JSON file is named cross-platform-app-identifiers and is hosted at root of your HTTPS domain, either at the top level domain or include a sub domain. For example: https://contoso.com or https://myapp.contoso.com but NOT https://myapp.contoso.com/somepath. You must have a unique file and domain (or sub domain) per cross-platform app identity. For example, a separate file and domain is needed for Word vs. PowerPoint.' appActivityId: type: string - description: Required. The unique activity ID in the context of the app - supplied by caller and immutable thereafter. appDisplayName: type: string - description: Optional. Short text description of the app used to generate the activity for use in cases when the app is not installed on the user’s local device. nullable: true contentInfo: $ref: '#/components/schemas/microsoft.graph.Json' contentUrl: type: string - description: 'Optional. Used in the event the content can be rendered outside of a native or web-based app experience (for example, a pointer to an item in an RSS feed).' nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object expired on the server. format: date-time nullable: true fallbackUrl: type: string - description: 'Optional. URL used to launch the activity in a web-based app, if available.' nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time; values supplied as Olson IDs in order to support cross-platform representation. nullable: true visualElements: $ref: '#/components/schemas/microsoft.graph.visualInfo' @@ -42135,7 +44111,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' - description: Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. additionalProperties: type: object microsoft.graph.device: @@ -42690,6 +44665,14 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.teamTemplateAudience: + title: teamTemplateAudience + enum: + - organization + - user + - public + - unknownFutureValue + type: string microsoft.graph.timeClockSettings: title: timeClockSettings type: object @@ -43029,7 +45012,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.workbookSortField' - description: Represents the current conditions used to last sort the table. Read-only. matchCase: type: boolean description: Represents whether the casing impacted the last sort of the table. Read-only. @@ -43318,11 +45300,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -43833,14 +45815,25 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPcHealthCheckItem' + description: 'A list of failed health check items. If the status property is available, this property will be empty.' status: $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityStatus' updatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Datetime when the status was updated. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time additionalProperties: type: object + microsoft.graph.cloudPcDiskEncryptionState: + title: cloudPcDiskEncryptionState + enum: + - notAvailable + - notEncryped + - encryptedUsingPlatformManagedKey + - encryptedUsingCustomerManagedKey + - unknownFutureValue + type: string microsoft.graph.cloudPcLoginResult: title: cloudPcLoginResult type: object @@ -44313,6 +46306,26 @@ components: nullable: true additionalProperties: type: object + microsoft.graph.verifiedPublisher: + title: verifiedPublisher + type: object + properties: + addedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the verified publisher was first added or most recently updated. + format: date-time + nullable: true + displayName: + type: string + description: The verified publisher name from the app publisher's Microsoft Partner Network (MPN) account. + nullable: true + verifiedPublisherId: + type: string + description: The ID of the verified publisher from the app publisher's Partner Center account. + nullable: true + additionalProperties: + type: object microsoft.graph.appManagementPolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.policyBase' @@ -44830,7 +46843,7 @@ components: properties: query: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: The query specifying who will be the reviewer. nullable: true queryRoot: type: string @@ -45310,6 +47323,10 @@ components: type: string description: Configuration Manager Client Id from SCCM nullable: true + clientVersion: + type: string + description: Configuration Manager Client version from SCCM + nullable: true isBlocked: type: boolean description: Configuration Manager Client blocked status from SCCM @@ -46475,6 +48492,12 @@ components: type: string description: Name of the discovered application. Read-only nullable: true + platform: + $ref: '#/components/schemas/microsoft.graph.detectedAppPlatformType' + publisher: + type: string + description: 'Indicates the publisher of the discovered application. For example: ''Microsoft''. The default value is an empty string.' + nullable: true sizeInByte: type: integer description: Discovered application size in bytes. Read-only @@ -47567,43 +49590,36 @@ components: maximum: 2147483647 minimum: -2147483648 type: integer - description: 'Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.' format: int32 nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was created on the server. format: date-time nullable: true expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client. format: date-time nullable: true lastActiveDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.' format: date-time nullable: true lastModifiedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Set by the server. DateTime in UTC when the object was modified on the server. format: date-time nullable: true startedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history. format: date-time status: $ref: '#/components/schemas/microsoft.graph.status' userTimezone: type: string - description: Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. nullable: true activity: $ref: '#/components/schemas/microsoft.graph.userActivity' @@ -48084,12 +50100,12 @@ components: createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when this password was last updated. This property is currently not populated. Read-only. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true password: @@ -48829,21 +50845,17 @@ components: $ref: '#/components/schemas/microsoft.graph.printerDefaults' displayName: type: string - description: The name of the printer/printerShare. nullable: true isAcceptingJobs: type: boolean - description: Whether the printer/printerShare is currently accepting new print jobs. nullable: true location: $ref: '#/components/schemas/microsoft.graph.printerLocation' manufacturer: type: string - description: The manufacturer of the printer/printerShare. nullable: true model: type: string - description: The model name of the printer/printerShare. nullable: true name: type: string @@ -48854,7 +50866,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.printJob' - description: The list of jobs that are queued for printing by the printer/printerShare. additionalProperties: type: object microsoft.graph.printerShareViewpoint: @@ -48928,12 +50939,15 @@ components: properties: additionalDetails: type: string + description: Additional message for this health check. nullable: true displayName: type: string + description: The connectivity health check item name. lastHealthCheckDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Timestamp when the last check occurs. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.' format: date-time nullable: true result: @@ -50378,6 +52392,59 @@ components: additionalProperties: type: object description: The security baseline compliance state of a setting for a device + microsoft.graph.detectedAppPlatformType: + title: detectedAppPlatformType + enum: + - unknown + - windows + - windowsMobile + - windowsHolographic + - ios + - macOS + - chromeOS + - androidOSP + - androidDeviceAdministrator + - androidWorkProfile + - androidDedicatedAndFullyManaged + type: string + description: 'Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).' + x-ms-enum: + name: detectedAppPlatformType + modelAsString: false + values: + - value: unknown + description: Default. Set to unknown when platform cannot be determined. + name: unknown + - value: windows + description: Indicates that the platform of the detected application is Windows. + name: windows + - value: windowsMobile + description: Indicates that the platform of the detected application is Windows Mobile. + name: windowsMobile + - value: windowsHolographic + description: Indicates that the platform of the detected application is Windows Holographic. + name: windowsHolographic + - value: ios + description: Indicates that the platform of the detected application is iOS. + name: ios + - value: macOS + description: Indicates that the platform of the detected application is macOS. + name: macOS + - value: chromeOS + description: Indicates that the platform of the detected application is ChromeOS. + name: chromeOS + - value: androidOSP + description: Indicates that the platform of the detected application is Android open source project. + name: androidOSP + - value: androidDeviceAdministrator + description: Indicates that the platform of the detected application is Android device administrator. + name: androidDeviceAdministrator + - value: androidWorkProfile + description: Indicates that the platform of the detected application is Android work profile. + name: androidWorkProfile + - value: androidDedicatedAndFullyManaged + description: Indicates that the platform of the detected application is Android dedicated and fully managed. + name: androidDedicatedAndFullyManaged microsoft.graph.windowsDeviceHealthState: title: windowsDeviceHealthState enum: @@ -52383,7 +54450,7 @@ components: interval: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The interval between synchronization iterations. + description: 'The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, PT1M represents a period of 1 month.' format: duration state: $ref: '#/components/schemas/microsoft.graph.synchronizationScheduleState' @@ -55492,6 +57559,8 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -55500,6 +57569,8 @@ components: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer @@ -55507,20 +57578,34 @@ components: name: $search in: query description: Search items by search phrases + style: form + explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean + requestBodies: + refPostBody: + description: New navigation property ref value + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceCreate' + required: true securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/Identity.DirectoryManagement.yml b/openApiDocs/beta/Identity.DirectoryManagement.yml index ba721292922..fac387ebc5b 100644 --- a/openApiDocs/beta/Identity.DirectoryManagement.yml +++ b/openApiDocs/beta/Identity.DirectoryManagement.yml @@ -11,11 +11,13 @@ paths: tags: - administrativeUnits.administrativeUnit summary: List administrativeUnits + description: Retrieve a list of administrativeUnit objects. operationId: administrativeUnits.administrativeUnit_ListAdministrativeUnit parameters: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -23,10 +25,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -70,21 +69,6 @@ paths: - scopedRoleMembers - extensions type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - members - - scopedRoleMembers - - extensions - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.administrativeUnitCollectionResponse' @@ -98,6 +82,7 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Create administrativeUnit + description: Use this API to create a new administrativeUnit. operationId: administrativeUnits.administrativeUnit_CreateAdministrativeUnit requestBody: description: New entity @@ -121,12 +106,14 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Get administrativeUnit + description: 'Retrieve the properties and relationships of an administrativeUnit object. Since the **administrativeUnit** resource supports extensions, you can also use the `GET` operation to get custom properties and extension data in an **administrativeUnit** instance.' operationId: administrativeUnits.administrativeUnit_GetAdministrativeUnit parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -150,21 +137,6 @@ paths: - scopedRoleMembers - extensions type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - members - - scopedRoleMembers - - extensions - type: string responses: '200': description: Retrieved entity @@ -202,12 +174,14 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Update administrativeunit + description: Update the properties of an administrativeUnit object. operationId: administrativeUnits.administrativeUnit_UpdateAdministrativeUnit parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -228,18 +202,21 @@ paths: tags: - administrativeUnits.administrativeUnit summary: Delete administrativeUnit + description: Delete an administrativeUnit. operationId: administrativeUnits.administrativeUnit_DeleteAdministrativeUnit parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -253,12 +230,14 @@ paths: tags: - administrativeUnits.extension summary: Get extensions from administrativeUnits + description: The collection of open extensions defined for this administrative unit. Nullable. operationId: administrativeUnits_ListExtensions parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -323,6 +302,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -348,12 +328,14 @@ paths: tags: - administrativeUnits.extension summary: Get extensions from administrativeUnits + description: The collection of open extensions defined for this administrative unit. Nullable. operationId: administrativeUnits_GetExtensions parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -361,6 +343,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -408,6 +391,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -415,6 +399,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -441,6 +426,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -448,12 +434,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -467,12 +455,14 @@ paths: tags: - administrativeUnits.directoryObject summary: Get members from administrativeUnits + description: Users and groups that are members of this administrative unit. Supports $expand. operationId: administrativeUnits_ListMembers parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -541,6 +531,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -548,17 +539,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -572,12 +567,14 @@ paths: tags: - administrativeUnits.directoryObject summary: Get ref of members from administrativeUnits + description: Users and groups that are members of this administrative unit. Supports $expand. operationId: administrativeUnits_ListMembersGraphBPreRef parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -620,18 +617,12 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -649,6 +640,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -695,6 +687,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -741,6 +734,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -787,6 +781,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -833,6 +828,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -851,12 +847,14 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Get scopedRoleMembers from administrativeUnits + description: Scoped-role members of this administrative unit. operationId: administrativeUnits_ListScopedRoleMembers parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -930,6 +928,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -955,12 +954,14 @@ paths: tags: - administrativeUnits.scopedRoleMembership summary: Get scopedRoleMembers from administrativeUnits + description: Scoped-role members of this administrative unit. operationId: administrativeUnits_GetScopedRoleMembers parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -968,6 +969,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -1018,6 +1020,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -1025,6 +1028,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -1051,6 +1055,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -1058,12 +1063,14 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1212,11 +1219,13 @@ paths: tags: - contacts.orgContact summary: List orgContacts + description: Get the list of organizational contacts for this organization. operationId: contacts.orgContact_ListOrgContact parameters: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -1224,10 +1233,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -1303,23 +1309,6 @@ paths: - transitiveMemberOf - transitiveReports type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - directReports - - manager - - memberOf - - transitiveMemberOf - - transitiveReports - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.orgContactCollectionResponse' @@ -1356,12 +1345,14 @@ paths: tags: - contacts.orgContact summary: Get orgContact + description: Get the properties and relationships of an organizational contact object. operationId: contacts.orgContact_GetOrgContact parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1397,23 +1388,6 @@ paths: - transitiveMemberOf - transitiveReports type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - directReports - - manager - - memberOf - - transitiveMemberOf - - transitiveReports - type: string responses: '200': description: Retrieved entity @@ -1465,6 +1439,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1491,12 +1466,14 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1510,12 +1487,14 @@ paths: tags: - contacts.directoryObject summary: Get directReports from contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. operationId: contacts_ListDirectReports parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1578,12 +1557,14 @@ paths: tags: - contacts.directoryObject summary: Get directReports from contacts + description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. operationId: contacts_GetDirectReports parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1591,6 +1572,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -1634,12 +1616,14 @@ paths: tags: - contacts.directoryObject summary: Get manager from contacts + description: The user or contact that is this contact's manager. Read-only. Supports $expand. operationId: contacts_GetManager parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1683,12 +1667,14 @@ paths: tags: - contacts.directoryObject summary: Get memberOf from contacts + description: Groups that this contact is a member of. Read-only. Nullable. Supports $expand. operationId: contacts_ListMemberGraphOPre parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1751,12 +1737,14 @@ paths: tags: - contacts.directoryObject summary: Get memberOf from contacts + description: Groups that this contact is a member of. Read-only. Nullable. Supports $expand. operationId: contacts_GetMemberGraphOPre parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1764,6 +1752,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -1813,6 +1802,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1859,6 +1849,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1905,6 +1896,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1951,6 +1943,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -1997,6 +1990,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -2021,6 +2015,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -2089,6 +2084,7 @@ paths: in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -2096,6 +2092,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -2139,12 +2136,14 @@ paths: tags: - contacts.directoryObject summary: Get transitiveReports from contacts + description: The transitive reports for a contact. Read-only. operationId: contacts_ListTransitiveReports parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -2207,12 +2206,14 @@ paths: tags: - contacts.directoryObject summary: Get transitiveReports from contacts + description: The transitive reports for a contact. Read-only. operationId: contacts_GetTransitiveReports parameters: - name: orgContact-id in: path description: 'key: id of orgContact' required: true + style: simple schema: type: string x-ms-docs-key-type: orgContact @@ -2220,6 +2221,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -2398,13 +2400,11 @@ paths: tags: - contracts.contract summary: List contracts + description: Retrieve a list of contract objects associated to a partner tenant. operationId: contracts.contract_ListContract parameters: - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -2445,18 +2445,6 @@ paths: - defaultDomainName - displayName type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.contractCollectionResponse' @@ -2493,12 +2481,14 @@ paths: tags: - contracts.contract summary: Get Contract + description: Retrieve the properties and relationships of contract object. operationId: contracts.contract_GetContract parameters: - name: contract-id in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2519,18 +2509,6 @@ paths: - defaultDomainName - displayName type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': description: Retrieved entity @@ -2562,6 +2540,7 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2588,12 +2567,14 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2613,6 +2594,7 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2659,6 +2641,7 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2705,6 +2688,7 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2751,6 +2735,7 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2797,6 +2782,7 @@ paths: in: path description: 'key: id of contract' required: true + style: simple schema: type: string x-ms-docs-key-type: contract @@ -2926,11 +2912,13 @@ paths: tags: - devices.device summary: List devices + description: 'Retrieve a list of devices registered in the directory. ' operationId: devices.device_ListDevice parameters: - name: ConsistencyLevel in: header description: 'Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries' + style: simple schema: type: string examples: @@ -2938,10 +2926,7 @@ paths: description: $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -3085,25 +3070,6 @@ paths: - extensions - commands type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - usageRights - - memberOf - - registeredOwners - - registeredUsers - - transitiveMemberOf - - extensions - - commands - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.deviceCollectionResponse' @@ -3117,6 +3083,7 @@ paths: tags: - devices.device summary: Create device + description: Create a new device. operationId: devices.device_CreateDevice requestBody: description: New entity @@ -3140,12 +3107,14 @@ paths: tags: - devices.device summary: Get device + description: 'Get the properties and relationships of a device object. Since the **device** resource supports extensions, you can also use the `GET` operation to get custom properties and extension data in a **device** instance.' operationId: devices.device_GetDevice parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3205,25 +3174,6 @@ paths: - extensions - commands type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - usageRights - - memberOf - - registeredOwners - - registeredUsers - - transitiveMemberOf - - extensions - - commands - type: string responses: '200': description: Retrieved entity @@ -3277,12 +3227,14 @@ paths: tags: - devices.device summary: Update device + description: Update the properties of a device. Only certain properties of a device can be updated through approved Mobile Device Management (MDM) apps. operationId: devices.device_UpdateDevice parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3303,18 +3255,21 @@ paths: tags: - devices.device summary: Delete device + description: Delete a registered device. operationId: devices.device_DeleteDevice parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3328,12 +3283,14 @@ paths: tags: - devices.command summary: Get commands from devices + description: Set of commands sent to this device. operationId: devices_ListCommands parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3424,6 +3381,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3449,12 +3407,14 @@ paths: tags: - devices.command summary: Get commands from devices + description: Set of commands sent to this device. operationId: devices_GetCommands parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3462,6 +3422,7 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command @@ -3525,6 +3486,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3532,6 +3494,7 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command @@ -3558,6 +3521,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3565,12 +3529,14 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3590,6 +3556,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3597,6 +3564,7 @@ paths: in: path description: 'key: id of command' required: true + style: simple schema: type: string x-ms-docs-key-type: command @@ -3639,12 +3607,14 @@ paths: tags: - devices.extension summary: Get extensions from devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_ListExtensions parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3709,6 +3679,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3734,12 +3705,14 @@ paths: tags: - devices.extension summary: Get extensions from devices + description: The collection of open extensions defined for the device. Read-only. Nullable. operationId: devices_GetExtensions parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3747,6 +3720,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -3794,6 +3768,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3801,6 +3776,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -3827,6 +3803,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3834,12 +3811,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3853,12 +3832,14 @@ paths: tags: - devices.directoryObject summary: Get memberOf from devices + description: Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. operationId: devices_ListMemberGraphOPre parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3921,12 +3902,14 @@ paths: tags: - devices.directoryObject summary: Get memberOf from devices + description: Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. operationId: devices_GetMemberGraphOPre parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -3934,6 +3917,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -3983,6 +3967,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4029,6 +4014,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4075,6 +4061,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4121,6 +4108,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4167,6 +4155,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4185,12 +4174,14 @@ paths: tags: - devices.directoryObject summary: Get registeredOwners from devices + description: 'The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable. Supports $expand.' operationId: devices_ListRegisteredOwners parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4259,6 +4250,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4266,17 +4258,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -4290,12 +4286,14 @@ paths: tags: - devices.directoryObject summary: Get ref of registeredOwners from devices + description: 'The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Currently, there can be only one owner. Read-only. Nullable. Supports $expand.' operationId: devices_ListRegisteredOwnersGraphBPreRef parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4338,18 +4336,12 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -4361,12 +4353,14 @@ paths: tags: - devices.directoryObject summary: Get registeredUsers from devices + description: 'Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand.' operationId: devices_ListRegisteredUsers parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4429,12 +4423,14 @@ paths: tags: - devices.directoryObject summary: Get registeredUsers from devices + description: 'Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand.' operationId: devices_GetRegisteredUsers parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4442,6 +4438,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -4485,12 +4482,14 @@ paths: tags: - devices.directoryObject summary: Get transitiveMemberOf from devices + description: Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. operationId: devices_ListTransitiveMemberGraphOPre parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4553,12 +4552,14 @@ paths: tags: - devices.directoryObject summary: Get transitiveMemberOf from devices + description: Groups and administrative units that this device is a member of. This operation is transitive. Supports $expand. operationId: devices_GetTransitiveMemberGraphOPre parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4566,6 +4567,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -4609,12 +4611,14 @@ paths: tags: - devices.usageRight summary: Get usageRights from devices + description: Represents the usage rights a device has been granted. operationId: devices_ListUsageRights parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4688,6 +4692,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4713,12 +4718,14 @@ paths: tags: - devices.usageRight summary: Get usageRights from devices + description: Represents the usage rights a device has been granted. operationId: devices_GetUsageRights parameters: - name: device-id in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4726,6 +4733,7 @@ paths: in: path description: 'key: id of usageRight' required: true + style: simple schema: type: string x-ms-docs-key-type: usageRight @@ -4776,6 +4784,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4783,6 +4792,7 @@ paths: in: path description: 'key: id of usageRight' required: true + style: simple schema: type: string x-ms-docs-key-type: usageRight @@ -4809,6 +4819,7 @@ paths: in: path description: 'key: id of device' required: true + style: simple schema: type: string x-ms-docs-key-type: device @@ -4816,12 +4827,14 @@ paths: in: path description: 'key: id of usageRight' required: true + style: simple schema: type: string x-ms-docs-key-type: usageRight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5074,6 +5087,7 @@ paths: tags: - directory.administrativeUnit summary: Get administrativeUnits from directory + description: Conceptual container for user and group directory objects. operationId: directory_ListAdministrativeUnits parameters: - $ref: '#/components/parameters/top' @@ -5175,12 +5189,14 @@ paths: tags: - directory.administrativeUnit summary: Get administrativeUnits from directory + description: Conceptual container for user and group directory objects. operationId: directory_GetAdministrativeUnits parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5262,6 +5278,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5288,12 +5305,14 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5307,12 +5326,14 @@ paths: tags: - directory.administrativeUnit summary: Get extensions from directory + description: The collection of open extensions defined for this administrative unit. Nullable. operationId: directory.administrativeUnits_ListExtensions parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5377,6 +5398,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5402,12 +5424,14 @@ paths: tags: - directory.administrativeUnit summary: Get extensions from directory + description: The collection of open extensions defined for this administrative unit. Nullable. operationId: directory.administrativeUnits_GetExtensions parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5415,6 +5439,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -5462,6 +5487,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5469,6 +5495,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -5495,6 +5522,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5502,12 +5530,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5521,12 +5551,14 @@ paths: tags: - directory.administrativeUnit summary: Get members from directory + description: Users and groups that are members of this administrative unit. Supports $expand. operationId: directory.administrativeUnits_ListMembers parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5595,6 +5627,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5602,17 +5635,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -5626,12 +5663,14 @@ paths: tags: - directory.administrativeUnit summary: Get ref of members from directory + description: Users and groups that are members of this administrative unit. Supports $expand. operationId: directory.administrativeUnits_ListMembersGraphBPreRef parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5674,18 +5713,12 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -5703,6 +5736,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5749,6 +5783,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5795,6 +5830,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5841,6 +5877,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5887,6 +5924,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5905,12 +5943,14 @@ paths: tags: - directory.administrativeUnit summary: Get scopedRoleMembers from directory + description: Scoped-role members of this administrative unit. operationId: directory.administrativeUnits_ListScopedRoleMembers parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -5984,6 +6024,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -6009,12 +6050,14 @@ paths: tags: - directory.administrativeUnit summary: Get scopedRoleMembers from directory + description: Scoped-role members of this administrative unit. operationId: directory.administrativeUnits_GetScopedRoleMembers parameters: - name: administrativeUnit-id in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -6022,6 +6065,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -6072,6 +6116,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -6079,6 +6124,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -6105,6 +6151,7 @@ paths: in: path description: 'key: id of administrativeUnit' required: true + style: simple schema: type: string x-ms-docs-key-type: administrativeUnit @@ -6112,12 +6159,14 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6266,6 +6315,7 @@ paths: tags: - directory.attributeSet summary: Get attributeSets from directory + description: Group of related custom security attribute definitions. operationId: directory_ListAttributeSets parameters: - $ref: '#/components/parameters/top' @@ -6352,12 +6402,14 @@ paths: tags: - directory.attributeSet summary: Get attributeSets from directory + description: Group of related custom security attribute definitions. operationId: directory_GetAttributeSets parameters: - name: attributeSet-id in: path description: 'key: id of attributeSet' required: true + style: simple schema: type: string x-ms-docs-key-type: attributeSet @@ -6407,6 +6459,7 @@ paths: in: path description: 'key: id of attributeSet' required: true + style: simple schema: type: string x-ms-docs-key-type: attributeSet @@ -6433,12 +6486,14 @@ paths: in: path description: 'key: id of attributeSet' required: true + style: simple schema: type: string x-ms-docs-key-type: attributeSet - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6452,6 +6507,7 @@ paths: tags: - directory.customSecurityAttributeDefinition summary: Get customSecurityAttributeDefinitions from directory + description: Schema of a custom security attributes (key-value pairs). operationId: directory_ListCustomSecurityAttributeDefinitions parameters: - $ref: '#/components/parameters/top' @@ -6558,12 +6614,14 @@ paths: tags: - directory.customSecurityAttributeDefinition summary: Get customSecurityAttributeDefinitions from directory + description: Schema of a custom security attributes (key-value pairs). operationId: directory_GetCustomSecurityAttributeDefinitions parameters: - name: customSecurityAttributeDefinition-id in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6626,6 +6684,7 @@ paths: in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6652,12 +6711,14 @@ paths: in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6671,12 +6732,14 @@ paths: tags: - directory.customSecurityAttributeDefinition summary: Get allowedValues from directory + description: 'Values that are predefined for this custom security attribute.This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.' operationId: directory.customSecurityAttributeDefinitions_ListAllowedValues parameters: - name: customSecurityAttributeDefinition-id in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6744,6 +6807,7 @@ paths: in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6769,12 +6833,14 @@ paths: tags: - directory.customSecurityAttributeDefinition summary: Get allowedValues from directory + description: 'Values that are predefined for this custom security attribute.This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.' operationId: directory.customSecurityAttributeDefinitions_GetAllowedValues parameters: - name: customSecurityAttributeDefinition-id in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6782,6 +6848,7 @@ paths: in: path description: 'key: id of allowedValue' required: true + style: simple schema: type: string x-ms-docs-key-type: allowedValue @@ -6830,6 +6897,7 @@ paths: in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6837,6 +6905,7 @@ paths: in: path description: 'key: id of allowedValue' required: true + style: simple schema: type: string x-ms-docs-key-type: allowedValue @@ -6863,6 +6932,7 @@ paths: in: path description: 'key: id of customSecurityAttributeDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: customSecurityAttributeDefinition @@ -6870,12 +6940,14 @@ paths: in: path description: 'key: id of allowedValue' required: true + style: simple schema: type: string x-ms-docs-key-type: allowedValue - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6978,6 +7050,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7037,6 +7110,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7063,12 +7137,14 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7088,6 +7164,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7134,6 +7211,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7180,6 +7258,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7226,6 +7305,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7272,6 +7352,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -7469,8 +7550,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-pageable: @@ -7500,8 +7581,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7516,6 +7597,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7566,8 +7648,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7581,6 +7663,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7598,8 +7681,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7613,12 +7696,14 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7628,8 +7713,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7638,12 +7723,14 @@ paths: tags: - directory.featureRolloutPolicy summary: Get appliesTo from directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_ListAppliesTo parameters: - name: featureRolloutPolicy-id in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7699,8 +7786,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-pageable: @@ -7717,6 +7804,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7738,8 +7826,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7754,6 +7842,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7761,17 +7850,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -7781,8 +7874,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7791,12 +7884,14 @@ paths: tags: - directory.featureRolloutPolicy summary: Get ref of appliesTo from directory + description: Nullable. Specifies a list of directoryObjects that feature is enabled for. operationId: directory.featureRolloutPolicies_ListAppliesToGraphBPreRef parameters: - name: featureRolloutPolicy-id in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7827,8 +7922,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-pageable: @@ -7845,18 +7940,12 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -7864,8 +7953,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: operation @@ -7880,6 +7969,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7921,8 +8011,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: action @@ -7937,6 +8027,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -7967,8 +8058,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: action @@ -7983,6 +8074,7 @@ paths: in: path description: 'key: id of featureRolloutPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: featureRolloutPolicy @@ -8017,8 +8109,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2021-06-30T00:00:00.0000000+00:00' - date: '2021-03-05T00:00:00.0000000+00:00' + removalDate: '2021-06-30T00:00:00.0000000-07:00' + date: '2021-03-05T00:00:00.0000000-08:00' version: 2021-01/DirectoryFeatureRolloutPolicies description: Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies. x-ms-docs-operation-type: action @@ -8027,6 +8119,7 @@ paths: tags: - directory.identityProviderBase summary: Get federationConfigurations from directory + description: Configure domain federation with organizations whose identity provider (IdP) supports either the SAML or WS-Fed protocol. operationId: directory_ListFederationConfigurations parameters: - $ref: '#/components/parameters/top' @@ -8110,12 +8203,14 @@ paths: tags: - directory.identityProviderBase summary: Get federationConfigurations from directory + description: Configure domain federation with organizations whose identity provider (IdP) supports either the SAML or WS-Fed protocol. operationId: directory_GetFederationConfigurations parameters: - name: identityProviderBase-id in: path description: 'key: id of identityProviderBase' required: true + style: simple schema: type: string x-ms-docs-key-type: identityProviderBase @@ -8164,6 +8259,7 @@ paths: in: path description: 'key: id of identityProviderBase' required: true + style: simple schema: type: string x-ms-docs-key-type: identityProviderBase @@ -8190,12 +8286,14 @@ paths: in: path description: 'key: id of identityProviderBase' required: true + style: simple schema: type: string x-ms-docs-key-type: identityProviderBase - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8350,6 +8448,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -8416,6 +8515,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -8442,12 +8542,14 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8467,6 +8569,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -8491,6 +8594,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -8528,6 +8632,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -8566,6 +8671,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -8679,6 +8785,7 @@ paths: in: path description: 'key: userId of inboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: inboundSharedUserProfile @@ -8734,6 +8841,7 @@ paths: in: path description: 'key: userId of inboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: inboundSharedUserProfile @@ -8760,12 +8868,14 @@ paths: in: path description: 'key: userId of inboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: inboundSharedUserProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8785,6 +8895,7 @@ paths: in: path description: 'key: userId of inboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: inboundSharedUserProfile @@ -8818,6 +8929,7 @@ paths: in: path description: 'key: userId of inboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: inboundSharedUserProfile @@ -8920,6 +9032,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -8974,6 +9087,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9000,12 +9114,14 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9025,6 +9141,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9089,6 +9206,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9120,6 +9238,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9127,6 +9246,7 @@ paths: in: path description: 'key: tenantId of tenantReference' required: true + style: simple schema: type: string x-ms-docs-key-type: tenantReference @@ -9177,6 +9297,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9184,6 +9305,7 @@ paths: in: path description: 'key: tenantId of tenantReference' required: true + style: simple schema: type: string x-ms-docs-key-type: tenantReference @@ -9210,6 +9332,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9217,12 +9340,14 @@ paths: in: path description: 'key: tenantId of tenantReference' required: true + style: simple schema: type: string x-ms-docs-key-type: tenantReference - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9242,6 +9367,7 @@ paths: in: path description: 'key: userId of outboundSharedUserProfile' required: true + style: simple schema: type: string x-ms-docs-key-type: outboundSharedUserProfile @@ -9249,6 +9375,7 @@ paths: in: path description: 'key: tenantId of tenantReference' required: true + style: simple schema: type: string x-ms-docs-key-type: tenantReference @@ -9393,6 +9520,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9469,6 +9597,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9495,12 +9624,14 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9520,6 +9651,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9614,6 +9746,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9645,6 +9778,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9652,6 +9786,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -9718,6 +9853,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9725,6 +9861,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -9751,6 +9888,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9758,12 +9896,14 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9783,6 +9923,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9790,6 +9931,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -9814,6 +9956,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9821,6 +9964,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -9858,6 +10002,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9865,6 +10010,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -9903,6 +10049,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9910,6 +10057,7 @@ paths: in: path description: 'key: id of recommendationResource' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendationResource @@ -9934,6 +10082,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9958,6 +10107,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -9995,6 +10145,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -10033,6 +10184,7 @@ paths: in: path description: 'key: id of recommendation' required: true + style: simple schema: type: string x-ms-docs-key-type: recommendation @@ -10140,6 +10292,7 @@ paths: in: path description: 'key: id of sharedEmailDomain' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedEmailDomain @@ -10188,6 +10341,7 @@ paths: in: path description: 'key: id of sharedEmailDomain' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedEmailDomain @@ -10214,12 +10368,14 @@ paths: in: path description: 'key: id of sharedEmailDomain' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedEmailDomain - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10233,12 +10389,10 @@ paths: tags: - directoryRoles.directoryRole summary: List directoryRoles + description: 'List the directory roles that are activated in the tenant. This operation only returns roles that have been activated. A role becomes activated when an admin activates the role using the Activate directoryRole API. Not all built-in roles are initially activated. When assigning a role using the Azure portal, the role activation step is implicitly done on the admin''s behalf. To get the full list of roles that are available in Azure AD, use List directoryRoleTemplates.' operationId: directoryRoles.directoryRole_ListDirectoryRole parameters: - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -10278,20 +10432,6 @@ paths: - members - scopedMembers type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - members - - scopedMembers - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.directoryRoleCollectionResponse' @@ -10305,6 +10445,7 @@ paths: tags: - directoryRoles.directoryRole summary: Activate directoryRole + description: 'Activate a directory role. To read a directory role or update its members, it must first be activated in the tenant. The Company Administrators and the implicit user directory roles (**User**, **Guest User**, and **Restricted Guest User** roles) are activated by default. To access and assign members to other directory roles, you must first activate it with its corresponding directory role template ID.' operationId: directoryRoles.directoryRole_CreateDirectoryRole requestBody: description: New entity @@ -10328,12 +10469,14 @@ paths: tags: - directoryRoles.directoryRole summary: Get directoryRole + description: 'Retrieve the properties of a directoryRole object. You can use both the object ID and template ID of the **directoryRole** with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Azure portal. For details, see Role template IDs.' operationId: directoryRoles.directoryRole_GetDirectoryRole parameters: - name: directoryRole-id in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10355,20 +10498,6 @@ paths: - members - scopedMembers type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - members - - scopedMembers - type: string responses: '200': description: Retrieved entity @@ -10408,6 +10537,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10434,12 +10564,14 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10453,12 +10585,14 @@ paths: tags: - directoryRoles.directoryObject summary: Get members from directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable. Supports $expand.' operationId: directoryRoles_ListMembers parameters: - name: directoryRole-id in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10527,6 +10661,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10534,17 +10669,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -10558,12 +10697,14 @@ paths: tags: - directoryRoles.directoryObject summary: Get ref of members from directoryRoles + description: 'Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable. Supports $expand.' operationId: directoryRoles_ListMembersGraphBPreRef parameters: - name: directoryRole-id in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10606,18 +10747,12 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -10635,6 +10770,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10681,6 +10817,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10727,6 +10864,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10773,6 +10911,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10819,6 +10958,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10837,12 +10977,14 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Get scopedMembers from directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_ListScopedMembers parameters: - name: directoryRole-id in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10916,6 +11058,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10941,12 +11084,14 @@ paths: tags: - directoryRoles.scopedRoleMembership summary: Get scopedMembers from directoryRoles + description: Members of this directory role that are scoped to administrative units. Read-only. Nullable. operationId: directoryRoles_GetScopedMembers parameters: - name: directoryRole-id in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -10954,6 +11099,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -11004,6 +11150,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -11011,6 +11158,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -11037,6 +11185,7 @@ paths: in: path description: 'key: id of directoryRole' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRole @@ -11044,12 +11193,14 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11198,12 +11349,10 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: List directoryRoleTemplates + description: Retrieve a list of directoryroletemplate objects. operationId: directoryRoleTemplates.directoryRoleTemplate_ListDirectoryRoleTemplate parameters: - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -11238,18 +11387,6 @@ paths: - description - displayName type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.directoryRoleTemplateCollectionResponse' @@ -11286,12 +11423,14 @@ paths: tags: - directoryRoleTemplates.directoryRoleTemplate summary: Get directoryRoleTemplate + description: Retrieve the properties and relationships of a directoryroletemplate object. operationId: directoryRoleTemplates.directoryRoleTemplate_GetDirectoryRoleTemplate parameters: - name: directoryRoleTemplate-id in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11310,18 +11449,6 @@ paths: - description - displayName type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': description: Retrieved entity @@ -11353,6 +11480,7 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11379,12 +11507,14 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11404,6 +11534,7 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11450,6 +11581,7 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11496,6 +11628,7 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11542,6 +11675,7 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11588,6 +11722,7 @@ paths: in: path description: 'key: id of directoryRoleTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryRoleTemplate @@ -11717,13 +11852,11 @@ paths: tags: - directorySettingTemplates.directorySettingTemplate summary: List directorySettingTemplates + description: 'Directory setting templates represents a set of templates of directory settings, from which directory settings may be created and used within a tenant. This operation retrieves the list of available **directorySettingTemplates** objects.' operationId: directorySettingTemplates.directorySettingTemplate_ListDirectorySettingTemplate parameters: - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -11761,18 +11894,6 @@ paths: - displayName - values type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.directorySettingTemplateCollectionResponse' @@ -11809,12 +11930,14 @@ paths: tags: - directorySettingTemplates.directorySettingTemplate summary: Get a directory setting template + description: 'A directory setting template represents a template of settings from which settings may be created within a tenant. This operation allows retrieval of the properties of the **directorySettingTemplate** object, including the available settings and their defaults.' operationId: directorySettingTemplates.directorySettingTemplate_GetDirectorySettingTemplate parameters: - name: directorySettingTemplate-id in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -11834,18 +11957,6 @@ paths: - displayName - values type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string responses: '200': description: Retrieved entity @@ -11877,6 +11988,7 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -11903,12 +12015,14 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11928,6 +12042,7 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -11974,6 +12089,7 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -12020,6 +12136,7 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -12066,6 +12183,7 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -12112,6 +12230,7 @@ paths: in: path description: 'key: id of directorySettingTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySettingTemplate @@ -12241,6 +12360,7 @@ paths: tags: - domains.domain summary: List domains + description: Retrieve a list of domain objects. operationId: domains.domain_ListDomain parameters: - $ref: '#/components/parameters/top' @@ -12341,6 +12461,7 @@ paths: tags: - domains.domain summary: Create domain + description: 'Adds a domain to the tenant. **Important**: You cannot use an associated domain with your Azure AD tenant until ownership is verified. See List verificationDnsRecords for details. Root domains require verification. For example, contoso.com requires verification. If a root domain is verified, subdomains of the root domain are automatically verified. For example, subdomain.contoso.com is automatically be verified if contoso.com has been verified.' operationId: domains.domain_CreateDomain requestBody: description: New entity @@ -12364,12 +12485,14 @@ paths: tags: - domains.domain summary: Get domain + description: Retrieve the properties and relationships of domain object. operationId: domains.domain_GetDomain parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12459,12 +12582,14 @@ paths: tags: - domains.domain summary: Update domain + description: Update the properties of domain object. operationId: domains.domain_UpdateDomain parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12485,18 +12610,21 @@ paths: tags: - domains.domain summary: Delete domain + description: Deletes a domain from a tenant. operationId: domains.domain_DeleteDomain parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12510,12 +12638,14 @@ paths: tags: - domains.directoryObject summary: Get domainNameReferences from domains + description: 'The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group.' operationId: domains_ListDomainNameReferences parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12578,12 +12708,14 @@ paths: tags: - domains.directoryObject summary: Get domainNameReferences from domains + description: 'The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group.' operationId: domains_GetDomainNameReferences parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12591,6 +12723,7 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject @@ -12634,12 +12767,14 @@ paths: tags: - domains.internalDomainFederation summary: Get federationConfiguration from domains + description: Domain settings configured by customer when federated with Azure AD. Supports $expand. operationId: domains_ListFederationConfiguration parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12743,6 +12878,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12768,12 +12904,14 @@ paths: tags: - domains.internalDomainFederation summary: Get federationConfiguration from domains + description: Domain settings configured by customer when federated with Azure AD. Supports $expand. operationId: domains_GetFederationConfiguration parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12781,6 +12919,7 @@ paths: in: path description: 'key: id of internalDomainFederation' required: true + style: simple schema: type: string x-ms-docs-key-type: internalDomainFederation @@ -12841,6 +12980,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12848,6 +12988,7 @@ paths: in: path description: 'key: id of internalDomainFederation' required: true + style: simple schema: type: string x-ms-docs-key-type: internalDomainFederation @@ -12874,6 +13015,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12881,12 +13023,14 @@ paths: in: path description: 'key: id of internalDomainFederation' required: true + style: simple schema: type: string x-ms-docs-key-type: internalDomainFederation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12906,6 +13050,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12940,6 +13085,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12971,6 +13117,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -12989,12 +13136,14 @@ paths: tags: - domains.domainDnsRecord summary: Get serviceConfigurationRecords from domains + description: 'DNS records the customer adds to the DNS zone file of the domain before the domain can be used by Microsoft Online services. Read-only, Nullable. Supports $expand.' operationId: domains_ListServiceConfigurationRecords parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13074,6 +13223,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13099,12 +13249,14 @@ paths: tags: - domains.domainDnsRecord summary: Get serviceConfigurationRecords from domains + description: 'DNS records the customer adds to the DNS zone file of the domain before the domain can be used by Microsoft Online services. Read-only, Nullable. Supports $expand.' operationId: domains_GetServiceConfigurationRecords parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13112,6 +13264,7 @@ paths: in: path description: 'key: id of domainDnsRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: domainDnsRecord @@ -13164,6 +13317,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13171,6 +13325,7 @@ paths: in: path description: 'key: id of domainDnsRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: domainDnsRecord @@ -13197,6 +13352,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13204,12 +13360,14 @@ paths: in: path description: 'key: id of domainDnsRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: domainDnsRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13229,6 +13387,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13302,6 +13461,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13333,6 +13493,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13340,6 +13501,7 @@ paths: in: path description: 'key: id of sharedEmailDomainInvitation' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedEmailDomainInvitation @@ -13390,6 +13552,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13397,6 +13560,7 @@ paths: in: path description: 'key: id of sharedEmailDomainInvitation' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedEmailDomainInvitation @@ -13423,6 +13587,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13430,12 +13595,14 @@ paths: in: path description: 'key: id of sharedEmailDomainInvitation' required: true + style: simple schema: type: string x-ms-docs-key-type: sharedEmailDomainInvitation - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13449,12 +13616,14 @@ paths: tags: - domains.domainDnsRecord summary: Get verificationDnsRecords from domains + description: 'DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Azure AD. Read-only, Nullable. Supports $expand.' operationId: domains_ListVerificationDnsRecords parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13534,6 +13703,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13559,12 +13729,14 @@ paths: tags: - domains.domainDnsRecord summary: Get verificationDnsRecords from domains + description: 'DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Azure AD. Read-only, Nullable. Supports $expand.' operationId: domains_GetVerificationDnsRecords parameters: - name: domain-id in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13572,6 +13744,7 @@ paths: in: path description: 'key: id of domainDnsRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: domainDnsRecord @@ -13624,6 +13797,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13631,6 +13805,7 @@ paths: in: path description: 'key: id of domainDnsRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: domainDnsRecord @@ -13657,6 +13832,7 @@ paths: in: path description: 'key: id of domain' required: true + style: simple schema: type: string x-ms-docs-key-type: domain @@ -13664,12 +13840,14 @@ paths: in: path description: 'key: id of domainDnsRecord' required: true + style: simple schema: type: string x-ms-docs-key-type: domainDnsRecord - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13683,13 +13861,11 @@ paths: tags: - organization.organization summary: List organization + description: Retrieve a list of organization objects. operationId: organization.organization_ListOrganization parameters: - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values @@ -13794,22 +13970,6 @@ paths: - extensions - settings type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - branding - - certificateBasedAuthConfiguration - - extensions - - settings - type: string responses: '200': $ref: '#/components/responses/microsoft.graph.organizationCollectionResponse' @@ -13846,12 +14006,14 @@ paths: tags: - organization.organization summary: Get organization + description: 'Get the properties and relationships of the currently authenticated organization. Since the **organization** resource supports extensions, you can also use the `GET` operation to get custom properties and extension data in an **organization** instance.' operationId: organization.organization_GetOrganization parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -13896,22 +14058,6 @@ paths: - extensions - settings type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - branding - - certificateBasedAuthConfiguration - - extensions - - settings - type: string responses: '200': description: Retrieved entity @@ -13957,12 +14103,14 @@ paths: tags: - organization.organization summary: Update organization + description: 'Update the properties of the currently authenticated organization. In this case, `organization` is defined as a collection of exactly one record, and so its **ID** must be specified in the request. The **ID** is also known as the **tenantId** of the organization.' operationId: organization.organization_UpdateOrganization parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -13989,12 +14137,14 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14008,12 +14158,14 @@ paths: tags: - organization.organizationalBranding summary: Get branding from organization + description: Resource to manage the default branding for the organization. Nullable. operationId: organization_GetBranding parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14093,6 +14245,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14119,12 +14272,14 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14138,12 +14293,14 @@ paths: tags: - organization.organizationalBranding summary: Get backgroundImage for the navigation property branding from organization + description: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. operationId: organization_GetBrandingBackgroundImage parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14162,12 +14319,14 @@ paths: tags: - organization.organizationalBranding summary: Update backgroundImage for the navigation property branding in organization + description: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. operationId: organization_SetBrandingBackgroundImage parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14190,12 +14349,14 @@ paths: tags: - organization.organizationalBranding summary: Get bannerLogo for the navigation property branding from organization + description: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. operationId: organization_GetBrandingBannerLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14214,12 +14375,14 @@ paths: tags: - organization.organizationalBranding summary: Update bannerLogo for the navigation property branding in organization + description: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. operationId: organization_SetBrandingBannerLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14242,12 +14405,14 @@ paths: tags: - organization.organizationalBranding summary: Get favicon for the navigation property branding from organization + description: A custom icon (favicon) to replace a default Microsoft product favicon on an Azure AD tenant. operationId: organization_GetBrandingFavicon parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14266,12 +14431,14 @@ paths: tags: - organization.organizationalBranding summary: Update favicon for the navigation property branding in organization + description: A custom icon (favicon) to replace a default Microsoft product favicon on an Azure AD tenant. operationId: organization_SetBrandingFavicon parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14294,12 +14461,14 @@ paths: tags: - organization.organizationalBranding summary: Get localizations from organization + description: Add different branding based on a locale. operationId: organization.branding_ListLocalizations parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14439,6 +14608,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14464,12 +14634,14 @@ paths: tags: - organization.organizationalBranding summary: Get localizations from organization + description: Add different branding based on a locale. operationId: organization.branding_GetLocalizations parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14477,6 +14649,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14549,6 +14722,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14556,6 +14730,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14582,6 +14757,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14589,12 +14765,14 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14608,12 +14786,14 @@ paths: tags: - organization.organizationalBranding summary: Get backgroundImage for the navigation property localizations from organization + description: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. operationId: organization.branding_GetLocalizationsBackgroundImage parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14621,6 +14801,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14639,12 +14820,14 @@ paths: tags: - organization.organizationalBranding summary: Update backgroundImage for the navigation property localizations in organization + description: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. operationId: organization.branding_SetLocalizationsBackgroundImage parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14652,6 +14835,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14674,12 +14858,14 @@ paths: tags: - organization.organizationalBranding summary: Get bannerLogo for the navigation property localizations from organization + description: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. operationId: organization.branding_GetLocalizationsBannerLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14687,6 +14873,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14705,12 +14892,14 @@ paths: tags: - organization.organizationalBranding summary: Update bannerLogo for the navigation property localizations in organization + description: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. operationId: organization.branding_SetLocalizationsBannerLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14718,6 +14907,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14740,12 +14930,14 @@ paths: tags: - organization.organizationalBranding summary: Get favicon for the navigation property localizations from organization + description: A custom icon (favicon) to replace a default Microsoft product favicon on an Azure AD tenant. operationId: organization.branding_GetLocalizationsFavicon parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14753,6 +14945,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14771,12 +14964,14 @@ paths: tags: - organization.organizationalBranding summary: Update favicon for the navigation property localizations in organization + description: A custom icon (favicon) to replace a default Microsoft product favicon on an Azure AD tenant. operationId: organization.branding_SetLocalizationsFavicon parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14784,6 +14979,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14806,12 +15002,14 @@ paths: tags: - organization.organizationalBranding summary: Get squareLogo for the navigation property localizations from organization + description: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization.branding_GetLocalizationsSquareLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14819,6 +15017,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14837,12 +15036,14 @@ paths: tags: - organization.organizationalBranding summary: Update squareLogo for the navigation property localizations in organization + description: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization.branding_SetLocalizationsSquareLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14850,6 +15051,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14872,12 +15074,14 @@ paths: tags: - organization.organizationalBranding summary: Get squareLogoDark for the navigation property localizations from organization + description: A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization.branding_GetLocalizationsSquareLogoDark parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14885,6 +15089,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14903,12 +15108,14 @@ paths: tags: - organization.organizationalBranding summary: Update squareLogoDark for the navigation property localizations in organization + description: A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization.branding_SetLocalizationsSquareLogoDark parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14916,6 +15123,7 @@ paths: in: path description: 'key: id of organizationalBrandingLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: organizationalBrandingLocalization @@ -14938,12 +15146,14 @@ paths: tags: - organization.organizationalBranding summary: Get squareLogo for the navigation property branding from organization + description: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization_GetBrandingSquareLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14962,12 +15172,14 @@ paths: tags: - organization.organizationalBranding summary: Update squareLogo for the navigation property branding in organization + description: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization_SetBrandingSquareLogo parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -14990,12 +15202,14 @@ paths: tags: - organization.organizationalBranding summary: Get squareLogoDark for the navigation property branding from organization + description: A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization_GetBrandingSquareLogoDark parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15014,12 +15228,14 @@ paths: tags: - organization.organizationalBranding summary: Update squareLogoDark for the navigation property branding in organization + description: A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. operationId: organization_SetBrandingSquareLogoDark parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15042,12 +15258,14 @@ paths: tags: - organization.extension summary: Get extensions from organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_ListExtensions parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15112,6 +15330,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15137,12 +15356,14 @@ paths: tags: - organization.extension summary: Get extensions from organization + description: The collection of open extensions defined for the organization resource. Nullable. operationId: organization_GetExtensions parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15150,6 +15371,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -15197,6 +15419,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15204,6 +15427,7 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension @@ -15230,6 +15454,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15237,12 +15462,14 @@ paths: in: path description: 'key: id of extension' required: true + style: simple schema: type: string x-ms-docs-key-type: extension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15262,6 +15489,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15295,8 +15523,8 @@ paths: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: - removalDate: '2022-06-30T00:00:00.0000000+00:00' - date: '2022-06-30T00:00:00.0000000+00:00' + removalDate: '2022-06-30T00:00:00.0000000-07:00' + date: '2022-06-30T00:00:00.0000000-07:00' version: 2022-05/Identity_And_Access description: 'The activateService API will be deprecated and will stop returning data on Jun-30, 2022' x-ms-docs-operation-type: action @@ -15311,6 +15539,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15357,6 +15586,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15403,6 +15633,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15449,6 +15680,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15495,6 +15727,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15513,12 +15746,14 @@ paths: tags: - organization.Actions summary: Invoke action setMobileDeviceManagementAuthority + description: Set mobile device management authority operationId: organization_setMobileDeviceManagementAuthority parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15545,12 +15780,14 @@ paths: tags: - organization.organizationSettings summary: Get settings from organization + description: Retrieve the properties and relationships of organizationSettings object. Nullable. operationId: organization_GetSettings parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15623,6 +15860,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15649,12 +15887,14 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15668,12 +15908,14 @@ paths: tags: - organization.organizationSettings summary: Get itemInsights from organization + description: 'Contains the properties that are configured by an administrator for the visibility of Microsoft Graph-derived insights, between a user and other items in Microsoft 365, such as documents or sites. List itemInsights returns the settings to display or return item insights in an organization.' operationId: organization.settings_GetItemInsights parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15723,6 +15965,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15749,12 +15992,14 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15774,6 +16019,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15823,6 +16069,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15849,12 +16096,14 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15868,12 +16117,14 @@ paths: tags: - organization.organizationSettings summary: Get peopleInsights from organization + description: Contains the properties that are configured by an administrator for the visibility of a list of people relevant and working with a user in Microsoft 365. List peopleInsights returns the settings to display or return people insights in an organization. operationId: organization.settings_GetPeopleInsights parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15923,6 +16174,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -15949,12 +16201,14 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15968,12 +16222,14 @@ paths: tags: - organization.organizationSettings summary: Get profileCardProperties from organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_ListProfileCardProperties parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -16044,6 +16300,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -16069,12 +16326,14 @@ paths: tags: - organization.organizationSettings summary: Get profileCardProperties from organization + description: Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. Get organization settings returns the properties configured for profile cards for the organization. operationId: organization.settings_GetProfileCardProperties parameters: - name: organization-id in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -16082,6 +16341,7 @@ paths: in: path description: 'key: id of profileCardProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: profileCardProperty @@ -16131,6 +16391,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -16138,6 +16399,7 @@ paths: in: path description: 'key: id of profileCardProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: profileCardProperty @@ -16164,6 +16426,7 @@ paths: in: path description: 'key: id of organization' required: true + style: simple schema: type: string x-ms-docs-key-type: organization @@ -16171,12 +16434,14 @@ paths: in: path description: 'key: id of profileCardProperty' required: true + style: simple schema: type: string x-ms-docs-key-type: profileCardProperty - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16301,6 +16566,7 @@ paths: tags: - settings.directorySetting summary: List settings + description: Retrieve a list of tenant-level or group-specific group settings objects. operationId: settings.directorySetting_ListDirectorySetting parameters: - $ref: '#/components/parameters/top' @@ -16367,6 +16633,7 @@ paths: tags: - settings.directorySetting summary: Create settings + description: 'Create a new setting based on the templates available in directorySettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named `Group.Unified` can be used to configure tenant-wide Microsoft 365 group settings, while the template named `Group.Unified.Guest` can be used to configure group-specific settings.' operationId: settings.directorySetting_CreateDirectorySetting requestBody: description: New entity @@ -16390,12 +16657,14 @@ paths: tags: - settings.directorySetting summary: Get directorySetting + description: Retrieve the properties of a specific directory setting object. operationId: settings.directorySetting_GetDirectorySetting parameters: - name: directorySetting-id in: path description: 'key: id of directorySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySetting @@ -16440,12 +16709,14 @@ paths: tags: - settings.directorySetting summary: Update directorySetting + description: Update the properties of a specific directory setting object. operationId: settings.directorySetting_UpdateDirectorySetting parameters: - name: directorySetting-id in: path description: 'key: id of directorySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySetting @@ -16466,18 +16737,21 @@ paths: tags: - settings.directorySetting summary: Delete directorySetting + description: Delete a directory setting. operationId: settings.directorySetting_DeleteDirectorySetting parameters: - name: directorySetting-id in: path description: 'key: id of directorySetting' required: true + style: simple schema: type: string x-ms-docs-key-type: directorySetting - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16491,6 +16765,7 @@ paths: tags: - subscribedSkus.subscribedSku summary: List subscribedSkus + description: 'Get the list of commercial subscriptions that an organization has acquired. For the mapping of license names as displayed on the Azure portal or the Microsoft 365 admin center against their Microsoft Graph **skuId** and **skuPartNumber** properties, see Product names and service plan identifiers for licensing.' operationId: subscribedSkus.subscribedSku_ListSubscribedSku parameters: - $ref: '#/components/parameters/search' @@ -16576,12 +16851,14 @@ paths: tags: - subscribedSkus.subscribedSku summary: Get subscribedSku + description: Get a specific commercial subscription that an organization has acquired. operationId: subscribedSkus.subscribedSku_GetSubscribedSku parameters: - name: subscribedSku-id in: path description: 'key: id of subscribedSku' required: true + style: simple schema: type: string x-ms-docs-key-type: subscribedSku @@ -16624,6 +16901,7 @@ paths: in: path description: 'key: id of subscribedSku' required: true + style: simple schema: type: string x-ms-docs-key-type: subscribedSku @@ -16650,12 +16928,14 @@ paths: in: path description: 'key: id of subscribedSku' required: true + style: simple schema: type: string x-ms-docs-key-type: subscribedSku - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16669,12 +16949,14 @@ paths: tags: - users.scopedRoleMembership summary: Get scopedRoleMemberOf from users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_ListScopedRoleMemberGraphOPre parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -16748,6 +17030,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -16773,12 +17056,14 @@ paths: tags: - users.scopedRoleMembership summary: Get scopedRoleMemberOf from users + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. operationId: users_GetScopedRoleMemberGraphOPre parameters: - name: user-id in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -16786,6 +17071,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -16836,6 +17122,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -16843,6 +17130,7 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership @@ -16869,6 +17157,7 @@ paths: in: path description: 'key: id of user' required: true + style: simple schema: type: string x-ms-docs-key-type: user @@ -16876,12 +17165,14 @@ paths: in: path description: 'key: id of scopedRoleMembership' required: true + style: simple schema: type: string x-ms-docs-key-type: scopedRoleMembership - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17066,21 +17357,17 @@ components: properties: contractType: type: string - description: 'Type of contract. Possible values are: SyndicationPartner, BreadthPartner, ResellerPartner. See more in the table below.' nullable: true customerId: pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string - description: The unique identifier for the customer tenant referenced by this partnership. Corresponds to the id property of the customer tenant's organization resource. format: uuid nullable: true defaultDomainName: type: string - description: A copy of the customer tenant's default domain name. The copy is made when the partnership with the customer is established. It is not automatically updated if the customer tenant's default domain name changes. nullable: true displayName: type: string - description: A copy of the customer tenant's display name. The copy is made when the partnership with the customer is established. It is not automatically updated if the customer tenant's display name changes. nullable: true additionalProperties: type: object @@ -17373,7 +17660,6 @@ components: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: Recently deleted items. Read-only. Nullable. federationConfigurations: type: array items: @@ -18153,11 +18439,11 @@ components: properties: displayName: type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' + description: The display name of the identity. This property is read-only. nullable: true id: type: string - description: Unique identifier for the identity. + description: The identifier of the identity. This property is read-only. nullable: true additionalProperties: type: object @@ -18345,11 +18631,11 @@ components: properties: key: type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' + description: Key. nullable: true value: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: Value. nullable: true additionalProperties: type: object @@ -18864,6 +19150,13 @@ components: nullable: true additionalProperties: type: object + ReferenceCreate: + type: object + properties: + '@odata.id': + type: string + additionalProperties: + type: object microsoft.graph.administrativeUnitCollectionResponse: title: Collection of administrativeUnit type: object @@ -19623,35 +19916,53 @@ components: name: $top in: query description: Show only the first n items + style: form + explode: false schema: minimum: 0 type: integer example: 50 + search: + name: $search + in: query + description: Search items by search phrases + style: form + explode: false + schema: + type: string skip: name: $skip in: query description: Skip the first n items + style: form + explode: false schema: minimum: 0 type: integer - search: - name: $search - in: query - description: Search items by search phrases - schema: - type: string filter: name: $filter in: query description: Filter items by property values + style: form + explode: false schema: type: string count: name: $count in: query description: Include count of items + style: form + explode: false schema: type: boolean + requestBodies: + refPostBody: + description: New navigation property ref value + content: + application/json: + schema: + $ref: '#/components/schemas/ReferenceCreate' + required: true securitySchemes: azureaadv2: type: oauth2 diff --git a/openApiDocs/beta/Identity.Governance.yml b/openApiDocs/beta/Identity.Governance.yml index 94d51371e65..7206bbedcb7 100644 --- a/openApiDocs/beta/Identity.Governance.yml +++ b/openApiDocs/beta/Identity.Governance.yml @@ -11,6 +11,7 @@ paths: tags: - accessReviews.accessReview summary: List accessReviews (deprecated) + description: 'Retrieve the accessReview objects for a particular businessFlowTemplate. A list of zero or more **accessReview** objects are returned, for each one-time and recurring access review that was created with that business flow template. Note that business flow template IDs are case sensitive. If many access reviews match the filter, to improve efficiency and avoid timeouts, retrieve the result set in pages, by including both the `$top` query parameter with a page size, for example 100, and the `$skip=0` query parameter in the request. These parameters can be included even when you do not anticipate that the request will span multiple pages. When a result set spans multiple pages, Microsoft Graph returns that page with an `@odata.nextLink` property in the response that contains a URL to the next page of results. If that property is present, continue making additional requests with the `@odata.nextLink` URL in each response, until all the results are returned, as described in paging Microsoft Graph data in your app. The **accessReview** objects returned by this API will not include nested structure properties such as **settings**, or relationships. To retrieve an access review settings or relationships, use the get accessReview API.' operationId: accessReviews.accessReview_ListAccessReview parameters: - $ref: '#/components/parameters/top' @@ -106,6 +107,7 @@ paths: tags: - accessReviews.accessReview summary: Create accessReview (deprecated) + description: 'In the Azure AD access reviews feature, create a new accessReview object. Before making this request, the caller must have previously retrieved the list of business flow templates, to have the value of **businessFlowTemplateId** to include in the request. After making this request, the caller should create a programControl, to link the access review to a program. ' operationId: accessReviews.accessReview_CreateAccessReview requestBody: description: New entity @@ -129,12 +131,14 @@ paths: tags: - accessReviews.accessReview summary: Get accessReview (deprecated) + description: 'In the Azure AD access reviews feature, retrieve an accessReview object. To retrieve the reviewers of the access review, use the list accessReview reviewers API. To retrieve the decisions of the access review, use the list accessReview decisions API, or the list my accessReview decisions API. If this is a recurring access review, no decisions will be associated with the recurring access review series. Instead, use the `instances` relationship of that series to retrieve an accessReview collection of the past, current, and future instances of the access review. Each past and current instance will have decisions.' operationId: accessReviews.accessReview_GetAccessReview parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -219,12 +223,14 @@ paths: tags: - accessReviews.accessReview summary: Update accessReview (deprecated) + description: 'In the Azure AD access reviews feature, update an existing accessReview object to change one or more of its properties. This API is not intended to change the reviewers or decisions of a review. To change the reviewers, use the addReviewer or removeReviewer APIs. To stop an already-started one-time review, or an already-started instance of a recurring review, early, use the stop API. To apply the decisions to the target group or app access rights, use the apply API. ' operationId: accessReviews.accessReview_UpdateAccessReview parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -245,18 +251,21 @@ paths: tags: - accessReviews.accessReview summary: Delete accessReview (deprecated) + description: 'In the Azure AD access reviews feature, delete an accessReview object.' operationId: accessReviews.accessReview_DeleteAccessReview parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -270,12 +279,14 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get decisions from accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_ListDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -367,6 +378,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -392,12 +404,14 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get decisions from accessReviews + description: The collection of decisions for this access review. operationId: accessReviews_GetDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -405,6 +419,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -461,6 +476,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -468,6 +484,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -494,6 +511,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -501,12 +519,14 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -520,12 +540,14 @@ paths: tags: - accessReviews.accessReview summary: Get instances from accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_ListInstances parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -628,6 +650,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -653,12 +676,14 @@ paths: tags: - accessReviews.accessReview summary: Get instances from accessReviews + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' operationId: accessReviews_GetInstances parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -666,6 +691,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -760,6 +786,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -767,6 +794,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -793,6 +821,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -800,12 +829,14 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -819,12 +850,14 @@ paths: tags: - accessReviews.accessReview summary: Get decisions from accessReviews + description: The collection of decisions for this access review. operationId: accessReviews.instances_ListDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -832,6 +865,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -923,6 +957,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -930,6 +965,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -955,12 +991,14 @@ paths: tags: - accessReviews.accessReview summary: Get decisions from accessReviews + description: The collection of decisions for this access review. operationId: accessReviews.instances_GetDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -968,6 +1006,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -975,6 +1014,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -1031,6 +1071,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1038,6 +1079,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1045,6 +1087,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -1071,6 +1114,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1078,6 +1122,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1085,12 +1130,14 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1110,6 +1157,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1117,6 +1165,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1137,6 +1186,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1144,6 +1194,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1164,6 +1215,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1171,6 +1223,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1191,6 +1244,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1198,6 +1252,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1212,12 +1267,14 @@ paths: tags: - accessReviews.accessReview summary: Get myDecisions from accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews.instances_ListMyDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1225,6 +1282,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1316,6 +1374,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1323,6 +1382,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1348,12 +1408,14 @@ paths: tags: - accessReviews.accessReview summary: Get myDecisions from accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews.instances_GetMyDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1361,6 +1423,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1368,6 +1431,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -1424,6 +1488,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1431,6 +1496,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1438,6 +1504,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -1464,6 +1531,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1471,6 +1539,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1478,12 +1547,14 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1497,12 +1568,14 @@ paths: tags: - accessReviews.accessReview summary: Get reviewers from accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews.instances_ListReviewers parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1510,6 +1583,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1583,6 +1657,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1590,6 +1665,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1615,12 +1691,14 @@ paths: tags: - accessReviews.accessReview summary: Get reviewers from accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews.instances_GetReviewers parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1628,6 +1706,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1635,6 +1714,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -1685,6 +1765,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1692,6 +1773,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1699,6 +1781,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -1725,6 +1808,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1732,6 +1816,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1739,12 +1824,14 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -1764,6 +1851,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1784,6 +1872,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1804,6 +1893,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1824,6 +1914,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1838,12 +1929,14 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get myDecisions from accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_ListMyDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1935,6 +2028,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1960,12 +2054,14 @@ paths: tags: - accessReviews.accessReviewDecision summary: Get myDecisions from accessReviews + description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews_GetMyDecisions parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -1973,6 +2069,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -2029,6 +2126,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2036,6 +2134,7 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision @@ -2062,6 +2161,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2069,12 +2169,14 @@ paths: in: path description: 'key: id of accessReviewDecision' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewDecision - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2088,12 +2190,14 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Get reviewers from accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_ListReviewers parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2167,6 +2271,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2192,12 +2297,14 @@ paths: tags: - accessReviews.accessReviewReviewer summary: Get reviewers from accessReviews + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews_GetReviewers parameters: - name: accessReview-id in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2205,6 +2312,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -2255,6 +2363,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2262,6 +2371,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -2288,6 +2398,7 @@ paths: in: path description: 'key: id of accessReview' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReview @@ -2295,12 +2406,14 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2379,6 +2492,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2435,6 +2549,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2461,12 +2576,14 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2480,12 +2597,14 @@ paths: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_ListAcceptances parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2589,6 +2708,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2614,12 +2734,14 @@ paths: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements + description: Read-only. Information about acceptances of this agreement. operationId: agreements_GetAcceptances parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2627,6 +2749,7 @@ paths: in: path description: 'key: id of agreementAcceptance' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementAcceptance @@ -2687,6 +2810,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2694,6 +2818,7 @@ paths: in: path description: 'key: id of agreementAcceptance' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementAcceptance @@ -2720,6 +2845,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2727,12 +2853,14 @@ paths: in: path description: 'key: id of agreementAcceptance' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementAcceptance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2746,12 +2874,14 @@ paths: tags: - agreements.agreementFile summary: Get file from agreements + description: Default PDF linked to this agreement. operationId: agreements_GetFile parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2813,6 +2943,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2839,12 +2970,14 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -2858,12 +2991,14 @@ paths: tags: - agreements.agreementFile summary: Get localizations from agreements + description: The localized version of the terms of use agreement files attached to the agreement. operationId: agreements.file_ListLocalizations parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2951,6 +3086,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2976,12 +3112,14 @@ paths: tags: - agreements.agreementFile summary: Get localizations from agreements + description: The localized version of the terms of use agreement files attached to the agreement. operationId: agreements.file_GetLocalizations parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -2989,6 +3127,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3051,6 +3190,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3058,6 +3198,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3084,6 +3225,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3091,12 +3233,14 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3110,12 +3254,14 @@ paths: tags: - agreements.agreementFile summary: Get versions from agreements + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. operationId: agreements.file.localizations_ListVersions parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3123,6 +3269,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3208,6 +3355,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3215,6 +3363,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3240,12 +3389,14 @@ paths: tags: - agreements.agreementFile summary: Get versions from agreements + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. operationId: agreements.file.localizations_GetVersions parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3253,6 +3404,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3260,6 +3412,7 @@ paths: in: path description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileVersion @@ -3314,6 +3467,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3321,6 +3475,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3328,6 +3483,7 @@ paths: in: path description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileVersion @@ -3354,6 +3510,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3361,6 +3518,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3368,12 +3526,14 @@ paths: in: path description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3387,12 +3547,14 @@ paths: tags: - agreements.agreementFileLocalization summary: Get files from agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_ListFiles parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3480,6 +3642,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3505,12 +3668,14 @@ paths: tags: - agreements.agreementFileLocalization summary: Get files from agreements + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements_GetFiles parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3518,6 +3683,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3580,6 +3746,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3587,6 +3754,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3613,6 +3781,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3620,12 +3789,14 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3639,12 +3810,14 @@ paths: tags: - agreements.agreementFileLocalization summary: Get versions from agreements + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. operationId: agreements.files_ListVersions parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3652,6 +3825,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3737,6 +3911,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3744,6 +3919,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3769,12 +3945,14 @@ paths: tags: - agreements.agreementFileLocalization summary: Get versions from agreements + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. operationId: agreements.files_GetVersions parameters: - name: agreement-id in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3782,6 +3960,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3789,6 +3968,7 @@ paths: in: path description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileVersion @@ -3843,6 +4023,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3850,6 +4031,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3857,6 +4039,7 @@ paths: in: path description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileVersion @@ -3883,6 +4066,7 @@ paths: in: path description: 'key: id of agreement' required: true + style: simple schema: type: string x-ms-docs-key-type: agreement @@ -3890,6 +4074,7 @@ paths: in: path description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileLocalization @@ -3897,12 +4082,14 @@ paths: in: path description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string x-ms-docs-key-type: agreementFileVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -3916,6 +4103,7 @@ paths: tags: - businessFlowTemplates.businessFlowTemplate summary: List businessFlowTemplates (deprecated) + description: 'In the Azure AD access reviews feature, list all the businessFlowTemplate objects.' operationId: businessFlowTemplates.businessFlowTemplate_ListBusinessFlowTemplate parameters: - $ref: '#/components/parameters/top' @@ -4005,6 +4193,7 @@ paths: in: path description: 'key: id of businessFlowTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: businessFlowTemplate @@ -4053,6 +4242,7 @@ paths: in: path description: 'key: id of businessFlowTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: businessFlowTemplate @@ -4079,12 +4269,14 @@ paths: in: path description: 'key: id of businessFlowTemplate' required: true + style: simple schema: type: string x-ms-docs-key-type: businessFlowTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4110,6 +4302,7 @@ paths: type: array items: enum: + - lifecycleWorkflows - accessReviews - appConsent - termsOfUse @@ -4126,6 +4319,7 @@ paths: items: enum: - '*' + - lifecycleWorkflows - accessReviews - appConsent - termsOfUse @@ -4139,6 +4333,8 @@ paths: schema: $ref: '#/components/schemas/microsoft.graph.identityGovernance' links: + lifecycleWorkflows: + operationId: identityGovernance.GetLifecycleWorkflows accessReviews: operationId: identityGovernance.GetAccessReviews appConsent: @@ -4253,6 +4449,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4266,6 +4463,7 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: Represents an Azure AD access review decision on an instance of a review. operationId: identityGovernance.accessReviews_ListDecisions parameters: - $ref: '#/components/parameters/top' @@ -4395,12 +4593,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: Represents an Azure AD access review decision on an instance of a review. operationId: identityGovernance.accessReviews_GetDecisions parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4476,6 +4676,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4502,12 +4703,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4521,12 +4724,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.decisions_ListInsights parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4594,6 +4799,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4619,12 +4825,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.decisions_GetInsights parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4632,6 +4840,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -4680,6 +4889,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4687,6 +4897,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -4713,6 +4924,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4720,12 +4932,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4739,12 +4953,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instance from identityGovernance + description: 'There is exactly one accessReviewInstance associated with each decision. The instance is the parent of the decision item, representing the recurrence of the access review the decision is made on.' operationId: identityGovernance.accessReviews.decisions_GetInstance parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4836,6 +5052,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4862,12 +5079,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -4881,12 +5100,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.decisions.instance_ListContactedReviewers parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4960,6 +5181,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4985,12 +5207,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.decisions.instance_GetContactedReviewers parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -4998,6 +5222,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -5048,6 +5273,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5055,6 +5281,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -5081,6 +5308,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5088,12 +5316,14 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5107,12 +5337,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.decisions.instance_ListDecisions parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5226,6 +5458,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5251,12 +5484,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.decisions.instance_GetDecisions parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5264,6 +5499,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5341,6 +5577,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5348,6 +5585,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5374,6 +5612,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5381,12 +5620,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5400,12 +5641,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.decisions.instance.decisions_ListInsights parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5413,6 +5656,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5480,6 +5724,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5487,6 +5732,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5512,12 +5758,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.decisions.instance.decisions_GetInsights parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5525,6 +5773,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5532,6 +5781,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -5580,6 +5830,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5587,6 +5838,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5594,6 +5846,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -5620,6 +5873,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5627,6 +5881,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5634,12 +5889,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -5659,6 +5916,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5666,6 +5924,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -5697,6 +5956,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5733,12 +5993,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get definition from identityGovernance + description: 'There is exactly one accessReviewScheduleDefinition associated with each instance. It is the parent schedule for the instance, where instances are created for each recurrence of a review definition and each group selected to review by the definition.' operationId: identityGovernance.accessReviews.decisions.instance_GetDefinition parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5809,6 +6071,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5829,6 +6092,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5849,6 +6113,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5891,6 +6156,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5911,6 +6177,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5931,6 +6198,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -5945,12 +6213,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get stages from identityGovernance + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' operationId: identityGovernance.accessReviews.decisions.instance_ListStages parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6032,6 +6302,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6057,12 +6328,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get stages from identityGovernance + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' operationId: identityGovernance.accessReviews.decisions.instance_GetStages parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6070,6 +6343,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6132,6 +6406,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6139,6 +6414,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6165,6 +6441,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6172,12 +6449,14 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6191,12 +6470,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.decisions.instance.stages_ListDecisions parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6204,6 +6485,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6317,6 +6599,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6324,6 +6607,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6349,12 +6633,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.decisions.instance.stages_GetDecisions parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6362,6 +6648,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6369,6 +6656,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6448,6 +6736,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6455,6 +6744,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6462,6 +6752,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6488,6 +6779,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6495,6 +6787,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6502,12 +6795,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6521,12 +6816,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.decisions.instance.stages.decisions_ListInsights parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6534,6 +6831,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6541,6 +6839,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6608,6 +6907,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6615,6 +6915,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6622,6 +6923,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6647,12 +6949,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.decisions.instance.stages.decisions_GetInsights parameters: - name: accessReviewInstanceDecisionItem-id in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6660,6 +6964,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6667,6 +6972,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6674,6 +6980,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -6722,6 +7029,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6729,6 +7037,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6736,6 +7045,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6743,6 +7053,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -6769,6 +7080,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6776,6 +7088,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6783,6 +7096,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6790,12 +7104,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -6815,6 +7131,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6822,6 +7139,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6829,6 +7147,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -6860,6 +7179,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6867,6 +7187,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6909,6 +7230,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6916,6 +7238,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -6936,6 +7259,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -6943,6 +7267,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewStageFilterByCurrentUserOptions' responses: @@ -6974,6 +7299,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -7033,6 +7359,7 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get definitions from identityGovernance + description: Represents the template and scheduling for an access review. operationId: identityGovernance.accessReviews_ListDefinitions parameters: - $ref: '#/components/parameters/top' @@ -7160,12 +7487,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get definitions from identityGovernance + description: Represents the template and scheduling for an access review. operationId: identityGovernance.accessReviews_GetDefinitions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7237,6 +7566,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7263,12 +7593,14 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7282,12 +7614,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instances from identityGovernance + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' operationId: identityGovernance.accessReviews.definitions_ListInstances parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7381,6 +7715,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7406,12 +7741,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instances from identityGovernance + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' operationId: identityGovernance.accessReviews.definitions_GetInstances parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7419,6 +7756,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7514,6 +7852,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7521,6 +7860,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7547,6 +7887,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7554,12 +7895,14 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7573,12 +7916,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.definitions.instances_ListContactedReviewers parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7586,6 +7931,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7659,6 +8005,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7666,6 +8013,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7691,12 +8039,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.definitions.instances_GetContactedReviewers parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7704,6 +8054,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7711,6 +8062,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -7761,6 +8113,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7768,6 +8121,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7775,6 +8129,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -7801,6 +8156,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7808,6 +8164,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7815,12 +8172,14 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -7834,12 +8193,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances_ListDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7847,6 +8208,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7960,6 +8322,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -7967,6 +8330,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -7992,12 +8356,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances_GetDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8005,6 +8371,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8012,6 +8379,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8091,6 +8459,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8098,6 +8467,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8105,6 +8475,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8131,6 +8502,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8138,6 +8510,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8145,12 +8518,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8164,12 +8539,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.decisions_ListInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8177,6 +8554,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8184,6 +8562,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8251,6 +8630,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8258,6 +8638,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8265,6 +8646,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8290,12 +8672,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.decisions_GetInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8303,6 +8687,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8310,6 +8695,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8317,6 +8703,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -8365,6 +8752,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8372,6 +8760,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8379,6 +8768,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8386,6 +8776,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -8412,6 +8803,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8419,6 +8811,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8426,6 +8819,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8433,12 +8827,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8452,12 +8848,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instance from identityGovernance + description: 'There is exactly one accessReviewInstance associated with each decision. The instance is the parent of the decision item, representing the recurrence of the access review the decision is made on.' operationId: identityGovernance.accessReviews.definitions.instances.decisions_GetInstance parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8465,6 +8863,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8472,6 +8871,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8571,6 +8971,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8578,6 +8979,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8585,6 +8987,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8611,6 +9014,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8618,6 +9022,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8625,12 +9030,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8644,12 +9051,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance_ListContactedReviewers parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8657,6 +9066,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8664,6 +9074,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8737,6 +9148,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8744,6 +9156,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8751,6 +9164,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8776,12 +9190,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance_GetContactedReviewers parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8789,6 +9205,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8796,6 +9213,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8803,6 +9221,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -8853,6 +9272,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8860,6 +9280,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8867,6 +9288,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8874,6 +9296,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -8900,6 +9323,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8907,6 +9331,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8914,6 +9339,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -8921,12 +9347,14 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -8940,12 +9368,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get definition from identityGovernance + description: 'There is exactly one accessReviewScheduleDefinition associated with each instance. It is the parent schedule for the instance, where instances are created for each recurrence of a review definition and each group selected to review by the definition.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance_GetDefinition parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -8953,6 +9383,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -8960,6 +9391,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9032,6 +9464,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9039,6 +9472,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9046,6 +9480,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9066,6 +9501,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9073,6 +9509,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9080,6 +9517,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9100,6 +9538,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9107,6 +9546,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9114,6 +9554,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9156,6 +9597,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9163,6 +9605,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9170,6 +9613,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9190,6 +9634,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9197,6 +9642,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9204,6 +9650,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9224,6 +9671,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9231,6 +9679,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9238,6 +9687,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9252,12 +9702,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get stages from identityGovernance + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance_ListStages parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9265,6 +9717,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9272,6 +9725,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9353,6 +9807,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9360,6 +9815,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9367,6 +9823,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9392,12 +9849,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get stages from identityGovernance + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance_GetStages parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9405,6 +9864,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9412,6 +9872,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9419,6 +9880,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9483,6 +9945,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9490,6 +9953,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9497,6 +9961,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9504,6 +9969,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9530,6 +9996,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9537,6 +10004,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9544,6 +10012,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9551,12 +10020,14 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9570,12 +10041,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance.stages_ListDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9583,6 +10056,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9590,6 +10064,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9597,6 +10072,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9710,6 +10186,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9717,6 +10194,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9724,6 +10202,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9731,6 +10210,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9756,12 +10236,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance.stages_GetDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9769,6 +10251,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9776,6 +10259,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9783,6 +10267,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9790,6 +10275,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9873,6 +10359,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9880,6 +10367,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9887,6 +10375,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9894,6 +10383,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9901,6 +10391,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9927,6 +10418,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9934,6 +10426,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9941,6 +10434,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -9948,6 +10442,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -9955,12 +10450,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -9974,12 +10471,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance.stages.decisions_ListInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -9987,6 +10486,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -9994,6 +10494,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10001,6 +10502,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10008,6 +10510,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10075,6 +10578,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10082,6 +10586,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10089,6 +10594,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10096,6 +10602,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10103,6 +10610,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10128,12 +10636,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.decisions.instance.stages.decisions_GetInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10141,6 +10651,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10148,6 +10659,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10155,6 +10667,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10162,6 +10675,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10169,6 +10683,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -10217,6 +10732,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10224,6 +10740,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10231,6 +10748,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10238,6 +10756,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10245,6 +10764,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10252,6 +10772,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -10278,6 +10799,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10285,6 +10807,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10292,6 +10815,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10299,6 +10823,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10306,6 +10831,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10313,12 +10839,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -10338,6 +10866,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10345,6 +10874,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10352,6 +10882,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10359,6 +10890,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10366,6 +10898,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -10397,6 +10930,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10404,6 +10938,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10411,6 +10946,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10418,6 +10954,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10460,6 +10997,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10467,6 +11005,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10474,6 +11013,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10481,6 +11021,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -10501,6 +11042,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10508,6 +11050,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10515,6 +11058,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -10522,6 +11066,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewStageFilterByCurrentUserOptions' responses: @@ -10553,6 +11098,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10560,6 +11106,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10567,6 +11114,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -10598,6 +11146,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10605,6 +11154,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10641,12 +11191,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get definition from identityGovernance + description: 'There is exactly one accessReviewScheduleDefinition associated with each instance. It is the parent schedule for the instance, where instances are created for each recurrence of a review definition and each group selected to review by the definition.' operationId: identityGovernance.accessReviews.definitions.instances_GetDefinition parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10654,6 +11206,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10725,6 +11278,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10732,6 +11286,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10752,6 +11307,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10759,6 +11315,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10779,6 +11336,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10786,6 +11344,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10828,6 +11387,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10835,6 +11395,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10855,6 +11416,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10862,6 +11424,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10882,6 +11445,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10889,6 +11453,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10903,12 +11468,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get stages from identityGovernance + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' operationId: identityGovernance.accessReviews.definitions.instances_ListStages parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -10916,6 +11483,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -10997,6 +11565,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11004,6 +11573,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11029,12 +11599,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get stages from identityGovernance + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' operationId: identityGovernance.accessReviews.definitions.instances_GetStages parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11042,6 +11614,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11049,6 +11622,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11112,6 +11686,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11119,6 +11694,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11126,6 +11702,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11152,6 +11729,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11159,6 +11737,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11166,12 +11745,14 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11185,12 +11766,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances.stages_ListDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11198,6 +11781,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11205,6 +11789,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11318,6 +11903,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11325,6 +11911,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11332,6 +11919,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11357,12 +11945,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances.stages_GetDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11370,6 +11960,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11377,6 +11968,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11384,6 +11976,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11465,6 +12058,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11472,6 +12066,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11479,6 +12074,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11486,6 +12082,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11512,6 +12109,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11519,6 +12117,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11526,6 +12125,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11533,12 +12133,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11552,12 +12154,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions_ListInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11565,6 +12169,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11572,6 +12177,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11579,6 +12185,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11646,6 +12253,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11653,6 +12261,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11660,6 +12269,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11667,6 +12277,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11692,12 +12303,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions_GetInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11705,6 +12318,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11712,6 +12326,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11719,6 +12334,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11726,6 +12342,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -11774,6 +12391,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11781,6 +12399,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11788,6 +12407,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11795,6 +12415,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11802,6 +12423,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -11828,6 +12450,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11835,6 +12458,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11842,6 +12466,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11849,6 +12474,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -11856,12 +12482,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -11875,12 +12503,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instance from identityGovernance + description: 'There is exactly one accessReviewInstance associated with each decision. The instance is the parent of the decision item, representing the recurrence of the access review the decision is made on.' operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions_GetInstance parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -11888,6 +12518,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -11895,6 +12526,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -11902,6 +12534,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12005,6 +12638,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12012,6 +12646,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12019,6 +12654,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12026,6 +12662,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12052,6 +12689,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12059,6 +12697,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12066,6 +12705,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12073,12 +12713,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12092,12 +12734,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance_ListContactedReviewers parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12105,6 +12749,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12112,6 +12757,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12119,6 +12765,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12192,6 +12839,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12199,6 +12847,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12206,6 +12855,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12213,6 +12863,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12238,12 +12889,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get contactedReviewers from identityGovernance + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance_GetContactedReviewers parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12251,6 +12904,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12258,6 +12912,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12265,6 +12920,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12272,6 +12928,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -12322,6 +12979,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12329,6 +12987,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12336,6 +12995,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12343,6 +13003,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12350,6 +13011,7 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer @@ -12376,6 +13038,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12383,6 +13046,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12390,6 +13054,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12397,6 +13062,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12404,12 +13070,14 @@ paths: in: path description: 'key: id of accessReviewReviewer' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewReviewer - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12423,12 +13091,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance_ListDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12436,6 +13106,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12443,6 +13114,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12450,6 +13122,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12563,6 +13236,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12570,6 +13244,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12577,6 +13252,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12584,6 +13260,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12609,12 +13286,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get decisions from identityGovernance + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance_GetDecisions parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12622,6 +13301,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12629,6 +13309,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12636,6 +13317,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12643,6 +13325,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12726,6 +13409,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12733,6 +13417,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12740,6 +13425,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12747,6 +13433,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12754,6 +13441,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12780,6 +13468,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12787,6 +13476,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12794,6 +13484,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12801,6 +13492,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12808,12 +13500,14 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -12827,12 +13521,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance.decisions_ListInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12840,6 +13536,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12847,6 +13544,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12854,6 +13552,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12861,6 +13560,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12928,6 +13628,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12935,6 +13636,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -12942,6 +13644,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -12949,6 +13652,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12956,6 +13660,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -12981,12 +13686,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get insights from identityGovernance + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance.decisions_GetInsights parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -12994,6 +13701,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13001,6 +13709,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13008,6 +13717,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13015,6 +13725,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13022,6 +13733,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -13070,6 +13782,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13077,6 +13790,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13084,6 +13798,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13091,6 +13806,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13098,6 +13814,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13105,6 +13822,7 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight @@ -13131,6 +13849,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13138,6 +13857,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13145,6 +13865,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13152,6 +13873,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13159,6 +13881,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13166,12 +13889,14 @@ paths: in: path description: 'key: id of governanceInsight' required: true + style: simple schema: type: string x-ms-docs-key-type: governanceInsight - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -13191,6 +13916,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13198,6 +13924,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13205,6 +13932,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13212,6 +13940,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13219,6 +13948,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -13250,6 +13980,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13257,6 +13988,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13264,6 +13996,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13271,6 +14004,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13307,12 +14041,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get definition from identityGovernance + description: 'There is exactly one accessReviewScheduleDefinition associated with each instance. It is the parent schedule for the instance, where instances are created for each recurrence of a review definition and each group selected to review by the definition.' operationId: identityGovernance.accessReviews.definitions.instances.stages.decisions.instance_GetDefinition parameters: - name: accessReviewScheduleDefinition-id in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13320,6 +14056,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13327,6 +14064,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13334,6 +14072,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13407,6 +14146,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13414,6 +14154,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13421,6 +14162,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13428,6 +14170,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13448,6 +14191,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13455,6 +14199,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13462,6 +14207,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13469,6 +14215,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13489,6 +14236,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13496,6 +14244,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13503,6 +14252,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13510,6 +14260,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13552,6 +14303,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13559,6 +14311,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13566,6 +14319,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13573,6 +14327,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13593,6 +14348,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13600,6 +14356,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13607,6 +14364,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13614,6 +14372,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13634,6 +14393,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13641,6 +14401,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13648,6 +14409,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13655,6 +14417,7 @@ paths: in: path description: 'key: id of accessReviewInstanceDecisionItem' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstanceDecisionItem @@ -13675,6 +14438,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13682,6 +14446,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13689,6 +14454,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13696,6 +14462,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions' responses: @@ -13727,6 +14494,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13734,6 +14502,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13741,6 +14510,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13783,6 +14553,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13790,6 +14561,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13797,6 +14569,7 @@ paths: in: path description: 'key: id of accessReviewStage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewStage @@ -13817,6 +14590,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13824,6 +14598,7 @@ paths: in: path description: 'key: id of accessReviewInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewInstance @@ -13831,6 +14606,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewStageFilterByCurrentUserOptions' responses: @@ -13862,6 +14638,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13869,6 +14646,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions' responses: @@ -13900,6 +14678,7 @@ paths: in: path description: 'key: id of accessReviewScheduleDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewScheduleDefinition @@ -13920,6 +14699,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions' responses: @@ -13945,6 +14725,7 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get historyDefinitions from identityGovernance + description: Represents a collection of access review history data and the scopes used to collect that data. operationId: identityGovernance.accessReviews_ListHistoryDefinitions parameters: - $ref: '#/components/parameters/top' @@ -14060,12 +14841,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get historyDefinitions from identityGovernance + description: Represents a collection of access review history data and the scopes used to collect that data. operationId: identityGovernance.accessReviews_GetHistoryDefinitions parameters: - name: accessReviewHistoryDefinition-id in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14131,6 +14914,7 @@ paths: in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14157,12 +14941,14 @@ paths: in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14176,12 +14962,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instances from identityGovernance + description: 'If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that does not recur will have exactly one instance.' operationId: identityGovernance.accessReviews.historyDefinitions_ListInstances parameters: - name: accessReviewHistoryDefinition-id in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14267,6 +15055,7 @@ paths: in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14292,12 +15081,14 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get instances from identityGovernance + description: 'If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that does not recur will have exactly one instance.' operationId: identityGovernance.accessReviews.historyDefinitions_GetInstances parameters: - name: accessReviewHistoryDefinition-id in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14305,6 +15096,7 @@ paths: in: path description: 'key: id of accessReviewHistoryInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryInstance @@ -14362,6 +15154,7 @@ paths: in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14369,6 +15162,7 @@ paths: in: path description: 'key: id of accessReviewHistoryInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryInstance @@ -14395,6 +15189,7 @@ paths: in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14402,12 +15197,14 @@ paths: in: path description: 'key: id of accessReviewHistoryInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryInstance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14427,6 +15224,7 @@ paths: in: path description: 'key: id of accessReviewHistoryDefinition' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryDefinition @@ -14434,6 +15232,7 @@ paths: in: path description: 'key: id of accessReviewHistoryInstance' required: true + style: simple schema: type: string x-ms-docs-key-type: accessReviewHistoryInstance @@ -14452,6 +15251,7 @@ paths: tags: - identityGovernance.accessReviewSet summary: Get policy from identityGovernance + description: Resource that enables administrators to manage directory-level access review policies in their tenant. operationId: identityGovernance.accessReviews_GetPolicy parameters: - name: $select @@ -14518,6 +15318,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14599,6 +15400,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14612,6 +15414,7 @@ paths: tags: - identityGovernance.appConsentApprovalRoute summary: Get appConsentRequests from identityGovernance + description: A collection of userConsentRequest objects for a specific application. operationId: identityGovernance.appConsent_ListAppConsentRequests parameters: - $ref: '#/components/parameters/top' @@ -14706,12 +15509,14 @@ paths: tags: - identityGovernance.appConsentApprovalRoute summary: Get appConsentRequests from identityGovernance + description: A collection of userConsentRequest objects for a specific application. operationId: identityGovernance.appConsent_GetAppConsentRequests parameters: - name: appConsentRequest-id in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -14770,6 +15575,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -14796,12 +15602,14 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -14815,12 +15623,14 @@ paths: tags: - identityGovernance.appConsentApprovalRoute summary: Get userConsentRequests from identityGovernance + description: A list of pending user consent requests. Supports $filter (eq). operationId: identityGovernance.appConsent.appConsentRequests_ListUserConsentRequests parameters: - name: appConsentRequest-id in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -14908,6 +15718,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -14933,12 +15744,14 @@ paths: tags: - identityGovernance.appConsentApprovalRoute summary: Get userConsentRequests from identityGovernance + description: A list of pending user consent requests. Supports $filter (eq). operationId: identityGovernance.appConsent.appConsentRequests_GetUserConsentRequests parameters: - name: appConsentRequest-id in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -14946,6 +15759,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15008,6 +15822,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15015,6 +15830,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15041,6 +15857,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15048,12 +15865,14 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15067,12 +15886,14 @@ paths: tags: - identityGovernance.appConsentApprovalRoute summary: Get approval from identityGovernance + description: Approval decisions associated with a request. operationId: identityGovernance.appConsent.appConsentRequests.userConsentRequests_GetApproval parameters: - name: appConsentRequest-id in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15080,6 +15901,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15135,6 +15957,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15142,6 +15965,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15168,6 +15992,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15175,12 +16000,14 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15200,6 +16027,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15207,6 +16035,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15292,6 +16121,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15299,6 +16129,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15330,6 +16161,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15337,6 +16169,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15344,6 +16177,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -15398,6 +16232,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15405,6 +16240,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15412,6 +16248,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -15438,6 +16275,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15445,6 +16283,7 @@ paths: in: path description: 'key: id of userConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: userConsentRequest @@ -15452,12 +16291,14 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15477,6 +16318,7 @@ paths: in: path description: 'key: id of appConsentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: appConsentRequest @@ -15484,6 +16326,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions' responses: @@ -15515,6 +16358,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.consentRequestFilterByCurrentUserOptions' responses: @@ -15660,6 +16504,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15761,6 +16606,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -15815,6 +16661,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -15841,12 +16688,14 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -15866,6 +16715,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -15951,6 +16801,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -15982,6 +16833,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -15989,6 +16841,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -16043,6 +16896,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16050,6 +16904,7 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep @@ -16076,6 +16931,7 @@ paths: in: path description: 'key: id of approval' required: true + style: simple schema: type: string x-ms-docs-key-type: approval @@ -16083,12 +16939,14 @@ paths: in: path description: 'key: id of approvalStep' required: true + style: simple schema: type: string x-ms-docs-key-type: approvalStep - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16108,6 +16966,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.approvalFilterByCurrentUserOptions' responses: @@ -16133,6 +16992,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Represents the policy that governs which subjects can request or be assigned an access package via an access package assignment. operationId: identityGovernance.entitlementManagement_ListAccessPackageAssignmentPolicies parameters: - $ref: '#/components/parameters/top' @@ -16261,12 +17121,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Represents the policy that governs which subjects can request or be assigned an access package via an access package assignment. operationId: identityGovernance.entitlementManagement_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignmentPolicy-id in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16347,6 +17209,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16373,12 +17236,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16392,12 +17257,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageAssignmentPolicy-id in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16492,6 +17359,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16574,12 +17442,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_ListCustomExtensionHandlers parameters: - name: accessPackageAssignmentPolicy-id in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16649,6 +17519,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16674,12 +17545,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies_GetCustomExtensionHandlers parameters: - name: accessPackageAssignmentPolicy-id in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16687,6 +17560,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -16743,6 +17617,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16750,6 +17625,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -16776,6 +17652,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16783,12 +17660,14 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -16802,12 +17681,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtension from identityGovernance + description: Indicates which custom workflow extension will be executed at this stage. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentPolicies.customExtensionHandlers_GetCustomExtension parameters: - name: accessPackageAssignmentPolicy-id in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -16815,6 +17696,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -16864,6 +17746,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentRequests from identityGovernance + description: Represents access package assignment requests created by or on behalf of a user. operationId: identityGovernance.entitlementManagement_ListAccessPackageAssignmentRequests parameters: - $ref: '#/components/parameters/top' @@ -16983,12 +17866,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentRequests from identityGovernance + description: Represents access package assignment requests created by or on behalf of a user. operationId: identityGovernance.entitlementManagement_GetAccessPackageAssignmentRequests parameters: - name: accessPackageAssignmentRequest-id in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17070,6 +17955,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17096,12 +17982,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17115,12 +18003,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_GetAccessPackage parameters: - name: accessPackageAssignmentRequest-id in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17209,12 +18099,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignment from identityGovernance + description: 'For a requestType of UserAdd or AdminAdd, this is an access package assignment requested to be created. For a requestType of UserRemove, AdminRemove or SystemRemove, this has the id property of an existing assignment to be removed. Supports $expand.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_GetAccessPackageAssignment parameters: - name: accessPackageAssignmentRequest-id in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17303,6 +18195,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17323,6 +18216,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17337,12 +18231,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable. Supports $expand.' operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests_GetRequestor parameters: - name: accessPackageAssignmentRequest-id in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17406,6 +18302,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17432,12 +18329,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17451,12 +18350,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentRequests.requestor_GetConnectedOrganization parameters: - name: accessPackageAssignmentRequest-id in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -17526,6 +18427,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions' responses: @@ -17551,6 +18453,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: Represents the resource-specific role which a subject has been assigned through an access package assignment. operationId: identityGovernance.entitlementManagement_ListAccessPackageAssignmentResourceRoles parameters: - $ref: '#/components/parameters/top' @@ -17648,12 +18551,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: Represents the resource-specific role which a subject has been assigned through an access package assignment. operationId: identityGovernance.entitlementManagement_GetAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -17729,6 +18634,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -17755,12 +18661,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -17774,12 +18682,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_ListAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -17876,12 +18786,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_GetAccessPackageAssignments parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -17889,6 +18801,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -17982,6 +18895,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18040,6 +18954,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18066,12 +18981,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18091,6 +19008,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18167,6 +19085,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18193,12 +19112,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18212,12 +19133,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18277,12 +19200,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18361,6 +19286,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18386,12 +19312,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18399,6 +19327,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -18458,6 +19387,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18465,6 +19395,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -18491,6 +19422,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18498,12 +19430,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18517,12 +19451,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18610,6 +19546,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18635,12 +19572,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18648,6 +19587,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -18710,6 +19650,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18717,6 +19658,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -18743,6 +19685,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18750,12 +19693,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18775,6 +19720,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18782,6 +19728,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -18861,6 +19808,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18868,6 +19816,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -18894,6 +19843,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18901,12 +19851,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -18920,12 +19872,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -18933,6 +19887,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -18993,12 +19948,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19006,6 +19963,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -19084,6 +20042,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19091,6 +20050,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -19116,12 +20076,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19129,6 +20091,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -19136,6 +20099,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -19196,6 +20160,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19203,6 +20168,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -19210,6 +20176,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -19236,6 +20203,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19243,6 +20211,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -19250,12 +20219,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19275,6 +20246,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19336,6 +20308,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19362,12 +20335,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19387,6 +20362,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19463,6 +20439,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19489,12 +20466,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19508,12 +20487,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19573,12 +20554,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19657,6 +20640,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19682,12 +20666,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19695,6 +20681,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -19754,6 +20741,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19761,6 +20749,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -19787,6 +20776,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19794,12 +20784,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19819,6 +20811,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19826,6 +20819,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -19905,6 +20899,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19912,6 +20907,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -19938,6 +20934,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19945,12 +20942,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -19964,12 +20963,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -19977,6 +20978,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -20037,12 +21039,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20050,6 +21054,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -20137,6 +21142,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20144,6 +21150,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -20169,12 +21176,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20182,6 +21191,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -20189,6 +21199,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -20252,6 +21263,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20259,6 +21271,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -20266,6 +21279,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -20292,6 +21306,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20299,6 +21314,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -20306,12 +21322,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20325,12 +21343,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20418,6 +21438,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20443,12 +21464,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20456,6 +21479,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -20518,6 +21542,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20525,6 +21550,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -20551,6 +21577,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20558,12 +21585,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20577,12 +21606,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageSubject from identityGovernance + description: Read-only. Nullable. Supports $filter (eq) on objectId and $expand query parameters. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles_GetAccessPackageSubject parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20646,6 +21677,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20672,12 +21704,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -20691,12 +21725,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignmentResourceRoles.accessPackageSubject_GetConnectedOrganization parameters: - name: accessPackageAssignmentResourceRole-id in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -20784,6 +21820,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The assignment of an access package to a subject for a period of time. operationId: identityGovernance.entitlementManagement_ListAccessPackageAssignments parameters: - $ref: '#/components/parameters/top' @@ -20901,12 +21938,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The assignment of an access package to a subject for a period of time. operationId: identityGovernance.entitlementManagement_GetAccessPackageAssignments parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -20996,6 +22035,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21022,12 +22062,14 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21041,12 +22083,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: Read-only. Nullable. Supports $filter (eq) on the id property and $expand query parameters. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetAccessPackage parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21142,6 +22186,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21168,12 +22213,14 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21187,12 +22234,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21305,6 +22354,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21330,12 +22380,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21343,6 +22395,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21426,6 +22479,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21433,6 +22487,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21459,6 +22514,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21466,12 +22522,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21485,12 +22543,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21498,6 +22558,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21598,6 +22659,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21605,6 +22667,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21692,12 +22755,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_ListCustomExtensionHandlers parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21705,6 +22770,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21774,6 +22840,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21781,6 +22848,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21806,12 +22874,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies_GetCustomExtensionHandlers parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21819,6 +22889,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21826,6 +22897,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -21883,6 +22955,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21890,6 +22963,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21897,6 +22971,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -21923,6 +22998,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21930,6 +23006,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21937,12 +23014,14 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -21956,12 +23035,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtension from identityGovernance + description: Indicates which custom workflow extension will be executed at this stage. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageAssignmentPolicies.customExtensionHandlers_GetCustomExtension parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -21969,6 +23050,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -21976,6 +23058,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -22031,6 +23114,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22119,6 +23203,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22199,6 +23284,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22230,6 +23316,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22237,6 +23324,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22303,6 +23391,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22310,6 +23399,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22336,6 +23426,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22343,12 +23434,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22362,12 +23455,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22375,6 +23470,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22434,6 +23530,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22441,6 +23538,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22467,6 +23565,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22474,12 +23573,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22499,6 +23600,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22506,6 +23608,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22585,6 +23688,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22592,6 +23696,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22618,6 +23723,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22625,12 +23731,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22644,12 +23752,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22657,6 +23767,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22717,12 +23828,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22730,6 +23843,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22808,6 +23922,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22815,6 +23930,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22840,12 +23956,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22853,6 +23971,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22860,6 +23979,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -22920,6 +24040,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22927,6 +24048,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22934,6 +24056,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -22960,6 +24083,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -22967,6 +24091,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -22974,12 +24099,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -22993,12 +24120,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23006,6 +24135,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23093,6 +24223,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23100,6 +24231,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23125,12 +24257,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23138,6 +24272,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23145,6 +24280,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23208,6 +24344,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23215,6 +24352,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23222,6 +24360,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23248,6 +24387,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23255,6 +24395,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23262,12 +24403,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23287,6 +24430,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23294,6 +24438,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23301,6 +24446,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23383,6 +24529,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23390,6 +24537,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23397,6 +24545,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23423,6 +24572,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23430,6 +24580,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23437,12 +24588,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23456,12 +24609,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23469,6 +24624,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23476,6 +24632,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23537,12 +24694,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23550,6 +24709,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23557,6 +24717,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23635,6 +24796,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23642,6 +24804,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23649,6 +24812,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23674,12 +24838,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23687,6 +24853,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23694,6 +24861,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23701,6 +24869,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -23762,6 +24931,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23769,6 +24939,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23776,6 +24947,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23783,6 +24955,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -23809,6 +24982,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23816,6 +24990,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23823,6 +24998,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -23830,12 +25006,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23855,6 +25033,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23862,6 +25041,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23924,6 +25104,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23931,6 +25112,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -23957,6 +25139,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23964,12 +25147,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -23989,6 +25174,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -23996,6 +25182,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24075,6 +25262,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24082,6 +25270,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24108,6 +25297,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24115,12 +25305,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24134,12 +25326,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24147,6 +25341,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24207,12 +25402,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24220,6 +25417,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24298,6 +25496,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24305,6 +25504,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24330,12 +25530,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24343,6 +25545,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24350,6 +25553,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24410,6 +25614,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24417,6 +25622,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24424,6 +25630,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24450,6 +25657,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24457,6 +25665,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24464,12 +25673,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24489,6 +25700,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24496,6 +25708,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24503,6 +25716,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24585,6 +25799,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24592,6 +25807,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24599,6 +25815,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24625,6 +25842,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24632,6 +25850,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24639,12 +25858,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -24658,12 +25879,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24671,6 +25894,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24678,6 +25902,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24739,12 +25964,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24752,6 +25979,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24759,6 +25987,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24846,6 +26075,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24853,6 +26083,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24860,6 +26091,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24885,12 +26117,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24898,6 +26132,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24905,6 +26140,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24912,6 +26148,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -24976,6 +26213,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -24983,6 +26221,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -24990,6 +26229,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -24997,6 +26237,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -25023,6 +26264,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25030,6 +26272,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -25037,6 +26280,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -25044,12 +26288,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25063,12 +26309,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25076,6 +26324,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -25163,6 +26412,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25170,6 +26420,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -25195,12 +26446,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25208,6 +26461,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -25215,6 +26469,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -25278,6 +26533,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25285,6 +26541,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -25292,6 +26549,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -25318,6 +26576,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25325,6 +26584,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -25332,12 +26592,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -25351,12 +26613,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackagesIncompatibleWith from identityGovernance + description: The access packages that are incompatible with this package. Read-only. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListAccessPackagesIncompatibleGraphWPre parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25455,12 +26719,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackagesIncompatibleWith from identityGovernance + description: The access packages that are incompatible with this package. Read-only. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_GetAccessPackagesIncompatibleGraphWPre parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25468,6 +26734,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -25562,12 +26829,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get incompatibleAccessPackages from identityGovernance + description: The access packages whose assigned users are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListIncompatibleAccessPackages parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25672,6 +26941,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25679,17 +26949,21 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -25703,12 +26977,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of incompatibleAccessPackages from identityGovernance + description: The access packages whose assigned users are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListIncompatibleAccessPackagesGraphBPreRef parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -25767,18 +27043,12 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -25790,12 +27060,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get incompatibleGroups from identityGovernance + description: The groups whose members are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListIncompatibleGroups parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26070,6 +27342,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26077,17 +27350,21 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -26101,12 +27378,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of incompatibleGroups from identityGovernance + description: The groups whose members are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackage_ListIncompatibleGroupsGraphBPreRef parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26249,18 +27528,12 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -26278,6 +27551,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26304,12 +27578,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicy from identityGovernance + description: Read-only. Nullable. Supports $filter (eq) on the id property operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetAccessPackageAssignmentPolicy parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26390,6 +27666,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26416,12 +27693,14 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26435,12 +27714,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_GetAccessPackage parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26535,6 +27816,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26617,12 +27899,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_ListCustomExtensionHandlers parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26692,6 +27976,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26717,12 +28002,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy_GetCustomExtensionHandlers parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26730,6 +28017,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -26786,6 +28074,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26793,6 +28082,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -26819,6 +28109,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26826,12 +28117,14 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -26845,12 +28138,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtension from identityGovernance + description: Indicates which custom workflow extension will be executed at this stage. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentPolicy.customExtensionHandlers_GetCustomExtension parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -26858,6 +28153,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -26913,6 +28209,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27016,6 +28313,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27047,6 +28345,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27054,6 +28353,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27138,6 +28438,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27145,6 +28446,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27171,6 +28473,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27178,12 +28481,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27197,12 +28502,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_GetAccessPackage parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27210,6 +28517,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27304,12 +28612,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignment from identityGovernance + description: 'For a requestType of UserAdd or AdminAdd, this is an access package assignment requested to be created. For a requestType of UserRemove, AdminRemove or SystemRemove, this has the id property of an existing assignment to be removed. Supports $expand.' operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_GetAccessPackageAssignment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27317,6 +28627,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27410,6 +28721,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27417,6 +28729,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27437,6 +28750,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27444,6 +28758,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27458,12 +28773,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: 'The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable. Supports $expand.' operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests_GetRequestor parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27471,6 +28788,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27535,6 +28853,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27542,6 +28861,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27568,6 +28888,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27575,12 +28896,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27594,12 +28917,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentRequests.requestor_GetConnectedOrganization parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27607,6 +28932,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentRequest @@ -27678,6 +29004,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27685,6 +29012,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions' responses: @@ -27710,12 +29038,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_ListAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27797,6 +29127,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27822,12 +29153,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentResourceRoles from identityGovernance + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetAccessPackageAssignmentResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27835,6 +29168,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -27914,6 +29248,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27921,6 +29256,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -27947,6 +29283,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27954,12 +29291,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -27973,12 +29312,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_ListAccessPackageAssignments parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -27986,6 +29327,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28082,12 +29424,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignments from identityGovernance + description: The access package assignments resulting in this role assignment. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_GetAccessPackageAssignments parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28095,6 +29439,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28102,6 +29447,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28200,6 +29546,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28207,6 +29554,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28266,6 +29614,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28273,6 +29622,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28299,6 +29649,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28306,12 +29657,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28331,6 +29684,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28338,6 +29692,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28417,6 +29772,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28424,6 +29780,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28450,6 +29807,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28457,12 +29815,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28476,12 +29836,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28489,6 +29851,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28549,12 +29912,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28562,6 +29927,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28640,6 +30006,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28647,6 +30014,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28672,12 +30040,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28685,6 +30055,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28692,6 +30063,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -28752,6 +30124,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28759,6 +30132,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28766,6 +30140,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -28792,6 +30167,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28799,6 +30175,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28806,12 +30183,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -28825,12 +30204,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28838,6 +30219,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28925,6 +30307,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28932,6 +30315,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28957,12 +30341,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -28970,6 +30356,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -28977,6 +30364,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29040,6 +30428,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29047,6 +30436,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29054,6 +30444,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29080,6 +30471,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29087,6 +30479,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29094,12 +30487,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29119,6 +30514,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29126,6 +30522,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29133,6 +30530,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29215,6 +30613,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29222,6 +30621,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29229,6 +30629,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29255,6 +30656,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29262,6 +30664,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29269,12 +30672,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29288,12 +30693,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29301,6 +30708,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29308,6 +30716,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29369,12 +30778,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29382,6 +30793,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29389,6 +30801,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29467,6 +30880,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29474,6 +30888,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29481,6 +30896,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29506,12 +30922,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29519,6 +30937,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29526,6 +30945,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29533,6 +30953,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -29594,6 +31015,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29601,6 +31023,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29608,6 +31031,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29615,6 +31039,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -29641,6 +31066,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29648,6 +31074,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29655,6 +31082,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -29662,12 +31090,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29687,6 +31117,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29694,6 +31125,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29756,6 +31188,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29763,6 +31196,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29789,6 +31223,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29796,12 +31231,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29821,6 +31258,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29828,6 +31266,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29907,6 +31346,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29914,6 +31354,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -29940,6 +31381,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29947,12 +31389,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -29966,12 +31410,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -29979,6 +31425,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30039,12 +31486,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30052,6 +31501,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30130,6 +31580,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30137,6 +31588,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30162,12 +31614,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30175,6 +31629,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30182,6 +31637,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30242,6 +31698,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30249,6 +31706,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30256,6 +31714,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30282,6 +31741,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30289,6 +31749,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30296,12 +31757,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30321,6 +31784,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30328,6 +31792,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30335,6 +31800,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30417,6 +31883,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30424,6 +31891,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30431,6 +31899,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30457,6 +31926,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30464,6 +31934,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30471,12 +31942,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30490,12 +31963,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30503,6 +31978,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30510,6 +31986,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30571,12 +32048,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30584,6 +32063,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30591,6 +32071,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30678,6 +32159,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30685,6 +32167,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30692,6 +32175,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30717,12 +32201,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30730,6 +32216,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30737,6 +32224,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30744,6 +32232,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -30808,6 +32297,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30815,6 +32305,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30822,6 +32313,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30829,6 +32321,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -30855,6 +32348,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30862,6 +32356,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30869,6 +32364,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -30876,12 +32372,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -30895,12 +32393,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -30908,6 +32408,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -30995,6 +32496,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31002,6 +32504,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31027,12 +32530,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31040,6 +32545,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31047,6 +32553,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -31110,6 +32617,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31117,6 +32625,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31124,6 +32633,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -31150,6 +32660,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31157,6 +32668,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31164,12 +32676,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31183,12 +32697,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageSubject from identityGovernance + description: Read-only. Nullable. Supports $filter (eq) on objectId and $expand query parameters. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles_GetAccessPackageSubject parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31196,6 +32712,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31260,6 +32777,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31267,6 +32785,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31293,6 +32812,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31300,12 +32820,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31319,12 +32841,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.accessPackageAssignmentResourceRoles.accessPackageSubject_GetConnectedOrganization parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31332,6 +32856,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentResourceRole @@ -31403,6 +32928,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31435,6 +32961,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31449,12 +32976,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get target from identityGovernance + description: The subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId. operationId: identityGovernance.entitlementManagement.accessPackageAssignments_GetTarget parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31518,6 +33047,7 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31544,12 +33074,14 @@ paths: in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31563,12 +33095,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageAssignments.target_GetConnectedOrganization parameters: - name: accessPackageAssignment-id in: path description: 'key: id of accessPackageAssignment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignment @@ -31662,6 +33196,7 @@ paths: in: path description: 'Usage: accessPackageId=''{accessPackageId}''' required: true + style: simple schema: type: string nullable: true @@ -31669,6 +33204,7 @@ paths: in: path description: 'Usage: incompatibleAccessPackageId=''{incompatibleAccessPackageId}''' required: true + style: simple schema: type: string nullable: true @@ -31701,6 +33237,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions' responses: @@ -31726,6 +33263,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalogs from identityGovernance + description: A container of access packages. operationId: identityGovernance.entitlementManagement_ListAccessPackageCatalogs parameters: - $ref: '#/components/parameters/top' @@ -31843,12 +33381,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageCatalogs from identityGovernance + description: A container of access packages. operationId: identityGovernance.entitlementManagement_GetAccessPackageCatalogs parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -31936,6 +33476,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -31962,12 +33503,14 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -31981,12 +33524,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: The roles in each resource in a catalog. Read-only. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32065,6 +33610,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32090,12 +33636,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: The roles in each resource in a catalog. Read-only. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32103,6 +33651,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32162,6 +33711,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32169,6 +33719,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32195,6 +33746,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32202,12 +33754,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32227,6 +33781,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32234,6 +33789,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32313,6 +33869,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32320,6 +33877,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32346,6 +33904,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32353,12 +33912,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32372,12 +33933,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32385,6 +33948,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32445,12 +34009,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32458,6 +34024,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32536,6 +34103,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32543,6 +34111,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32568,12 +34137,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32581,6 +34152,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32588,6 +34160,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32648,6 +34221,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32655,6 +34229,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32662,6 +34237,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32688,6 +34264,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32695,6 +34272,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32702,12 +34280,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -32721,12 +34301,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32734,6 +34316,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32821,6 +34404,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32828,6 +34412,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32853,12 +34438,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32866,6 +34453,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32873,6 +34461,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -32936,6 +34525,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32943,6 +34533,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32950,6 +34541,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -32976,6 +34568,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -32983,6 +34576,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -32990,12 +34584,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33015,6 +34611,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33022,6 +34619,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33029,6 +34627,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33111,6 +34710,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33118,6 +34718,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33125,6 +34726,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33151,6 +34753,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33158,6 +34761,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33165,12 +34769,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33184,12 +34790,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33197,6 +34805,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33204,6 +34813,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33265,12 +34875,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33278,6 +34890,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33285,6 +34898,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33363,6 +34977,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33370,6 +34985,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33377,6 +34993,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33402,12 +35019,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33415,6 +35034,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33422,6 +35042,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33429,6 +35050,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33490,6 +35112,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33497,6 +35120,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33504,6 +35128,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33511,6 +35136,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33537,6 +35163,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33544,6 +35171,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -33551,6 +35179,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -33558,12 +35187,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33583,6 +35214,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33683,6 +35315,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33714,6 +35347,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33721,6 +35355,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -33800,6 +35435,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33807,6 +35443,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -33833,6 +35470,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33840,12 +35478,14 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -33859,12 +35499,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33872,6 +35514,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -33932,12 +35575,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -33945,6 +35590,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34023,6 +35669,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34030,6 +35677,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34055,12 +35703,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34068,6 +35718,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34075,6 +35726,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34135,6 +35787,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34142,6 +35795,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34149,6 +35803,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34175,6 +35830,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34182,6 +35838,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34189,12 +35846,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34214,6 +35873,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34221,6 +35881,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34228,6 +35889,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34310,6 +35972,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34317,6 +35980,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34324,6 +35988,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34350,6 +36015,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34357,6 +36023,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34364,12 +36031,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34383,12 +36052,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34396,6 +36067,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34403,6 +36075,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34464,12 +36137,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34477,6 +36152,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34484,6 +36160,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34571,6 +36248,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34578,6 +36256,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34585,6 +36264,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34610,12 +36290,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34623,6 +36305,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34630,6 +36313,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34637,6 +36321,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -34701,6 +36386,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34708,6 +36394,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34715,6 +36402,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34722,6 +36410,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -34748,6 +36437,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34755,6 +36445,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34762,6 +36453,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34769,12 +36461,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34794,6 +36488,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34801,6 +36496,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34808,6 +36504,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34815,6 +36512,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -34900,6 +36598,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34907,6 +36606,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34914,6 +36614,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34921,6 +36622,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -34947,6 +36649,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -34954,6 +36657,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -34961,6 +36665,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -34968,12 +36673,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -34987,12 +36694,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35000,6 +36709,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35007,6 +36717,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -35014,6 +36725,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35076,12 +36788,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35089,6 +36803,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35176,6 +36891,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35183,6 +36899,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35208,12 +36925,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35221,6 +36940,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35228,6 +36948,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35291,6 +37012,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35298,6 +37020,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35305,6 +37028,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35331,6 +37055,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35338,6 +37063,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35345,12 +37071,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35370,6 +37098,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35377,6 +37106,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35384,6 +37114,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35466,6 +37197,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35473,6 +37205,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35480,6 +37213,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35506,6 +37240,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35513,6 +37248,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35520,12 +37256,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35539,12 +37277,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35552,6 +37292,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35559,6 +37300,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35620,12 +37362,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35633,6 +37377,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35640,6 +37385,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35718,6 +37464,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35725,6 +37472,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35732,6 +37480,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35757,12 +37506,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35770,6 +37521,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35777,6 +37529,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35784,6 +37537,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -35845,6 +37599,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35852,6 +37607,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35859,6 +37615,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35866,6 +37623,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -35892,6 +37650,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35899,6 +37658,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35906,6 +37666,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35913,12 +37674,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -35938,6 +37701,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -35945,6 +37709,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -35952,6 +37717,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -35959,6 +37725,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -36044,6 +37811,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36051,6 +37819,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -36058,6 +37827,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36065,6 +37835,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -36091,6 +37862,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36098,6 +37870,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -36105,6 +37878,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36112,12 +37886,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36131,12 +37907,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResources.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36144,6 +37922,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -36151,6 +37930,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36158,6 +37938,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -36226,6 +38007,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36313,6 +38095,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36344,6 +38127,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36351,6 +38135,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36413,6 +38198,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36420,6 +38206,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36446,6 +38233,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36453,12 +38241,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36478,6 +38268,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36485,6 +38276,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36564,6 +38356,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36571,6 +38364,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36597,6 +38391,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36604,12 +38399,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36623,12 +38420,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36636,6 +38435,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36696,12 +38496,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36709,6 +38511,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36787,6 +38590,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36794,6 +38598,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36819,12 +38624,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36832,6 +38639,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36839,6 +38647,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -36899,6 +38708,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36906,6 +38716,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36913,6 +38724,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -36939,6 +38751,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36946,6 +38759,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36953,12 +38767,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -36978,6 +38794,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -36985,6 +38802,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -36992,6 +38810,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37074,6 +38893,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37081,6 +38901,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37088,6 +38909,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37114,6 +38936,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37121,6 +38944,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37128,12 +38952,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37147,12 +38973,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37160,6 +38988,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37167,6 +38996,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37228,12 +39058,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37241,6 +39073,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37248,6 +39081,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37335,6 +39169,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37342,6 +39177,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37349,6 +39185,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37374,12 +39211,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37387,6 +39226,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37394,6 +39234,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37401,6 +39242,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37465,6 +39307,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37472,6 +39315,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37479,6 +39323,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37486,6 +39331,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37512,6 +39358,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37519,6 +39366,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37526,6 +39374,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -37533,12 +39382,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37552,12 +39403,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37565,6 +39418,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37652,6 +39506,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37659,6 +39514,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37684,12 +39540,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37697,6 +39555,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37704,6 +39563,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37767,6 +39627,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37774,6 +39635,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37781,6 +39643,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37807,6 +39670,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37814,6 +39678,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -37821,12 +39686,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -37840,12 +39707,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_ListAccessPackages parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37949,6 +39818,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37974,12 +39844,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: The access packages in this catalog. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs_GetAccessPackages parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -37987,6 +39859,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38088,6 +39961,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38095,6 +39969,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38121,6 +39996,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38128,12 +40004,14 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38147,12 +40025,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38160,6 +40040,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38272,6 +40153,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38279,6 +40161,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38304,12 +40187,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38317,6 +40202,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38324,6 +40210,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38410,6 +40297,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38417,6 +40305,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38424,6 +40313,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38450,6 +40340,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38457,6 +40348,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38464,12 +40356,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -38483,12 +40377,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38496,6 +40392,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38503,6 +40400,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38609,6 +40507,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38616,6 +40515,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38623,6 +40523,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38715,12 +40616,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_ListCustomExtensionHandlers parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38728,6 +40631,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38735,6 +40639,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38804,6 +40709,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38811,6 +40717,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38818,6 +40725,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38843,12 +40751,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies_GetCustomExtensionHandlers parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38856,6 +40766,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38863,6 +40774,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38870,6 +40782,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -38928,6 +40841,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38935,6 +40849,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38942,6 +40857,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38949,6 +40865,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -38975,6 +40892,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -38982,6 +40900,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -38989,6 +40908,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -38996,12 +40916,14 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39015,12 +40937,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtension from identityGovernance + description: Indicates which custom workflow extension will be executed at this stage. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageAssignmentPolicies.customExtensionHandlers_GetCustomExtension parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39028,6 +40952,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39035,6 +40960,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -39042,6 +40968,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -39097,6 +41024,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39104,6 +41032,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39197,6 +41126,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39204,6 +41134,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39284,6 +41215,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39291,6 +41223,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39322,6 +41255,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39329,6 +41263,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39336,6 +41271,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39404,6 +41340,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39411,6 +41348,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39418,6 +41356,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39444,6 +41383,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39451,6 +41391,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39458,12 +41399,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39477,12 +41420,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39490,6 +41435,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39497,6 +41443,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39557,6 +41504,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39564,6 +41512,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39571,6 +41520,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39597,6 +41547,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39604,6 +41555,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39611,12 +41563,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39636,6 +41590,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39643,6 +41598,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39650,6 +41606,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39732,6 +41689,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39739,6 +41697,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39746,6 +41705,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39772,6 +41732,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39779,6 +41740,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39786,12 +41748,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -39805,12 +41769,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39818,6 +41784,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39825,6 +41792,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39886,12 +41854,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39899,6 +41869,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39906,6 +41877,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -39984,6 +41956,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -39991,6 +41964,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -39998,6 +41972,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40023,12 +41998,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40036,6 +42013,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40043,6 +42021,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40050,6 +42029,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -40111,6 +42091,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40118,6 +42099,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40125,6 +42107,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40132,6 +42115,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -40158,6 +42142,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40165,6 +42150,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40172,6 +42158,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40179,12 +42166,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40198,12 +42187,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40211,6 +42202,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40218,6 +42210,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40305,6 +42298,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40312,6 +42306,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40319,6 +42314,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40344,12 +42340,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40357,6 +42355,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40364,6 +42363,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40371,6 +42371,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40435,6 +42436,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40442,6 +42444,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40449,6 +42452,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40456,6 +42460,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40482,6 +42487,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40489,6 +42495,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40496,6 +42503,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40503,12 +42511,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40528,6 +42538,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40535,6 +42546,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40542,6 +42554,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40549,6 +42562,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40634,6 +42648,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40641,6 +42656,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40648,6 +42664,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40655,6 +42672,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40681,6 +42699,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40688,6 +42707,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40695,6 +42715,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40702,12 +42723,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -40721,12 +42744,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40734,6 +42759,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40741,6 +42767,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40748,6 +42775,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40810,12 +42838,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40823,6 +42853,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40830,6 +42861,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40837,6 +42869,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40915,6 +42948,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40922,6 +42956,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40929,6 +42964,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40936,6 +42972,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40961,12 +42998,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -40974,6 +43013,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -40981,6 +43021,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -40988,6 +43029,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -40995,6 +43037,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -41057,6 +43100,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41064,6 +43108,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41071,6 +43116,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41078,6 +43124,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -41085,6 +43132,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -41111,6 +43159,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41118,6 +43167,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41125,6 +43175,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41132,6 +43183,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -41139,12 +43191,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41164,6 +43218,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41171,6 +43226,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41178,6 +43234,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41241,6 +43298,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41248,6 +43306,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41255,6 +43314,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41281,6 +43341,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41288,6 +43349,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41295,12 +43357,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41320,6 +43384,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41327,6 +43392,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41334,6 +43400,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41416,6 +43483,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41423,6 +43491,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41430,6 +43499,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41456,6 +43526,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41463,6 +43534,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41470,12 +43542,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41489,12 +43563,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41502,6 +43578,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41509,6 +43586,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41570,12 +43648,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41583,6 +43663,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41590,6 +43671,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41668,6 +43750,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41675,6 +43758,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41682,6 +43766,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41707,12 +43792,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41720,6 +43807,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41727,6 +43815,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41734,6 +43823,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -41795,6 +43885,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41802,6 +43893,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41809,6 +43901,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41816,6 +43909,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -41842,6 +43936,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41849,6 +43944,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41856,6 +43952,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41863,12 +43960,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -41888,6 +43987,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -41895,6 +43995,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -41902,6 +44003,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -41909,6 +44011,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -41994,6 +44097,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42001,6 +44105,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42008,6 +44113,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42015,6 +44121,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42041,6 +44148,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42048,6 +44156,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42055,6 +44164,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42062,12 +44172,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42081,12 +44193,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42094,6 +44208,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42101,6 +44216,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42108,6 +44224,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42170,12 +44287,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42183,6 +44302,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42190,6 +44310,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42197,6 +44318,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42284,6 +44406,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42291,6 +44414,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42298,6 +44422,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42305,6 +44430,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42330,12 +44456,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42343,6 +44471,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42350,6 +44479,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42357,6 +44487,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42364,6 +44495,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -42429,6 +44561,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42436,6 +44569,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42443,6 +44577,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42450,6 +44585,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42457,6 +44593,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -42483,6 +44620,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42490,6 +44628,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42497,6 +44636,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42504,6 +44644,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -42511,12 +44652,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42530,12 +44673,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42543,6 +44688,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42550,6 +44696,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42637,6 +44784,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42644,6 +44792,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42651,6 +44800,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42676,12 +44826,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42689,6 +44841,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42696,6 +44849,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42703,6 +44857,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -42767,6 +44922,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42774,6 +44930,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42781,6 +44938,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42788,6 +44946,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -42814,6 +44973,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42821,6 +44981,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42828,6 +44989,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -42835,12 +44997,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -42854,12 +45018,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackagesIncompatibleWith from identityGovernance + description: The access packages that are incompatible with this package. Read-only. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListAccessPackagesIncompatibleGraphWPre parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42867,6 +45033,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42965,12 +45132,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackagesIncompatibleWith from identityGovernance + description: The access packages that are incompatible with this package. Read-only. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_GetAccessPackagesIncompatibleGraphWPre parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -42978,6 +45147,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -42985,6 +45155,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43085,12 +45256,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get incompatibleAccessPackages from identityGovernance + description: The access packages whose assigned users are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListIncompatibleAccessPackages parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43098,6 +45271,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43202,6 +45376,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43209,6 +45384,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43216,17 +45392,21 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -43240,12 +45420,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of incompatibleAccessPackages from identityGovernance + description: The access packages whose assigned users are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListIncompatibleAccessPackagesGraphBPreRef parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43253,6 +45435,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43311,6 +45494,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43318,18 +45502,12 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -43341,12 +45519,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get incompatibleGroups from identityGovernance + description: The groups whose members are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListIncompatibleGroups parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43354,6 +45534,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43628,6 +45809,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43635,6 +45817,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43642,17 +45825,21 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -43666,12 +45853,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of incompatibleGroups from identityGovernance + description: The groups whose members are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackageCatalogs.accessPackages_ListIncompatibleGroupsGraphBPreRef parameters: - name: accessPackageCatalog-id in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43679,6 +45868,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43821,6 +46011,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43828,18 +46019,12 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -43857,6 +46042,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43864,6 +46050,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -43896,6 +46083,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43903,6 +46091,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions' responses: @@ -43934,6 +46123,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -43966,6 +46156,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -44051,6 +46242,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -44082,6 +46274,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -44089,6 +46282,7 @@ paths: in: path description: 'key: id of customAccessPackageWorkflowExtension' required: true + style: simple schema: type: string x-ms-docs-key-type: customAccessPackageWorkflowExtension @@ -44143,6 +46337,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -44150,6 +46345,7 @@ paths: in: path description: 'key: id of customAccessPackageWorkflowExtension' required: true + style: simple schema: type: string x-ms-docs-key-type: customAccessPackageWorkflowExtension @@ -44176,6 +46372,7 @@ paths: in: path description: 'key: id of accessPackageCatalog' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageCatalog @@ -44183,12 +46380,14 @@ paths: in: path description: 'key: id of customAccessPackageWorkflowExtension' required: true + style: simple schema: type: string x-ms-docs-key-type: customAccessPackageWorkflowExtension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44226,6 +46425,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironments from identityGovernance + description: A reference to the geolocation environment in which a resource is located. operationId: identityGovernance.entitlementManagement_ListAccessPackageResourceEnvironments parameters: - $ref: '#/components/parameters/top' @@ -44338,12 +46538,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironments from identityGovernance + description: A reference to the geolocation environment in which a resource is located. operationId: identityGovernance.entitlementManagement_GetAccessPackageResourceEnvironments parameters: - name: accessPackageResourceEnvironment-id in: path description: 'key: id of accessPackageResourceEnvironment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceEnvironment @@ -44408,6 +46610,7 @@ paths: in: path description: 'key: id of accessPackageResourceEnvironment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceEnvironment @@ -44434,12 +46637,14 @@ paths: in: path description: 'key: id of accessPackageResourceEnvironment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceEnvironment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44453,12 +46658,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Required. operationId: identityGovernance.entitlementManagement.accessPackageResourceEnvironments_ListAccessPackageResources parameters: - name: accessPackageResourceEnvironment-id in: path description: 'key: id of accessPackageResourceEnvironment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceEnvironment @@ -44554,12 +46761,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: Read-only. Required. operationId: identityGovernance.entitlementManagement.accessPackageResourceEnvironments_GetAccessPackageResources parameters: - name: accessPackageResourceEnvironment-id in: path description: 'key: id of accessPackageResourceEnvironment' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceEnvironment @@ -44567,6 +46776,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -44641,6 +46851,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRequests from identityGovernance + description: Represents a request to add or remove a resource to or from a catalog respectively. operationId: identityGovernance.entitlementManagement_ListAccessPackageResourceRequests parameters: - $ref: '#/components/parameters/top' @@ -44749,12 +46960,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRequests from identityGovernance + description: Represents a request to add or remove a resource to or from a catalog respectively. operationId: identityGovernance.entitlementManagement_GetAccessPackageResourceRequests parameters: - name: accessPackageResourceRequest-id in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest @@ -44823,6 +47036,7 @@ paths: in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest @@ -44849,12 +47063,14 @@ paths: in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -44874,6 +47090,7 @@ paths: in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest @@ -44945,12 +47162,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get requestor from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests_GetRequestor parameters: - name: accessPackageResourceRequest-id in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest @@ -45014,6 +47233,7 @@ paths: in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest @@ -45040,12 +47260,14 @@ paths: in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45059,12 +47281,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.accessPackageResourceRequests.requestor_GetConnectedOrganization parameters: - name: accessPackageResourceRequest-id in: path description: 'key: id of accessPackageResourceRequest' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRequest @@ -45128,6 +47352,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: 'A reference to both a scope within a resource, and a role in that resource for that scope.' operationId: identityGovernance.entitlementManagement_ListAccessPackageResourceRoleScopes parameters: - $ref: '#/components/parameters/top' @@ -45224,12 +47449,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoleScopes from identityGovernance + description: 'A reference to both a scope within a resource, and a role in that resource for that scope.' operationId: identityGovernance.entitlementManagement_GetAccessPackageResourceRoleScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45294,6 +47521,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45320,12 +47548,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45339,12 +47569,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45403,6 +47635,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45429,12 +47662,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45454,6 +47689,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45530,6 +47766,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45556,12 +47793,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45575,12 +47814,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45640,12 +47881,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45724,6 +47967,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45749,12 +47993,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45762,6 +48008,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -45821,6 +48068,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45828,6 +48076,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -45854,6 +48103,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45861,12 +48111,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -45880,12 +48132,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45973,6 +48227,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -45998,12 +48253,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46011,6 +48268,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46073,6 +48331,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46080,6 +48339,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46106,6 +48366,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46113,12 +48374,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46138,6 +48401,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46145,6 +48409,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46224,6 +48489,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46231,6 +48497,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46257,6 +48524,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46264,12 +48532,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46283,12 +48553,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46296,6 +48568,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46356,12 +48629,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46369,6 +48644,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46447,6 +48723,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46454,6 +48731,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46479,12 +48757,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46492,6 +48772,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46499,6 +48780,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -46559,6 +48841,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46566,6 +48849,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46573,6 +48857,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -46599,6 +48884,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46606,6 +48892,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -46613,12 +48900,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46638,6 +48927,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46699,6 +48989,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46725,12 +49016,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46750,6 +49043,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46826,6 +49120,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46852,12 +49147,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -46871,12 +49168,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -46936,12 +49235,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47020,6 +49321,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47045,12 +49347,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47058,6 +49362,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47117,6 +49422,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47124,6 +49430,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47150,6 +49457,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47157,12 +49465,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47182,6 +49492,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47189,6 +49500,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47268,6 +49580,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47275,6 +49588,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47301,6 +49615,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47308,12 +49623,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47327,12 +49644,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47340,6 +49659,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47400,12 +49720,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47413,6 +49735,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47500,6 +49823,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47507,6 +49831,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47532,12 +49857,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47545,6 +49872,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47552,6 +49880,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -47615,6 +49944,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47622,6 +49952,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47629,6 +49960,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -47655,6 +49987,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47662,6 +49995,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -47669,12 +50003,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47688,12 +50024,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47781,6 +50119,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47806,12 +50145,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageResourceRoleScope-id in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47819,6 +50160,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -47881,6 +50223,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47888,6 +50231,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -47914,6 +50258,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -47921,12 +50266,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -47940,6 +50287,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: A reference to a resource associated with an access package catalog. operationId: identityGovernance.entitlementManagement_ListAccessPackageResources parameters: - $ref: '#/components/parameters/top' @@ -48056,12 +50404,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResources from identityGovernance + description: A reference to a resource associated with an access package catalog. operationId: identityGovernance.entitlementManagement_GetAccessPackageResources parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48138,6 +50488,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48164,12 +50515,14 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -48183,12 +50536,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48248,12 +50603,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources_ListAccessPackageResourceRoles parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48332,6 +50689,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48357,12 +50715,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetAccessPackageResourceRoles parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48370,6 +50730,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48429,6 +50790,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48436,6 +50798,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48462,6 +50825,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48469,12 +50833,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -48494,6 +50860,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48501,6 +50868,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48580,6 +50948,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48587,6 +50956,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48613,6 +50983,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48620,12 +50991,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -48639,12 +51012,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48652,6 +51027,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48712,12 +51088,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48725,6 +51103,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48812,6 +51191,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48819,6 +51199,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48844,12 +51225,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48857,6 +51240,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48864,6 +51248,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -48927,6 +51312,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48934,6 +51320,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48941,6 +51328,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -48967,6 +51355,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -48974,6 +51363,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -48981,12 +51371,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49006,6 +51398,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49013,6 +51406,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -49020,6 +51414,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49102,6 +51497,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49109,6 +51505,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -49116,6 +51513,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49142,6 +51540,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49149,6 +51548,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -49156,12 +51556,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49175,12 +51577,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceRoles.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49188,6 +51592,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -49195,6 +51600,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49256,12 +51662,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources_ListAccessPackageResourceScopes parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49349,6 +51757,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49374,12 +51783,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources_GetAccessPackageResourceScopes parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49387,6 +51798,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49449,6 +51861,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49456,6 +51869,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49482,6 +51896,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49489,12 +51904,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49514,6 +51931,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49521,6 +51939,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49600,6 +52019,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49607,6 +52027,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49633,6 +52054,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49640,12 +52062,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -49659,12 +52083,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49672,6 +52098,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49732,12 +52159,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49745,6 +52174,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49823,6 +52253,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49830,6 +52261,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49855,12 +52287,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49868,6 +52302,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49875,6 +52310,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -49935,6 +52371,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49942,6 +52379,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49949,6 +52387,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -49975,6 +52414,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -49982,6 +52422,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -49989,12 +52430,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50014,6 +52457,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -50021,6 +52465,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -50028,6 +52473,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -50110,6 +52556,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -50117,6 +52564,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -50124,6 +52572,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -50150,6 +52599,7 @@ paths: in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -50157,6 +52607,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -50164,12 +52615,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50183,12 +52636,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackageResources.accessPackageResourceScopes.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackageResource-id in: path description: 'key: id of accessPackageResource' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResource @@ -50196,6 +52651,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -50203,6 +52659,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -50264,6 +52721,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: Represents access package objects. operationId: identityGovernance.entitlementManagement_ListAccessPackages parameters: - $ref: '#/components/parameters/top' @@ -50383,12 +52841,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackages from identityGovernance + description: Represents access package objects. operationId: identityGovernance.entitlementManagement_GetAccessPackages parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50484,6 +52944,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50510,12 +52971,14 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50529,12 +52992,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages_ListAccessPackageAssignmentPolicies parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50647,6 +53112,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50672,12 +53138,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageAssignmentPolicies from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages_GetAccessPackageAssignmentPolicies parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50685,6 +53153,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -50768,6 +53237,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50775,6 +53245,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -50801,6 +53272,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50808,12 +53280,14 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -50827,12 +53301,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackage from identityGovernance + description: The access package with this policy. Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_GetAccessPackage parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50840,6 +53316,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -50940,6 +53417,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -50947,6 +53425,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51034,12 +53513,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_ListCustomExtensionHandlers parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51047,6 +53528,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51116,6 +53598,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51123,6 +53606,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51148,12 +53632,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtensionHandlers from identityGovernance + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies_GetCustomExtensionHandlers parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51161,6 +53647,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51168,6 +53655,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -51225,6 +53713,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51232,6 +53721,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51239,6 +53729,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -51265,6 +53756,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51272,6 +53764,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51279,12 +53772,14 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51298,12 +53793,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get customExtension from identityGovernance + description: Indicates which custom workflow extension will be executed at this stage. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageAssignmentPolicies.customExtensionHandlers_GetCustomExtension parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51311,6 +53808,7 @@ paths: in: path description: 'key: id of accessPackageAssignmentPolicy' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageAssignmentPolicy @@ -51318,6 +53816,7 @@ paths: in: path description: 'key: id of customExtensionHandler' required: true + style: simple schema: type: string x-ms-docs-key-type: customExtensionHandler @@ -51373,6 +53872,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51461,6 +53961,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51541,6 +54042,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51572,6 +54074,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51579,6 +54082,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -51645,6 +54149,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51652,6 +54157,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -51678,6 +54184,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51685,12 +54192,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51704,12 +54213,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRole from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes_GetAccessPackageResourceRole parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51717,6 +54228,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -51776,6 +54288,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51783,6 +54296,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -51809,6 +54323,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51816,12 +54331,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51841,6 +54358,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51848,6 +54366,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -51927,6 +54446,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51934,6 +54454,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -51960,6 +54481,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51967,12 +54489,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -51986,12 +54510,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -51999,6 +54525,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52059,12 +54586,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52072,6 +54601,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52150,6 +54680,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52157,6 +54688,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52182,12 +54714,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52195,6 +54729,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52202,6 +54737,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -52262,6 +54798,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52269,6 +54806,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52276,6 +54814,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -52302,6 +54841,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52309,6 +54849,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52316,12 +54857,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52335,12 +54878,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52348,6 +54893,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52435,6 +54981,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52442,6 +54989,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52467,12 +55015,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52480,6 +55030,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52487,6 +55038,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -52550,6 +55102,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52557,6 +55110,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52564,6 +55118,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -52590,6 +55145,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52597,6 +55153,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52604,12 +55161,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52629,6 +55188,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52636,6 +55196,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52643,6 +55204,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -52725,6 +55287,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52732,6 +55295,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52739,6 +55303,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -52765,6 +55330,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52772,6 +55338,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52779,12 +55346,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -52798,12 +55367,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52811,6 +55382,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52818,6 +55390,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -52879,12 +55452,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52892,6 +55467,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52899,6 +55475,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -52977,6 +55554,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -52984,6 +55562,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -52991,6 +55570,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -53016,12 +55596,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceRole.accessPackageResource.accessPackageResourceScopes.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53029,6 +55611,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53036,6 +55619,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -53043,6 +55627,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -53104,6 +55689,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53111,6 +55697,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53118,6 +55705,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -53125,6 +55713,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -53151,6 +55740,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53158,6 +55748,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53165,6 +55756,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -53172,12 +55764,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53197,6 +55791,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53204,6 +55799,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53266,6 +55862,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53273,6 +55870,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53299,6 +55897,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53306,12 +55905,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53331,6 +55932,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53338,6 +55940,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53417,6 +56020,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53424,6 +56028,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53450,6 +56055,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53457,12 +56063,14 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53476,12 +56084,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53489,6 +56099,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53549,12 +56160,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceRoles parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53562,6 +56175,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53640,6 +56254,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53647,6 +56262,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53672,12 +56288,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceRoles from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceRoles parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53685,6 +56303,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53692,6 +56311,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -53752,6 +56372,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53759,6 +56380,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53766,6 +56388,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -53792,6 +56415,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53799,6 +56423,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53806,12 +56431,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -53831,6 +56458,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53838,6 +56466,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53845,6 +56474,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -53927,6 +56557,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53934,6 +56565,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53941,6 +56573,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -53967,6 +56600,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -53974,6 +56608,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -53981,12 +56616,14 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54000,12 +56637,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceEnvironment from identityGovernance + description: Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceEnvironment parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54013,6 +56652,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54020,6 +56660,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -54081,12 +56722,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54094,6 +56737,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54101,6 +56745,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -54188,6 +56833,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54195,6 +56841,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54202,6 +56849,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -54227,12 +56875,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource.accessPackageResourceRoles.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54240,6 +56890,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54247,6 +56898,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -54254,6 +56906,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -54318,6 +56971,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54325,6 +56979,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54332,6 +56987,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -54339,6 +56995,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -54365,6 +57022,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54372,6 +57030,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54379,6 +57038,7 @@ paths: in: path description: 'key: id of accessPackageResourceRole' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRole @@ -54386,12 +57046,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54405,12 +57067,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_ListAccessPackageResourceScopes parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54418,6 +57082,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54505,6 +57170,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54512,6 +57178,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54537,12 +57204,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackageResourceScopes from identityGovernance + description: Read-only. Nullable. Supports $expand. operationId: identityGovernance.entitlementManagement.accessPackages.accessPackageResourceRoleScopes.accessPackageResourceScope.accessPackageResource_GetAccessPackageResourceScopes parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54550,6 +57219,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54557,6 +57227,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -54620,6 +57291,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54627,6 +57299,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54634,6 +57307,7 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope @@ -54660,6 +57334,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54667,6 +57342,7 @@ paths: in: path description: 'key: id of accessPackageResourceRoleScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceRoleScope @@ -54674,12 +57350,14 @@ paths: in: path description: 'key: id of accessPackageResourceScope' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageResourceScope - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -54693,12 +57371,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackagesIncompatibleWith from identityGovernance + description: The access packages that are incompatible with this package. Read-only. operationId: identityGovernance.entitlementManagement.accessPackages_ListAccessPackagesIncompatibleGraphWPre parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54797,12 +57477,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get accessPackagesIncompatibleWith from identityGovernance + description: The access packages that are incompatible with this package. Read-only. operationId: identityGovernance.entitlementManagement.accessPackages_GetAccessPackagesIncompatibleGraphWPre parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54810,6 +57492,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -54904,12 +57587,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get incompatibleAccessPackages from identityGovernance + description: The access packages whose assigned users are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackages_ListIncompatibleAccessPackages parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55014,6 +57699,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55021,17 +57707,21 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -55045,12 +57735,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of incompatibleAccessPackages from identityGovernance + description: The access packages whose assigned users are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackages_ListIncompatibleAccessPackagesGraphBPreRef parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55109,18 +57801,12 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -55132,12 +57818,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get incompatibleGroups from identityGovernance + description: The groups whose members are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackages_ListIncompatibleGroups parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55412,6 +58100,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55419,17 +58108,21 @@ paths: in: path description: 'key: id of group' required: true + style: simple schema: type: string x-ms-docs-key-type: group - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -55443,12 +58136,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get ref of incompatibleGroups from identityGovernance + description: The groups whose members are ineligible to be assigned this access package. operationId: identityGovernance.entitlementManagement.accessPackages_ListIncompatibleGroupsGraphBPreRef parameters: - name: accessPackage-id in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55591,18 +58286,12 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true + $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success @@ -55620,6 +58309,7 @@ paths: in: path description: 'key: id of accessPackage' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackage @@ -55652,6 +58342,7 @@ paths: in: path description: 'Usage: on=''{on}''' required: true + style: simple schema: $ref: '#/components/schemas/microsoft.graph.accessPackageFilterByCurrentUserOptions' responses: @@ -55701,6 +58392,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganizations from identityGovernance + description: Represents references to a directory or domain of another organization whose users can request access. operationId: identityGovernance.entitlementManagement_ListConnectedOrganizations parameters: - $ref: '#/components/parameters/top' @@ -55809,12 +58501,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganizations from identityGovernance + description: Represents references to a directory or domain of another organization whose users can request access. operationId: identityGovernance.entitlementManagement_GetConnectedOrganizations parameters: - name: connectedOrganization-id in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -55883,6 +58577,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -55909,12 +58604,14 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -55934,6 +58631,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56001,6 +58699,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56032,6 +58731,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56039,17 +58739,21 @@ paths: in: path description: 'key: id of directoryObject' required: true + style: simple schema: type: string x-ms-docs-key-type: directoryObject - name: If-Match in: header description: ETag + style: simple schema: type: string - name: '@id' in: query description: Delete Uri + style: form + explode: false schema: type: string responses: @@ -56069,6 +58773,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56111,376 +58816,376 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + requestBody: + $ref: '#/components/requestBodies/refPostBody' + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/microsoft.graph.getByIds': + post: + tags: + - identityGovernance.Actions + summary: Invoke action getByIds + operationId: identityGovernance.entitlementManagement.connectedOrganizations.externalSponsors_getGraphBPreIds + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + ids: + type: array + items: + type: string + types: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of directoryObject + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/microsoft.graph.getUserOwnedObjects': + post: + tags: + - identityGovernance.Actions + summary: Invoke action getUserOwnedObjects + operationId: identityGovernance.entitlementManagement.connectedOrganizations.externalSponsors_getUserOwnedObjects + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization requestBody: - description: New navigation property ref value + description: Action parameters content: application/json: schema: type: object + properties: + userId: + type: string + nullable: true + type: + type: string + nullable: true additionalProperties: type: object required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/microsoft.graph.validateProperties': + post: + tags: + - identityGovernance.Actions + summary: Invoke action validateProperties + operationId: identityGovernance.entitlementManagement.connectedOrganizations.externalSponsors_validateProperties + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + entityType: + type: string + nullable: true + displayName: + type: string + nullable: true + mailNickname: + type: string + nullable: true + onBehalfOfUserId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + format: uuid + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors': + get: + tags: + - identityGovernance.entitlementManagement + summary: Get internalSponsors from identityGovernance + operationId: identityGovernance.entitlementManagement.connectedOrganizations_ListInternalSponsors + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - deletedDateTime + - deletedDateTime desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - deletedDateTime + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + $ref: '#/components/responses/microsoft.graph.directoryObjectCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - identityGovernance.entitlementManagement + summary: Create new navigation property to internalSponsors for identityGovernance + operationId: identityGovernance.entitlementManagement.connectedOrganizations_CreateInternalSponsors + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref': + delete: + tags: + - identityGovernance.entitlementManagement + summary: Delete ref of navigation property internalSponsors for identityGovernance + operationId: identityGovernance.entitlementManagement.connectedOrganizations_DeleteInternalSponsorsGraphBPreRef + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + - name: directoryObject-id + in: path + description: 'key: id of directoryObject' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: directoryObject + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + - name: '@id' + in: query + description: Delete Uri + style: form + explode: false + schema: + type: string responses: '204': description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/microsoft.graph.getByIds': + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref': + get: + tags: + - identityGovernance.entitlementManagement + summary: Get ref of internalSponsors from identityGovernance + operationId: identityGovernance.entitlementManagement.connectedOrganizations_ListInternalSponsorsGraphBPreRef + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - deletedDateTime + - deletedDateTime desc + type: string + responses: + '200': + $ref: '#/components/responses/StringCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - identityGovernance.entitlementManagement + summary: Create new navigation property ref to internalSponsors for identityGovernance + operationId: identityGovernance.entitlementManagement.connectedOrganizations_CreateInternalSponsorsGraphBPreRef + parameters: + - name: connectedOrganization-id + in: path + description: 'key: id of connectedOrganization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: connectedOrganization + requestBody: + $ref: '#/components/requestBodies/refPostBody' + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/microsoft.graph.getByIds': post: tags: - identityGovernance.Actions summary: Invoke action getByIds - operationId: identityGovernance.entitlementManagement.connectedOrganizations.externalSponsors_getGraphBPreIds - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - ids: - type: array - items: - type: string - types: - type: array - items: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of directoryObject - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/microsoft.graph.getUserOwnedObjects': - post: - tags: - - identityGovernance.Actions - summary: Invoke action getUserOwnedObjects - operationId: identityGovernance.entitlementManagement.connectedOrganizations.externalSponsors_getUserOwnedObjects - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - userId: - type: string - nullable: true - type: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/microsoft.graph.validateProperties': - post: - tags: - - identityGovernance.Actions - summary: Invoke action validateProperties - operationId: identityGovernance.entitlementManagement.connectedOrganizations.externalSponsors_validateProperties - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - entityType: - type: string - nullable: true - displayName: - type: string - nullable: true - mailNickname: - type: string - nullable: true - onBehalfOfUserId: - pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' - type: string - format: uuid - nullable: true - additionalProperties: - type: object - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors': - get: - tags: - - identityGovernance.entitlementManagement - summary: Get internalSponsors from identityGovernance - operationId: identityGovernance.entitlementManagement.connectedOrganizations_ListInternalSponsors - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - deletedDateTime - - deletedDateTime desc - type: string - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - deletedDateTime - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - $ref: '#/components/responses/microsoft.graph.directoryObjectCollectionResponse' - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - identityGovernance.entitlementManagement - summary: Create new navigation property to internalSponsors for identityGovernance - operationId: identityGovernance.entitlementManagement.connectedOrganizations_CreateInternalSponsors - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref': - delete: - tags: - - identityGovernance.entitlementManagement - summary: Delete ref of navigation property internalSponsors for identityGovernance - operationId: identityGovernance.entitlementManagement.connectedOrganizations_DeleteInternalSponsorsGraphBPreRef - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - - name: directoryObject-id - in: path - description: 'key: id of directoryObject' - required: true - schema: - type: string - x-ms-docs-key-type: directoryObject - - name: If-Match - in: header - description: ETag - schema: - type: string - - name: '@id' - in: query - description: Delete Uri - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref': - get: - tags: - - identityGovernance.entitlementManagement - summary: Get ref of internalSponsors from identityGovernance - operationId: identityGovernance.entitlementManagement.connectedOrganizations_ListInternalSponsorsGraphBPreRef - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - deletedDateTime - - deletedDateTime desc - type: string - responses: - '200': - $ref: '#/components/responses/StringCollectionResponse' - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - identityGovernance.entitlementManagement - summary: Create new navigation property ref to internalSponsors for identityGovernance - operationId: identityGovernance.entitlementManagement.connectedOrganizations_CreateInternalSponsorsGraphBPreRef - parameters: - - name: connectedOrganization-id - in: path - description: 'key: id of connectedOrganization' - required: true - schema: - type: string - x-ms-docs-key-type: connectedOrganization - requestBody: - description: New navigation property ref value - content: - application/json: - schema: - type: object - additionalProperties: - type: object - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/microsoft.graph.getByIds': - post: - tags: - - identityGovernance.Actions - summary: Invoke action getByIds - operationId: identityGovernance.entitlementManagement.connectedOrganizations.internalSponsors_getGraphBPreIds + operationId: identityGovernance.entitlementManagement.connectedOrganizations.internalSponsors_getGraphBPreIds parameters: - name: connectedOrganization-id in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56532,6 +59237,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56572,6 +59278,7 @@ paths: in: path description: 'key: id of connectedOrganization' required: true + style: simple schema: type: string x-ms-docs-key-type: connectedOrganization @@ -56610,6 +59317,7 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get settings from identityGovernance + description: Represents the settings that control the behavior of Azure AD entitlement management. operationId: identityGovernance.entitlementManagement_GetSettings parameters: - name: $select @@ -56675,6 +59383,7 @@ paths: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -56803,6 +59512,7 @@ paths: in: path description: 'key: id of accessPackageSubject' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageSubject @@ -56866,6 +59576,7 @@ paths: in: path description: 'key: id of accessPackageSubject' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageSubject @@ -56892,12 +59603,14 @@ paths: in: path description: 'key: id of accessPackageSubject' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageSubject - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -56911,12 +59624,14 @@ paths: tags: - identityGovernance.entitlementManagement summary: Get connectedOrganization from identityGovernance + description: The connected organization of the subject. Read-only. Nullable. operationId: identityGovernance.entitlementManagement.subjects_GetConnectedOrganization parameters: - name: accessPackageSubject-id in: path description: 'key: id of accessPackageSubject' required: true + style: simple schema: type: string x-ms-docs-key-type: accessPackageSubject @@ -56975,12 +59690,12 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /identityGovernance/termsOfUse: + /identityGovernance/lifecycleWorkflows: get: tags: - - identityGovernance.termsOfUseContainer - summary: Get termsOfUse from identityGovernance - operationId: identityGovernance_GetTermsGraphOPreUse + - identityGovernance.lifecycleWorkflowsContainer + summary: Get lifecycleWorkflows from identityGovernance + operationId: identityGovernance_GetLifecycleWorkflows parameters: - name: $select in: query @@ -56993,8 +59708,12 @@ paths: items: enum: - id - - agreementAcceptances - - agreements + - customTaskExtensions + - deletedItems + - settings + - taskDefinitions + - workflows + - workflowTemplates type: string - name: $expand in: query @@ -57007,8 +59726,12 @@ paths: items: enum: - '*' - - agreementAcceptances - - agreements + - customTaskExtensions + - deletedItems + - settings + - taskDefinitions + - workflows + - workflowTemplates type: string responses: '200': @@ -57016,26 +59739,34 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.termsOfUseContainer' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowsContainer' links: - agreementAcceptances: - operationId: identityGovernance.TermsGraphOPreUse.ListAgreementAcceptances - agreements: - operationId: identityGovernance.TermsGraphOPreUse.ListAgreements + customTaskExtensions: + operationId: identityGovernance.LifecycleWorkflows.ListCustomTaskExtensions + deletedItems: + operationId: identityGovernance.LifecycleWorkflows.GetDeletedItems + settings: + operationId: identityGovernance.LifecycleWorkflows.GetSettings + taskDefinitions: + operationId: identityGovernance.LifecycleWorkflows.ListTaskDefinitions + workflows: + operationId: identityGovernance.LifecycleWorkflows.ListWorkflows + workflowTemplates: + operationId: identityGovernance.LifecycleWorkflows.ListWorkflowTemplates default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property termsOfUse in identityGovernance - operationId: identityGovernance_UpdateTermsGraphOPreUse + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property lifecycleWorkflows in identityGovernance + operationId: identityGovernance_UpdateLifecycleWorkflows requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.termsOfUseContainer' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowsContainer' required: true responses: '204': @@ -57045,13 +59776,14 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property termsOfUse for identityGovernance - operationId: identityGovernance_DeleteTermsGraphOPreUse + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property lifecycleWorkflows for identityGovernance + operationId: identityGovernance_DeleteLifecycleWorkflows parameters: - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57060,12 +59792,13 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /identityGovernance/termsOfUse/agreementAcceptances: + /identityGovernance/lifecycleWorkflows/customTaskExtensions: get: tags: - - identityGovernance.termsOfUseContainer - summary: Get agreementAcceptances from identityGovernance - operationId: identityGovernance.termsGraphOPreUse_ListAgreementAcceptances + - identityGovernance.lifecycleWorkflowsContainer + summary: Get customTaskExtensions from identityGovernance + description: The customTaskExtension instance. + operationId: identityGovernance.lifecycleWorkflows_ListCustomTaskExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' @@ -57084,32 +59817,22 @@ paths: enum: - id - id desc - - agreementFileId - - agreementFileId desc - - agreementId - - agreementId desc - - deviceDisplayName - - deviceDisplayName desc - - deviceId - - deviceId desc - - deviceOSType - - deviceOSType desc - - deviceOSVersion - - deviceOSVersion desc - - expirationDateTime - - expirationDateTime desc - - recordedDateTime - - recordedDateTime desc - - state - - state desc - - userDisplayName - - userDisplayName desc - - userEmail - - userEmail desc - - userId - - userId desc - - userPrincipalName - - userPrincipalName desc + - authenticationConfiguration + - authenticationConfiguration desc + - clientConfiguration + - clientConfiguration desc + - description + - description desc + - displayName + - displayName desc + - endpointConfiguration + - endpointConfiguration desc + - callbackConfiguration + - callbackConfiguration desc + - createdDateTime + - createdDateTime desc + - lastModifiedDateTime + - lastModifiedDateTime desc type: string - name: $select in: query @@ -57122,19 +59845,16 @@ paths: items: enum: - id - - agreementFileId - - agreementId - - deviceDisplayName - - deviceId - - deviceOSType - - deviceOSVersion - - expirationDateTime - - recordedDateTime - - state - - userDisplayName - - userEmail - - userId - - userPrincipalName + - authenticationConfiguration + - clientConfiguration + - description + - displayName + - endpointConfiguration + - callbackConfiguration + - createdDateTime + - lastModifiedDateTime + - createdBy + - lastModifiedBy type: string - name: $expand in: query @@ -57147,10 +59867,12 @@ paths: items: enum: - '*' + - createdBy + - lastModifiedBy type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementAcceptanceCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.customTaskExtensionCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -57159,15 +59881,15 @@ paths: x-ms-docs-operation-type: operation post: tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to agreementAcceptances for identityGovernance - operationId: identityGovernance.termsGraphOPreUse_CreateAgreementAcceptances + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to customTaskExtensions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_CreateCustomTaskExtensions requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtension' required: true responses: '201': @@ -57175,24 +59897,26 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtension' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}': + '/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get agreementAcceptances from identityGovernance - operationId: identityGovernance.termsGraphOPreUse_GetAgreementAcceptances + - identityGovernance.lifecycleWorkflowsContainer + summary: Get customTaskExtensions from identityGovernance + description: The customTaskExtension instance. + operationId: identityGovernance.lifecycleWorkflows_GetCustomTaskExtensions parameters: - - name: agreementAcceptance-id + - name: customTaskExtension-id in: path - description: 'key: id of agreementAcceptance' + description: 'key: id of customTaskExtension' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementAcceptance + x-ms-docs-key-type: customTaskExtension - name: $select in: query description: Select properties to be returned @@ -57204,19 +59928,16 @@ paths: items: enum: - id - - agreementFileId - - agreementId - - deviceDisplayName - - deviceId - - deviceOSType - - deviceOSVersion - - expirationDateTime - - recordedDateTime - - state - - userDisplayName - - userEmail - - userId - - userPrincipalName + - authenticationConfiguration + - clientConfiguration + - description + - displayName + - endpointConfiguration + - callbackConfiguration + - createdDateTime + - lastModifiedDateTime + - createdBy + - lastModifiedBy type: string - name: $expand in: query @@ -57229,6 +59950,8 @@ paths: items: enum: - '*' + - createdBy + - lastModifiedBy type: string responses: '200': @@ -57236,29 +59959,39 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtension' + links: + createdBy: + operationId: identityGovernance.lifecycleWorkflows.CustomTaskExtensions.GetCreatedGraphBPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + lastModifiedBy: + operationId: identityGovernance.lifecycleWorkflows.CustomTaskExtensions.GetLastModifiedGraphBPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property agreementAcceptances in identityGovernance - operationId: identityGovernance.termsGraphOPreUse_UpdateAgreementAcceptances + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property customTaskExtensions in identityGovernance + operationId: identityGovernance.lifecycleWorkflows_UpdateCustomTaskExtensions parameters: - - name: agreementAcceptance-id + - name: customTaskExtension-id in: path - description: 'key: id of agreementAcceptance' + description: 'key: id of customTaskExtension' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementAcceptance + x-ms-docs-key-type: customTaskExtension requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtension' required: true responses: '204': @@ -57268,20 +60001,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property agreementAcceptances for identityGovernance - operationId: identityGovernance.termsGraphOPreUse_DeleteAgreementAcceptances + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property customTaskExtensions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_DeleteCustomTaskExtensions parameters: - - name: agreementAcceptance-id + - name: customTaskExtension-id in: path - description: 'key: id of agreementAcceptance' + description: 'key: id of customTaskExtension' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementAcceptance + x-ms-docs-key-type: customTaskExtension - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57290,21 +60025,25 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /identityGovernance/termsOfUse/agreements: + '/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get agreements from identityGovernance - operationId: identityGovernance.termsGraphOPreUse_ListAgreements + - identityGovernance.lifecycleWorkflowsContainer + summary: Get createdBy from identityGovernance + description: The unique identifier of the Azure AD user that created the custom task extension. + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions_GetCreatedGraphBPre parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby + - name: customTaskExtension-id + in: path + description: 'key: id of customTaskExtension' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: customTaskExtension + - name: $select in: query - description: Order items by property values + description: Select properties to be returned style: form explode: false schema: @@ -57313,18 +60052,517 @@ paths: items: enum: - id - - id desc + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - displayName desc - - isPerDeviceAcceptanceRequired - - isPerDeviceAcceptanceRequired desc - - isViewingBeforeAcceptanceRequired - - isViewingBeforeAcceptanceRequired desc - - termsExpiration - - termsExpiration desc - - userReacceptRequiredFrequency - - userReacceptRequiredFrequency desc + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.user' + links: + analytics: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetAnalytics + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListCloudPCs + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListUsageRights + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetInformationProtection + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListAppRoleAssignedResources + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListAppRoleAssignments + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListCreatedObjects + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListDirectReports + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListLicenseDetails + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + manager: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetManager + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedGraphBPre.ListMemberGraphOPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListOauth2PermissionGrants + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListOwnedDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListOwnedObjects + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListRegisteredDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedGraphBPre.ListScopedRoleMemberGraphOPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedGraphBPre.ListTransitiveMemberGraphOPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListTransitiveReports + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetCalendar + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListCalendarGroups + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListCalendars + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListCalendarView + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListContactFolders + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListContacts + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + events: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListEvents + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetInferenceClassification + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListJoinedGroups + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListMailFolders + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + messages: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListMessages + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetOutlook + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + people: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListPeople + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + drive: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetDrive + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + drives: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListDrives + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListFollowedSites + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListExtensions + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedGraphBPre.ListAppConsentRequestsGraphFPreApproval + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListApprovals + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListPendingAccessReviewInstances + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListAgreementAcceptances + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + security: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetSecurity + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListDeviceEnrollmentConfigurations + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListManagedDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListManagedAppRegistrations + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListWindowsInformationProtectionDeviceRegistrations + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListDeviceManagementTroubleshootingEvents + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListMobileAppIntentAndStates + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListMobileAppTroubleshootingEvents + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListNotifications + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + planner: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetPlanner + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + insights: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetInsights + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + settings: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetSettings + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetOnenote + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + photo: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetPhoto + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + photos: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListPhotos + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + profile: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetProfile + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + activities: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListActivities + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + devices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListOnlineMeetings + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + presence: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetPresence + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetAuthentication + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetTasks + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + chats: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListChats + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.ListJoinedTeams + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetTeamwork + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + todo: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.CreatedBy.GetTodo + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get lastModifiedBy from identityGovernance + description: The unique identifier of the Azure AD user that modified the custom task extension last. + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions_GetLastModifiedGraphBPre + parameters: + - name: customTaskExtension-id + in: path + description: 'key: id of customTaskExtension' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: customTaskExtension - name: $select in: query description: Select properties to be returned @@ -57336,14 +60574,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - isPerDeviceAcceptanceRequired - - isViewingBeforeAcceptanceRequired - - termsExpiration - - userReacceptRequiredFrequency - - acceptances - - file - - files + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -57356,55 +60732,351 @@ paths: items: enum: - '*' - - acceptances - - file - - files + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementCollectionResponse' - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to agreements for identityGovernance - operationId: identityGovernance.termsGraphOPreUse_CreateAgreements - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreement' - required: true - responses: - '201': - description: Created navigation property. + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreement' + $ref: '#/components/schemas/microsoft.graph.user' + links: + analytics: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetAnalytics + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListCloudPCs + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListUsageRights + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetInformationProtection + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListAppRoleAssignedResources + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListAppRoleAssignments + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListCreatedObjects + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListDirectReports + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListLicenseDetails + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + manager: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetManager + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedGraphBPre.ListMemberGraphOPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListOauth2PermissionGrants + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListOwnedDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListOwnedObjects + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListRegisteredDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedGraphBPre.ListScopedRoleMemberGraphOPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedGraphBPre.ListTransitiveMemberGraphOPre + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListTransitiveReports + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetCalendar + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListCalendarGroups + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListCalendars + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListCalendarView + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListContactFolders + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListContacts + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + events: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListEvents + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetInferenceClassification + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListJoinedGroups + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListMailFolders + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + messages: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListMessages + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetOutlook + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + people: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListPeople + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + drive: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetDrive + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + drives: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListDrives + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListFollowedSites + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListExtensions + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedGraphBPre.ListAppConsentRequestsGraphFPreApproval + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListApprovals + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListPendingAccessReviewInstances + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListAgreementAcceptances + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + security: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetSecurity + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListDeviceEnrollmentConfigurations + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListManagedDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListManagedAppRegistrations + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListWindowsInformationProtectionDeviceRegistrations + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListDeviceManagementTroubleshootingEvents + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListMobileAppIntentAndStates + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListMobileAppTroubleshootingEvents + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListNotifications + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + planner: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetPlanner + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + insights: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetInsights + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + settings: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetSettings + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetOnenote + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + photo: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetPhoto + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + photos: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListPhotos + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + profile: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetProfile + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + activities: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListActivities + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + devices: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListDevices + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListOnlineMeetings + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + presence: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetPresence + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetAuthentication + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetTasks + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + chats: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListChats + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.ListJoinedTeams + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetTeamwork + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id + todo: + operationId: identityGovernance.lifecycleWorkflows.customTaskExtensions.LastModifiedBy.GetTodo + parameters: + customTaskExtension-id: $request.path.customTaskExtension-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}': + /identityGovernance/lifecycleWorkflows/deletedItems: get: tags: - - identityGovernance.termsOfUseContainer - summary: Get agreements from identityGovernance - operationId: identityGovernance.termsGraphOPreUse_GetAgreements + - identityGovernance.lifecycleWorkflowsContainer + summary: Get deletedItems from identityGovernance + description: Deleted workflows in your lifecycle workflows instance. + operationId: identityGovernance.lifecycleWorkflows_GetDeletedItems parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - name: $select in: query description: Select properties to be returned @@ -57416,14 +61088,7 @@ paths: items: enum: - id - - displayName - - isPerDeviceAcceptanceRequired - - isViewingBeforeAcceptanceRequired - - termsExpiration - - userReacceptRequiredFrequency - - acceptances - - file - - files + - workflows type: string - name: $expand in: query @@ -57436,9 +61101,7 @@ paths: items: enum: - '*' - - acceptances - - file - - files + - workflows type: string responses: '200': @@ -57446,42 +61109,24 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreement' + $ref: '#/components/schemas/microsoft.graph.deletedItemContainer' links: - acceptances: - operationId: identityGovernance.termsGraphOPreUse.Agreements.ListAcceptances - parameters: - agreement-id: $request.path.agreement-id - file: - operationId: identityGovernance.termsGraphOPreUse.Agreements.GetFile - parameters: - agreement-id: $request.path.agreement-id - files: - operationId: identityGovernance.termsGraphOPreUse.Agreements.ListFiles - parameters: - agreement-id: $request.path.agreement-id + workflows: + operationId: identityGovernance.lifecycleWorkflows.DeletedItems.ListWorkflows default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property agreements in identityGovernance - operationId: identityGovernance.termsGraphOPreUse_UpdateAgreements - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property deletedItems in identityGovernance + operationId: identityGovernance.lifecycleWorkflows_UpdateDeletedItems requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreement' + $ref: '#/components/schemas/microsoft.graph.deletedItemContainer' required: true responses: '204': @@ -57491,20 +61136,14 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property agreements for identityGovernance - operationId: identityGovernance.termsGraphOPreUse_DeleteAgreements + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property deletedItems for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_DeleteDeletedItems parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57513,20 +61152,14 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances': + /identityGovernance/lifecycleWorkflows/deletedItems/workflows: get: tags: - - identityGovernance.termsOfUseContainer - summary: Get acceptances from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_ListAcceptances + - identityGovernance.lifecycleWorkflowsContainer + summary: Get workflows from identityGovernance + description: Deleted workflows that end up in the deletedItemsContainer. + operationId: identityGovernance.lifecycleWorkflows.deletedItems_ListWorkflows parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -57542,34 +61175,30 @@ paths: type: array items: enum: + - category + - category desc + - createdDateTime + - createdDateTime desc + - description + - description desc + - displayName + - displayName desc + - executionConditions + - executionConditions desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - deletedDateTime + - deletedDateTime desc - id - id desc - - agreementFileId - - agreementFileId desc - - agreementId - - agreementId desc - - deviceDisplayName - - deviceDisplayName desc - - deviceId - - deviceId desc - - deviceOSType - - deviceOSType desc - - deviceOSVersion - - deviceOSVersion desc - - expirationDateTime - - expirationDateTime desc - - recordedDateTime - - recordedDateTime desc - - state - - state desc - - userDisplayName - - userDisplayName desc - - userEmail - - userEmail desc - - userId - - userId desc - - userPrincipalName - - userPrincipalName desc + - isEnabled + - isEnabled desc + - isSchedulingEnabled + - isSchedulingEnabled desc + - nextScheduleRunDateTime + - nextScheduleRunDateTime desc + - version + - version desc type: string - name: $select in: query @@ -57581,20 +61210,26 @@ paths: type: array items: enum: + - category + - createdDateTime + - description + - displayName + - executionConditions + - lastModifiedDateTime + - deletedDateTime - id - - agreementFileId - - agreementId - - deviceDisplayName - - deviceId - - deviceOSType - - deviceOSVersion - - expirationDateTime - - recordedDateTime - - state - - userDisplayName - - userEmail - - userId - - userPrincipalName + - isEnabled + - isSchedulingEnabled + - nextScheduleRunDateTime + - version + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string - name: $expand in: query @@ -57607,10 +61242,18 @@ paths: items: enum: - '*' + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementAcceptanceCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.workflowCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -57619,23 +61262,15 @@ paths: x-ms-docs-operation-type: operation post: tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to acceptances for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_CreateAcceptances - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to workflows for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems_CreateWorkflows requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' required: true responses: '201': @@ -57643,156 +61278,26 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}': - get: - tags: - - identityGovernance.termsOfUseContainer - summary: Get acceptances from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_GetAcceptances - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementAcceptance-id - in: path - description: 'key: id of agreementAcceptance' - required: true - schema: - type: string - x-ms-docs-key-type: agreementAcceptance - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - agreementFileId - - agreementId - - deviceDisplayName - - deviceId - - deviceOSType - - deviceOSVersion - - expirationDateTime - - recordedDateTime - - state - - userDisplayName - - userEmail - - userId - - userPrincipalName - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property acceptances in identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_UpdateAcceptances - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementAcceptance-id - in: path - description: 'key: id of agreementAcceptance' - required: true - schema: - type: string - x-ms-docs-key-type: agreementAcceptance - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property acceptances for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_DeleteAcceptances - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementAcceptance-id - in: path - description: 'key: id of agreementAcceptance' - required: true - schema: - type: string - x-ms-docs-key-type: agreementAcceptance - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/file': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get file from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_GetFile + - identityGovernance.lifecycleWorkflowsContainer + summary: Get workflows from identityGovernance + description: Deleted workflows that end up in the deletedItemsContainer. + operationId: identityGovernance.lifecycleWorkflows.deletedItems_GetWorkflows parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement + x-ms-docs-key-type: workflow - name: $select in: query description: Select properties to be returned @@ -57803,15 +61308,26 @@ paths: type: array items: enum: - - id + - category - createdDateTime + - description - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language - - localizations + - executionConditions + - lastModifiedDateTime + - deletedDateTime + - id + - isEnabled + - isSchedulingEnabled + - nextScheduleRunDateTime + - version + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string - name: $expand in: query @@ -57824,7 +61340,14 @@ paths: items: enum: - '*' - - localizations + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string responses: '200': @@ -57832,34 +61355,69 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFile' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' links: - localizations: - operationId: identityGovernance.termsGraphOPreUse.agreements.File.ListLocalizations + createdBy: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.GetCreatedGraphBPre parameters: - agreement-id: $request.path.agreement-id + workflow-id: $request.path.workflow-id + lastModifiedBy: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.GetLastModifiedGraphBPre + parameters: + workflow-id: $request.path.workflow-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.ListTasks + parameters: + workflow-id: $request.path.workflow-id + executionScope: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.ListExecutionScope + parameters: + workflow-id: $request.path.workflow-id + runs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.ListRuns + parameters: + workflow-id: $request.path.workflow-id + taskReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.ListTaskReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.ListUserProcessingResults + parameters: + workflow-id: $request.path.workflow-id + versions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.Workflows.ListVersions + parameters: + workflow-id: $request.path.workflow-id + activate: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.activate + createNewVersion: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.createNewVersion + restore: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.restore default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property file in identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_UpdateFile + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property workflows in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems_UpdateWorkflows parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement + x-ms-docs-key-type: workflow requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFile' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' required: true responses: '204': @@ -57869,20 +61427,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property file for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_DeleteFile + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property workflows for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems_DeleteWorkflows parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement + x-ms-docs-key-type: workflow - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -57891,20 +61451,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get localizations from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file_ListLocalizations + - identityGovernance.lifecycleWorkflowsContainer + summary: Get executionScope from identityGovernance + description: The unique identifier of the Azure AD identity that last modified the workflow object.. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_ListExecutionScope parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -57922,20 +61484,168 @@ paths: enum: - id - id desc + - deletedDateTime + - deletedDateTime desc + - signInActivity + - signInActivity desc + - accountEnabled + - accountEnabled desc + - ageGroup + - ageGroup desc + - assignedLicenses + - assignedLicenses desc + - assignedPlans + - assignedPlans desc + - authorizationInfo + - authorizationInfo desc + - businessPhones + - businessPhones desc + - city + - city desc + - companyName + - companyName desc + - consentProvidedForMinor + - consentProvidedForMinor desc + - country + - country desc - createdDateTime - createdDateTime desc + - creationType + - creationType desc + - customSecurityAttributes + - customSecurityAttributes desc + - department + - department desc + - deviceKeys + - deviceKeys desc - displayName - displayName desc - - fileData - - fileData desc - - fileName - - fileName desc - - isDefault - - isDefault desc - - isMajorVersion - - isMajorVersion desc - - language - - language desc + - employeeHireDate + - employeeHireDate desc + - employeeId + - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc + - employeeOrgData + - employeeOrgData desc + - employeeType + - employeeType desc + - externalUserState + - externalUserState desc + - externalUserStateChangeDateTime + - externalUserStateChangeDateTime desc + - faxNumber + - faxNumber desc + - givenName + - givenName desc + - identities + - identities desc + - imAddresses + - imAddresses desc + - infoCatalogs + - infoCatalogs desc + - isManagementRestricted + - isManagementRestricted desc + - isResourceAccount + - isResourceAccount desc + - jobTitle + - jobTitle desc + - lastPasswordChangeDateTime + - lastPasswordChangeDateTime desc + - legalAgeGroupClassification + - legalAgeGroupClassification desc + - licenseAssignmentStates + - licenseAssignmentStates desc + - mail + - mail desc + - mailNickname + - mailNickname desc + - mobilePhone + - mobilePhone desc + - officeLocation + - officeLocation desc + - onPremisesDistinguishedName + - onPremisesDistinguishedName desc + - onPremisesDomainName + - onPremisesDomainName desc + - onPremisesExtensionAttributes + - onPremisesExtensionAttributes desc + - onPremisesImmutableId + - onPremisesImmutableId desc + - onPremisesLastSyncDateTime + - onPremisesLastSyncDateTime desc + - onPremisesProvisioningErrors + - onPremisesProvisioningErrors desc + - onPremisesSamAccountName + - onPremisesSamAccountName desc + - onPremisesSecurityIdentifier + - onPremisesSecurityIdentifier desc + - onPremisesSyncEnabled + - onPremisesSyncEnabled desc + - onPremisesUserPrincipalName + - onPremisesUserPrincipalName desc + - otherMails + - otherMails desc + - passwordPolicies + - passwordPolicies desc + - passwordProfile + - passwordProfile desc + - postalCode + - postalCode desc + - preferredDataLocation + - preferredDataLocation desc + - preferredLanguage + - preferredLanguage desc + - provisionedPlans + - provisionedPlans desc + - proxyAddresses + - proxyAddresses desc + - refreshTokensValidFromDateTime + - refreshTokensValidFromDateTime desc + - securityIdentifier + - securityIdentifier desc + - showInAddressList + - showInAddressList desc + - signInSessionsValidFromDateTime + - signInSessionsValidFromDateTime desc + - state + - state desc + - streetAddress + - streetAddress desc + - surname + - surname desc + - usageLocation + - usageLocation desc + - userPrincipalName + - userPrincipalName desc + - userType + - userType desc + - mailboxSettings + - mailboxSettings desc + - deviceEnrollmentLimit + - deviceEnrollmentLimit desc + - print + - print desc + - aboutMe + - aboutMe desc + - birthday + - birthday desc + - hireDate + - hireDate desc + - interests + - interests desc + - mySite + - mySite desc + - pastProjects + - pastProjects desc + - preferredName + - preferredName desc + - responsibilities + - responsibilities desc + - schools + - schools desc + - skills + - skills desc type: string - name: $select in: query @@ -57948,14 +61658,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language - - versions + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -57968,68 +61816,105 @@ paths: items: enum: - '*' - - versions + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementFileLocalizationCollectionResponse' + $ref: '#/components/responses/microsoft.graph.userCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - post: - tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to localizations for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file_CreateLocalizations - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' - required: true - responses: - '201': - description: Created navigation property. - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{user-id}': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get localizations from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file_GetLocalizations + - identityGovernance.lifecycleWorkflowsContainer + summary: Get executionScope from identityGovernance + description: The unique identifier of the Azure AD identity that last modified the workflow object.. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_GetExecutionScope parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + - name: user-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of user' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization + x-ms-docs-key-type: user - name: $select in: query description: Select properties to be returned @@ -58041,14 +61926,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language - - versions + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -58061,7 +62084,71 @@ paths: items: enum: - '*' - - versions + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -58069,101 +62156,448 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + $ref: '#/components/schemas/microsoft.graph.user' links: - versions: - operationId: identityGovernance.termsGraphOPreUse.agreements.file.Localizations.ListVersions + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetAnalytics parameters: - agreement-id: $request.path.agreement-id - agreementFileLocalization-id: $request.path.agreementFileLocalization-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property localizations in identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file_UpdateLocalizations - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id - in: path - description: 'key: id of agreementFileLocalization' - required: true - schema: - type: string - x-ms-docs-key-type: agreementFileLocalization - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property localizations for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file_DeleteLocalizations - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id - in: path - description: 'key: id of agreementFileLocalization' - required: true - schema: - type: string - x-ms-docs-key-type: agreementFileLocalization - - name: If-Match - in: header - description: ETag + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListCloudPCs + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetManager + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListContacts + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListEvents + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListMessages + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListPeople + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetDrive + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListDrives + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetInsights + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetSettings + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetProfile + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListActivities + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetPresence + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetTasks + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListChats + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.ExecutionScope.GetTodo + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.activate': + post: + tags: + - identityGovernance.Actions + summary: Invoke action activate + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_activate + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple schema: type: string + x-ms-docs-key-type: workflow + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + subjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.user' + additionalProperties: + type: object + required: true responses: '204': description: Success default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions': - get: + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.createNewVersion': + post: tags: - - identityGovernance.termsOfUseContainer - summary: Get versions from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_ListVersions + - identityGovernance.Actions + summary: Invoke action createNewVersion + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_createNewVersion parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + workflow: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/microsoft.graph.identityGovernance.restore': + post: + tags: + - identityGovernance.Actions + summary: Invoke action restore + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_restore + parameters: + - name: workflow-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization + x-ms-docs-key-type: workflow + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get runs from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_ListRuns + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -58181,20 +62615,30 @@ paths: enum: - id - id desc - - createdDateTime - - createdDateTime desc - - displayName - - displayName desc - - fileData - - fileData desc - - fileName - - fileName desc - - isDefault - - isDefault desc - - isMajorVersion - - isMajorVersion desc - - language - - language desc + - completedDateTime + - completedDateTime desc + - failedTasksCount + - failedTasksCount desc + - failedUsersCount + - failedUsersCount desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - processingStatus + - processingStatus desc + - scheduledDateTime + - scheduledDateTime desc + - startedDateTime + - startedDateTime desc + - successfulUsersCount + - successfulUsersCount desc + - totalTasksCount + - totalTasksCount desc + - totalUnprocessedTasksCount + - totalUnprocessedTasksCount desc + - totalUsersCount + - totalUsersCount desc + - workflowExecutionType + - workflowExecutionType desc type: string - name: $select in: query @@ -58207,13 +62651,20 @@ paths: items: enum: - id - - createdDateTime - - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language + - completedDateTime + - failedTasksCount + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - scheduledDateTime + - startedDateTime + - successfulUsersCount + - totalTasksCount + - totalUnprocessedTasksCount + - totalUsersCount + - workflowExecutionType + - taskProcessingResults + - userProcessingResults type: string - name: $expand in: query @@ -58226,10 +62677,12 @@ paths: items: enum: - '*' + - taskProcessingResults + - userProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementFileVersionCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.runCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -58238,30 +62691,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to versions for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_CreateVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to runs for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_CreateRuns parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + - name: workflow-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization + x-ms-docs-key-type: workflow requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' required: true responses: '201': @@ -58269,38 +62716,33 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get versions from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_GetVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Get runs from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_GetRuns parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + - name: workflow-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization - - name: agreementFileVersion-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileVersion' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileVersion + x-ms-docs-key-type: run - name: $select in: query description: Select properties to be returned @@ -58312,13 +62754,20 @@ paths: items: enum: - id - - createdDateTime - - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language + - completedDateTime + - failedTasksCount + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - scheduledDateTime + - startedDateTime + - successfulUsersCount + - totalTasksCount + - totalUnprocessedTasksCount + - totalUsersCount + - workflowExecutionType + - taskProcessingResults + - userProcessingResults type: string - name: $expand in: query @@ -58331,6 +62780,8 @@ paths: items: enum: - '*' + - taskProcessingResults + - userProcessingResults type: string responses: '200': @@ -58338,43 +62789,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.Runs.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.Runs.ListUserProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property versions in identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_UpdateVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property runs in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_UpdateRuns parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + - name: workflow-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization - - name: agreementFileVersion-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileVersion' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileVersion + x-ms-docs-key-type: run requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' required: true responses: '204': @@ -58384,34 +62841,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property versions for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_DeleteVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property runs for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_DeleteRuns parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + - name: workflow-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization - - name: agreementFileVersion-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileVersion' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileVersion + x-ms-docs-key-type: run - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -58420,20 +62873,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/files': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get files from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_ListFiles + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_ListTaskProcessingResults parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -58451,20 +62914,16 @@ paths: enum: - id - id desc + - completedDateTime + - completedDateTime desc - createdDateTime - createdDateTime desc - - displayName - - displayName desc - - fileData - - fileData desc - - fileName - - fileName desc - - isDefault - - isDefault desc - - isMajorVersion - - isMajorVersion desc - - language - - language desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc type: string - name: $select in: query @@ -58477,14 +62936,13 @@ paths: items: enum: - id + - completedDateTime - createdDateTime - - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language - - versions + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -58497,11 +62955,12 @@ paths: items: enum: - '*' - - versions + - subject + - task type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementFileLocalizationCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -58510,23 +62969,32 @@ paths: x-ms-docs-operation-type: operation post: tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to files for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_CreateFiles + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_CreateTaskProcessingResults parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '201': @@ -58534,31 +63002,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get files from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_GetFiles + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_GetTaskProcessingResults parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -58570,14 +63049,13 @@ paths: items: enum: - id + - completedDateTime - createdDateTime - - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language - - versions + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -58590,7 +63068,8 @@ paths: items: enum: - '*' - - versions + - subject + - task type: string responses: '200': @@ -58598,42 +63077,61 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - versions: - operationId: identityGovernance.termsGraphOPreUse.agreements.Files.ListVersions + subject: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.TaskProcessingResults.GetSubject parameters: - agreement-id: $request.path.agreement-id - agreementFileLocalization-id: $request.path.agreementFileLocalization-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.TaskProcessingResults.GetTask + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.runs.run.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property files in identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_UpdateFiles + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_UpdateTaskProcessingResults parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -58643,27 +63141,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property files for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements_DeleteFiles + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_DeleteTaskProcessingResults parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -58672,59 +63181,93 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: + tags: + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults_resume + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get versions from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.files_ListVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults_GetSubject parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - createdDateTime - - createdDateTime desc - - displayName - - displayName desc - - fileData - - fileData desc - - fileName - - fileName desc - - isDefault - - isDefault desc - - isMajorVersion - - isMajorVersion desc - - language - - language desc - type: string + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -58736,18 +63279,157 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language - type: string - - name: $expand - in: query - description: Expand related entities - style: form + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + - name: $expand + in: query + description: Expand related entities + style: form explode: false schema: uniqueItems: true @@ -58755,81 +63437,505 @@ paths: items: enum: - '*' + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementFileVersionCollectionResponse' - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - identityGovernance.termsOfUseContainer - summary: Create new navigation property to versions for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.files_CreateVersions - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id - in: path - description: 'key: id of agreementFileLocalization' - required: true - schema: - type: string - x-ms-docs-key-type: agreementFileLocalization - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' - required: true - responses: - '201': - description: Created navigation property. + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' + $ref: '#/components/schemas/microsoft.graph.user' + links: + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetAnalytics + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListCloudPCs + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task': get: tags: - - identityGovernance.termsOfUseContainer - summary: Get versions from identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.files_GetVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults_GetTask parameters: - - name: agreement-id + - name: workflow-id in: path - description: 'key: id of agreement' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization - - name: agreementFileVersion-id + x-ms-docs-key-type: run + - name: taskProcessingResult-id in: path - description: 'key: id of agreementFileVersion' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileVersion + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -58841,13 +63947,15 @@ paths: items: enum: - id - - createdDateTime + - arguments + - category + - continueOnError + - description - displayName - - fileData - - fileName - - isDefault - - isMajorVersion - - language + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -58860,6 +63968,7 @@ paths: items: enum: - '*' + - taskProcessingResults type: string responses: '200': @@ -58867,95 +63976,41 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - identityGovernance.termsOfUseContainer - summary: Update the navigation property versions in identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.files_UpdateVersions - parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id - in: path - description: 'key: id of agreementFileLocalization' - required: true - schema: - type: string - x-ms-docs-key-type: agreementFileLocalization - - name: agreementFileVersion-id - in: path - description: 'key: id of agreementFileVersion' - required: true - schema: - type: string - x-ms-docs-key-type: agreementFileVersion - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' - required: true - responses: - '204': - description: Success + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.taskProcessingResults.Task.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults': + get: tags: - - identityGovernance.termsOfUseContainer - summary: Delete navigation property versions for identityGovernance - operationId: identityGovernance.termsGraphOPreUse.agreements.files_DeleteVersions + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + description: The associated individual user execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_ListUserProcessingResults parameters: - - name: agreement-id - in: path - description: 'key: id of agreement' - required: true - schema: - type: string - x-ms-docs-key-type: agreement - - name: agreementFileLocalization-id + - name: workflow-id in: path - description: 'key: id of agreementFileLocalization' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileLocalization - - name: agreementFileVersion-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of agreementFileVersion' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementFileVersion - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - /privilegedAccess: - get: - tags: - - privilegedAccess.privilegedAccess - summary: Get entities from privilegedAccess - operationId: privilegedAccess.privilegedAccess_ListPrivilegedAccess - parameters: + x-ms-docs-key-type: run - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -58973,8 +64028,24 @@ paths: enum: - id - id desc - - displayName - - displayName desc + - completedDateTime + - completedDateTime desc + - failedTasksCount + - failedTasksCount desc + - processingStatus + - processingStatus desc + - scheduledDateTime + - scheduledDateTime desc + - startedDateTime + - startedDateTime desc + - totalTasksCount + - totalTasksCount desc + - totalUnprocessedTasksCount + - totalUnprocessedTasksCount desc + - workflowExecutionType + - workflowExecutionType desc + - workflowVersion + - workflowVersion desc type: string - name: $select in: query @@ -58987,12 +64058,17 @@ paths: items: enum: - id - - displayName - - resources - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion + - subject + - taskProcessingResults type: string - name: $expand in: query @@ -59005,15 +64081,12 @@ paths: items: enum: - '*' - - resources - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - taskProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedAccessCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.userProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -59022,40 +64095,75 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.privilegedAccess - summary: Add new entity to privilegedAccess - operationId: privilegedAccess.privilegedAccess_CreatePrivilegedAccess + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_CreateUserProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedAccess' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedAccess' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}': get: tags: - - privilegedAccess.privilegedAccess - summary: Get entity from privilegedAccess by key - operationId: privilegedAccess.privilegedAccess_GetPrivilegedAccess + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + description: The associated individual user execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_GetUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -59067,12 +64175,17 @@ paths: items: enum: - id - - displayName - - resources - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion + - subject + - taskProcessingResults type: string - name: $expand in: query @@ -59085,62 +64198,68 @@ paths: items: enum: - '*' - - resources - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - taskProcessingResults type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedAccess' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' links: - resources: - operationId: privilegedAccess.ListResources - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - roleAssignmentRequests: - operationId: privilegedAccess.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - roleAssignments: - operationId: privilegedAccess.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - roleDefinitions: - operationId: privilegedAccess.ListRoleDefinitions + subject: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.UserProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - roleSettings: - operationId: privilegedAccess.ListRoleSettings + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.UserProcessingResults.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.privilegedAccess - summary: Update entity in privilegedAccess - operationId: privilegedAccess.privilegedAccess_UpdatePrivilegedAccess + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property userProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_UpdateUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedAccess' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' required: true responses: '204': @@ -59150,20 +64269,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.privilegedAccess - summary: Delete entity from privilegedAccess - operationId: privilegedAccess.privilegedAccess_DeletePrivilegedAccess + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_DeleteUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59172,50 +64309,38 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceResource - summary: Get resources from privilegedAccess - operationId: privilegedAccess_ListResources + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the AAD user targeted for the taskProcessingResult. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - displayName - - displayName desc - - externalId - - externalId desc - - registeredDateTime - - registeredDateTime desc - - registeredRoot - - registeredRoot desc - - status - - status desc - - type - - type desc - type: string + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -59227,38 +64352,727 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceResourceCollectionResponse' + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.user' + links: + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetAnalytics + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListCloudPCs + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_ListTaskProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - subject + - task + type: string + responses: + '200': + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -59267,23 +65081,40 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceResource - summary: Create new navigation property to resources for privilegedAccess - operationId: privilegedAccess_CreateResources + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_CreateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '201': @@ -59291,31 +65122,50 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get resources from privilegedAccess - operationId: privilegedAccess_GetResources + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_GetTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceResource' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -59327,17 +65177,13 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -59350,11 +65196,8 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - task type: string responses: '200': @@ -59362,62 +65205,71 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - parent: - operationId: privilegedAccess.Resources.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleAssignmentRequests: - operationId: privilegedAccess.Resources.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleAssignments: - operationId: privilegedAccess.Resources.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleDefinitions: - operationId: privilegedAccess.Resources.ListRoleDefinitions + subject: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.TaskProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleSettings: - operationId: privilegedAccess.Resources.ListRoleSettings + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.TaskProcessingResults.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.runs.run.userProcessingResults.userProcessingResult.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property resources in privilegedAccess - operationId: privilegedAccess_UpdateResources + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_UpdateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceResource' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -59427,27 +65279,46 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property resources for privilegedAccess - operationId: privilegedAccess_DeleteResources + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_DeleteTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceResource' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59456,27 +65327,109 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/parent': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: + tags: + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults_resume + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceResource - summary: Get parent from privilegedAccess - operationId: privilegedAccess.resources_GetParent + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceResource' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -59488,17 +65441,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -59511,11 +65599,71 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -59523,57 +65671,668 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.user' links: - parent: - operationId: privilegedAccess.resources.Parent.GetParent + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.Parent.ListRoleAssignmentRequests + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleAssignments: - operationId: privilegedAccess.resources.Parent.ListRoleAssignments + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListUsageRights parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleDefinitions: - operationId: privilegedAccess.resources.Parent.ListRoleDefinitions + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetInformationProtection parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - roleSettings: - operationId: privilegedAccess.resources.Parent.ListRoleSettings + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignedResources parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task': get: tags: - - privilegedAccess.governanceResource - summary: Get roleAssignmentRequests from privilegedAccess - operationId: privilegedAccess.resources_ListRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceResource' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - taskProcessingResults + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults.taskProcessingResults.Task.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': + get: + tags: + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs.userProcessingResults_summary + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: startDateTime + in: path + description: 'Usage: startDateTime=''{startDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + - name: endDateTime + in: path + description: 'Usage: endDateTime=''{endDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': + get: + tags: + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.runs_summary + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: startDateTime + in: path + description: 'Usage: startDateTime=''{startDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + - name: endDateTime + in: path + description: 'Usage: endDateTime=''{endDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.runSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskReports from identityGovernance + description: Represents the aggregation of task execution data for tasks within a workflow object. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_ListTaskReports + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -59591,26 +66350,24 @@ paths: enum: - id - id desc - - assignmentState - - assignmentState desc - - linkedEligibleRoleAssignmentId - - linkedEligibleRoleAssignmentId desc - - reason - - reason desc - - requestedDateTime - - requestedDateTime desc - - resourceId - - resourceId desc - - roleDefinitionId - - roleDefinitionId desc - - schedule - - schedule desc - - status - - status desc - - subjectId - - subjectId desc - - type - - type desc + - completedDateTime + - completedDateTime desc + - failedUsersCount + - failedUsersCount desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - processingStatus + - processingStatus desc + - runId + - runId desc + - startedDateTime + - startedDateTime desc + - successfulUsersCount + - successfulUsersCount desc + - totalUsersCount + - totalUsersCount desc + - unprocessedUsersCount + - unprocessedUsersCount desc type: string - name: $select in: query @@ -59623,19 +66380,18 @@ paths: items: enum: - id - - assignmentState - - linkedEligibleRoleAssignmentId - - reason - - requestedDateTime - - resourceId - - roleDefinitionId - - schedule - - status - - subjectId - - type - - resource - - roleDefinition - - subject + - completedDateTime + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - runId + - startedDateTime + - successfulUsersCount + - totalUsersCount + - unprocessedUsersCount + - task + - taskDefinition + - taskProcessingResults type: string - name: $expand in: query @@ -59648,13 +66404,13 @@ paths: items: enum: - '*' - - resource - - roleDefinition - - subject + - task + - taskDefinition + - taskProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentRequestCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskReportCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -59663,30 +66419,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceResource - summary: Create new navigation property to roleAssignmentRequests for privilegedAccess - operationId: privilegedAccess.resources_CreateRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskReports for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_CreateTaskReports parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: workflow requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' required: true responses: '201': @@ -59694,38 +66444,34 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleAssignmentRequests from privilegedAccess - operationId: privilegedAccess.resources_GetRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskReports from identityGovernance + description: Represents the aggregation of task execution data for tasks within a workflow object. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_GetTaskReports parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskReport - name: $select in: query description: Select properties to be returned @@ -59737,19 +66483,18 @@ paths: items: enum: - id - - assignmentState - - linkedEligibleRoleAssignmentId - - reason - - requestedDateTime - - resourceId - - roleDefinitionId - - schedule - - status - - subjectId - - type - - resource - - roleDefinition - - subject + - completedDateTime + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - runId + - startedDateTime + - successfulUsersCount + - totalUsersCount + - unprocessedUsersCount + - task + - taskDefinition + - taskProcessingResults type: string - name: $expand in: query @@ -59762,9 +66507,9 @@ paths: items: enum: - '*' - - resource - - roleDefinition - - subject + - task + - taskDefinition + - taskProcessingResults type: string responses: '200': @@ -59772,66 +66517,54 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' links: - resource: - operationId: privilegedAccess.resources.RoleAssignmentRequests.GetResource + task: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.TaskReports.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinition: - operationId: privilegedAccess.resources.RoleAssignmentRequests.GetRoleDefinition + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskDefinition: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.TaskReports.GetTaskDefinition parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - subject: - operationId: privilegedAccess.resources.RoleAssignmentRequests.GetSubject + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.TaskReports.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - cancel: - operationId: privilegedAccess.privilegedAccess.resources.governanceResource.roleAssignmentRequests.governanceRoleAssignmentRequest.cancel - updateRequest: - operationId: privilegedAccess.privilegedAccess.resources.governanceResource.roleAssignmentRequests.governanceRoleAssignmentRequest.updateRequest + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleAssignmentRequests in privilegedAccess - operationId: privilegedAccess.resources_UpdateRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskReports in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_UpdateTaskReports parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskReport requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' required: true responses: '204': @@ -59841,34 +66574,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleAssignmentRequests for privilegedAccess - operationId: privilegedAccess.resources_DeleteRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskReports for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_DeleteTaskReports parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskReport - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -59877,127 +66606,196 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.cancel': - post: + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/task': + get: tags: - - privilegedAccess.Actions - summary: Invoke action cancel - operationId: privilegedAccess.resources.roleAssignmentRequests_cancel + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related lifecycle workflow task. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true + x-ms-docs-key-type: taskReport + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + uniqueItems: true + type: array + items: + enum: + - id + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - taskProcessingResults + type: string responses: - '204': - description: Success + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.Task.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.updateRequest': - post: + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition': + get: tags: - - privilegedAccess.Actions - summary: Invoke action updateRequest - operationId: privilegedAccess.resources.roleAssignmentRequests_updateRequest + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskDefinition from identityGovernance + description: The taskDefinition associated with the related lifecycle workflow task. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_GetTaskDefinition parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: taskReport + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - category + - continueOnError + - description + - displayName + - parameters + - version + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related lifecycle workflow taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_ListTaskProcessingResults + parameters: + - name: workflow-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - decision: - type: string - nullable: true - assignmentState: - type: string - nullable: true - schedule: - $ref: '#/components/schemas/microsoft.graph.governanceSchedule' - reason: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource': - get: - tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_GetResource - parameters: - - name: privilegedAccess-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true + x-ms-docs-key-type: taskReport + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc + type: string - name: $select in: query description: Select properties to be returned @@ -60009,17 +66807,13 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -60032,81 +66826,89 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - task type: string responses: '200': - description: Retrieved navigation property + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_CreateTaskProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: taskReport-id + in: path + description: 'key: id of taskReport' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskReport + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + required: true + responses: + '201': + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignments: - operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinitions: - operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleSettings: - operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleSettings - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleDefinition from privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_GetRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related lifecycle workflow taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_GetTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -60118,12 +66920,13 @@ paths: items: enum: - id - - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -60136,8 +66939,8 @@ paths: items: enum: - '*' - - resource - - roleSetting + - subject + - task type: string responses: '200': @@ -60145,56 +66948,61 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - resource: - operationId: privilegedAccess.resources.roleAssignmentRequests.RoleDefinition.GetResource + subject: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.TaskProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleSetting: - operationId: privilegedAccess.resources.roleAssignmentRequests.RoleDefinition.GetRoleSetting + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.TaskProcessingResults.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.taskReports.taskReport.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleDefinition in privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_UpdateRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_UpdateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -60204,34 +67012,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleDefinition for privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_DeleteRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_DeleteTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -60240,34 +67052,93 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: + tags: + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults_resume + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: taskReport-id + in: path + description: 'key: id of taskReport' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -60279,17 +67150,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -60302,11 +67308,71 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -60314,69 +67380,433 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.user' links: - parent: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.GetParent + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignmentRequests + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignments: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignments + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListUsageRights parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinitions: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleDefinitions + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetInformationProtection parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleSettings: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListAppRoleAssignedResources parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task': get: tags: - - privilegedAccess.governanceResource - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceResource' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -60388,17 +67818,15 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -60411,8 +67839,7 @@ paths: items: enum: - '*' - - resource - - roleDefinition + - taskProcessingResults type: string responses: '200': @@ -60420,188 +67847,75 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' links: - resource: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.RoleSetting.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinition: - operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.RoleSetting.GetRoleDefinition + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports.taskProcessingResults.Task.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': get: tags: - - privilegedAccess.governanceResource - summary: Get subject from privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_GetSubject + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.taskReports_summary parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: startDateTime in: path - description: 'key: id of governanceResource' + description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id + format: date-time + - name: endDateTime in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - - email - - principalName - - type - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string + format: date-time responses: '200': - description: Retrieved navigation property + description: Success content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - privilegedAccess.governanceResource - summary: Update the navigation property subject in privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_UpdateSubject - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - privilegedAccess.governanceResource - summary: Delete navigation property subject for privilegedAccess - operationId: privilegedAccess.resources.roleAssignmentRequests_DeleteSubject - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReportSummary' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments': + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults': get: tags: - - privilegedAccess.governanceResource - summary: Get roleAssignments from privilegedAccess - operationId: privilegedAccess.resources_ListRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_ListUserProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -60619,26 +67933,24 @@ paths: enum: - id - id desc - - assignmentState - - assignmentState desc - - endDateTime - - endDateTime desc - - externalId - - externalId desc - - linkedEligibleRoleAssignmentId - - linkedEligibleRoleAssignmentId desc - - memberType - - memberType desc - - resourceId - - resourceId desc - - roleDefinitionId - - roleDefinitionId desc - - startDateTime - - startDateTime desc - - status - - status desc - - subjectId - - subjectId desc + - completedDateTime + - completedDateTime desc + - failedTasksCount + - failedTasksCount desc + - processingStatus + - processingStatus desc + - scheduledDateTime + - scheduledDateTime desc + - startedDateTime + - startedDateTime desc + - totalTasksCount + - totalTasksCount desc + - totalUnprocessedTasksCount + - totalUnprocessedTasksCount desc + - workflowExecutionType + - workflowExecutionType desc + - workflowVersion + - workflowVersion desc type: string - name: $select in: query @@ -60651,20 +67963,17 @@ paths: items: enum: - id - - assignmentState - - endDateTime - - externalId - - linkedEligibleRoleAssignmentId - - memberType - - resourceId - - roleDefinitionId - - startDateTime - - status - - subjectId - - linkedEligibleRoleAssignment - - resource - - roleDefinition + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion - subject + - taskProcessingResults type: string - name: $expand in: query @@ -60677,14 +67986,12 @@ paths: items: enum: - '*' - - linkedEligibleRoleAssignment - - resource - - roleDefinition - subject + - taskProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.userProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -60693,30 +68000,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceResource - summary: Create new navigation property to roleAssignments for privilegedAccess - operationId: privilegedAccess.resources_CreateRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_CreateUserProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: workflow requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' required: true responses: '201': @@ -60724,38 +68025,33 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleAssignments from privilegedAccess - operationId: privilegedAccess.resources_GetRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_GetUserProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -60767,20 +68063,17 @@ paths: items: enum: - id - - assignmentState - - endDateTime - - externalId - - linkedEligibleRoleAssignmentId - - memberType - - resourceId - - roleDefinitionId - - startDateTime - - status - - subjectId - - linkedEligibleRoleAssignment - - resource - - roleDefinition + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion - subject + - taskProcessingResults type: string - name: $expand in: query @@ -60793,10 +68086,8 @@ paths: items: enum: - '*' - - linkedEligibleRoleAssignment - - resource - - roleDefinition - subject + - taskProcessingResults type: string responses: '200': @@ -60804,68 +68095,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' links: - linkedEligibleRoleAssignment: - operationId: privilegedAccess.resources.RoleAssignments.GetLinkedEligibleRoleAssignment - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - resource: - operationId: privilegedAccess.resources.RoleAssignments.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinition: - operationId: privilegedAccess.resources.RoleAssignments.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id subject: - operationId: privilegedAccess.resources.RoleAssignments.GetSubject + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.UserProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.UserProcessingResults.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleAssignments in privilegedAccess - operationId: privilegedAccess.resources_UpdateRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property userProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_UpdateUserProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: userProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' required: true responses: '204': @@ -60875,34 +68147,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleAssignments for privilegedAccess - operationId: privilegedAccess.resources_DeleteRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_DeleteUserProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: userProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -60911,34 +68179,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceResource - summary: Get linkedEligibleRoleAssignment from privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_GetLinkedEligibleRoleAssignment + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the AAD user targeted for the taskProcessingResult. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_GetSubject parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -60950,20 +68214,152 @@ paths: items: enum: - id - - assignmentState - - endDateTime - - externalId - - linkedEligibleRoleAssignmentId - - memberType - - resourceId - - roleDefinitionId - - startDateTime - - status - - subjectId - - linkedEligibleRoleAssignment - - resource - - roleDefinition - - subject + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -60976,10 +68372,71 @@ paths: items: enum: - '*' - - linkedEligibleRoleAssignment - - resource - - roleDefinition - - subject + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -60987,172 +68444,388 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.user' links: - linkedEligibleRoleAssignment: - operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetLinkedEligibleRoleAssignment + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - resource: - operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetResource + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinition: - operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetRoleDefinition + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListUsageRights parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - subject: - operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetSubject + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetInformationProtection parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/resource': - get: - tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_GetResource - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id - in: path - description: 'key: id of governanceRoleAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.resources.roleAssignments.Resource.GetParent + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListAppRoleAssignedResources parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleAssignmentRequests + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListAppRoleAssignments parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignments: - operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleAssignments + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListCreatedObjects parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinitions: - operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleDefinitions + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListDirectReports parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleSettings: - operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListLicenseDetails parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults': get: tags: - - privilegedAccess.governanceResource - summary: Get roleDefinition from privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_GetRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_ListTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id - in: path - description: 'key: id of governanceRoleAssignment' - required: true + x-ms-docs-key-type: userProcessingResult + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: governanceRoleAssignment + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc + type: string - name: $select in: query description: Select properties to be returned @@ -61164,12 +68837,13 @@ paths: items: enum: - id - - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -61182,138 +68856,89 @@ paths: items: enum: - '*' - - resource - - roleSetting + - subject + - task type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - links: - resource: - operationId: privilegedAccess.resources.roleAssignments.RoleDefinition.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleSetting: - operationId: privilegedAccess.resources.roleAssignments.RoleDefinition.GetRoleSetting - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleDefinition in privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_UpdateRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_CreateTaskProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: userProcessingResult requestBody: - description: New navigation property values + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleDefinition for privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_DeleteRoleDefinition - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id - in: path - description: 'key: id of governanceRoleAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleAssignments.roleDefinition_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_GetTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -61325,17 +68950,13 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -61348,11 +68969,8 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - task type: string responses: '200': @@ -61360,334 +68978,975 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - parent: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignments: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinitions: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleDefinitions + subject: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.TaskProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleSettings: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.TaskProcessingResults.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.workflow.userProcessingResults.userProcessingResult.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting': - get: + patch: tags: - - privilegedAccess.governanceResource - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.resources.roleAssignments.roleDefinition_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_UpdateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - resource - - roleDefinition - type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + required: true responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - links: - resource: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.RoleSetting.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinition: - operationId: privilegedAccess.resources.roleAssignments.roleDefinition.RoleSetting.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject': - get: + delete: tags: - - privilegedAccess.governanceResource - summary: Get subject from privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_GetSubject + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_DeleteTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - - email - - principalName - - type - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false + x-ms-docs-key-type: taskProcessingResult + - name: If-Match + in: header + description: ETag + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string + type: string responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property subject in privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_UpdateSubject + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults_resume parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: taskProcessingResult requestBody: - description: New navigation property values + description: Action parameters content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object required: true responses: '204': description: Success default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject': + get: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property subject for privilegedAccess - operationId: privilegedAccess.resources.roleAssignments_DeleteSubject + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleAssignment-id + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: If-Match - in: header - description: ETag + x-ms-docs-key-type: taskProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/microsoft.graph.export()': - get: + uniqueItems: true + type: array + items: + enum: + - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.user' + links: + analytics: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetAnalytics + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListCloudPCs + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task': + get: tags: - - privilegedAccess.Functions - summary: Invoke function export - operationId: privilegedAccess.resources.roleAssignments_export + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceResource' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - taskProcessingResults + type: string responses: '200': - description: Success + description: Retrieved navigation property content: application/json: schema: - title: Collection of governanceRoleAssignment - type: object - properties: - value: - type: array - items: - type: string - nullable: true - additionalProperties: - type: object + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults.taskProcessingResults.Task.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions': + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': get: tags: - - privilegedAccess.governanceResource - summary: Get roleDefinitions from privilegedAccess - operationId: privilegedAccess.resources_ListRoleDefinitions + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.userProcessingResults_summary parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + x-ms-docs-key-type: workflow + - name: startDateTime in: path - description: 'key: id of governanceResource' + description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - x-ms-docs-key-type: governanceResource + format: date-time + - name: endDateTime + in: path + description: 'Usage: endDateTime=''{endDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get versions from identityGovernance + description: The workflow versions that are available. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_ListVersions + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -61703,16 +69962,20 @@ paths: type: array items: enum: - - id - - id desc + - category + - category desc + - createdDateTime + - createdDateTime desc + - description + - description desc - displayName - displayName desc - - externalId - - externalId desc - - resourceId - - resourceId desc - - templateId - - templateId desc + - executionConditions + - executionConditions desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - versionNumber + - versionNumber desc type: string - name: $select in: query @@ -61724,13 +69987,16 @@ paths: type: array items: enum: - - id + - category + - createdDateTime + - description - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - executionConditions + - lastModifiedDateTime + - versionNumber + - createdBy + - lastModifiedBy + - tasks type: string - name: $expand in: query @@ -61743,12 +70009,13 @@ paths: items: enum: - '*' - - resource - - roleSetting + - createdBy + - lastModifiedBy + - tasks type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleDefinitionCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.workflowVersionCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -61757,30 +70024,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceResource - summary: Create new navigation property to roleDefinitions for privilegedAccess - operationId: privilegedAccess.resources_CreateRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to versions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_CreateVersions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource + x-ms-docs-key-type: workflow requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' required: true responses: '201': @@ -61788,38 +70049,37 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}': + '/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleDefinitions from privilegedAccess - operationId: privilegedAccess.resources_GetRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Get versions from identityGovernance + description: The workflow versions that are available. + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_GetVersions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: workflowVersion-versionNumber in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: versionNumber of workflowVersion' required: true + style: simple schema: - type: string - x-ms-docs-key-type: governanceRoleDefinition + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + x-ms-docs-key-type: workflowVersion - name: $select in: query description: Select properties to be returned @@ -61830,13 +70090,16 @@ paths: type: array items: enum: - - id + - category + - createdDateTime + - description - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - executionConditions + - lastModifiedDateTime + - versionNumber + - createdBy + - lastModifiedBy + - tasks type: string - name: $expand in: query @@ -61849,8 +70112,9 @@ paths: items: enum: - '*' - - resource - - roleSetting + - createdBy + - lastModifiedBy + - tasks type: string responses: '200': @@ -61858,56 +70122,57 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' links: - resource: - operationId: privilegedAccess.resources.RoleDefinitions.GetResource + createdBy: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.Versions.GetCreatedGraphBPre parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleSetting: - operationId: privilegedAccess.resources.RoleDefinitions.GetRoleSetting + workflow-id: $request.path.workflow-id + workflowVersion-versionNumber: $request.path.workflowVersion-versionNumber + lastModifiedBy: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.Versions.GetLastModifiedGraphBPre parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + workflow-id: $request.path.workflow-id + workflowVersion-versionNumber: $request.path.workflowVersion-versionNumber + tasks: + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows.Versions.ListTasks + parameters: + workflow-id: $request.path.workflow-id + workflowVersion-versionNumber: $request.path.workflowVersion-versionNumber default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleDefinitions in privilegedAccess - operationId: privilegedAccess.resources_UpdateRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property versions in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_UpdateVersions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: workflowVersion-versionNumber in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: versionNumber of workflowVersion' required: true + style: simple schema: - type: string - x-ms-docs-key-type: governanceRoleDefinition + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + x-ms-docs-key-type: workflowVersion requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' required: true responses: '204': @@ -61917,34 +70182,33 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleDefinitions for privilegedAccess - operationId: privilegedAccess.resources_DeleteRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property versions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.deletedItems.workflows_DeleteVersions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: workflowVersion-versionNumber in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: versionNumber of workflowVersion' required: true + style: simple schema: - type: string - x-ms-docs-key-type: governanceRoleDefinition + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + x-ms-docs-key-type: workflowVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -61953,34 +70217,14 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/resource': + /identityGovernance/lifecycleWorkflows/settings: get: tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleDefinitions_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get settings from identityGovernance + description: The settings of the lifecycle workflows instance. + operationId: identityGovernance.lifecycleWorkflows_GetSettings parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleDefinition-id - in: path - description: 'key: id of governanceRoleDefinition' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleDefinition - name: $select in: query description: Select properties to be returned @@ -61992,17 +70236,7 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - workflowScheduleIntervalInHours type: string - name: $expand in: query @@ -62015,11 +70249,6 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings type: string responses: '200': @@ -62027,150 +70256,54 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.resources.roleDefinitions.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleAssignments: - operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleDefinitions: - operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleSettings: - operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleSettings - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleManagementSettings' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting': - get: + patch: tags: - - privilegedAccess.governanceResource - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.resources.roleDefinitions_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property settings in identityGovernance + operationId: identityGovernance.lifecycleWorkflows_UpdateSettings + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleManagementSettings' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property settings for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_DeleteSettings parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleDefinition-id - in: path - description: 'key: id of governanceRoleDefinition' - required: true + - name: If-Match + in: header + description: ETag + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleDefinition - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - resource - - roleDefinition - type: string responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - links: - resource: - operationId: privilegedAccess.resources.roleDefinitions.RoleSetting.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleDefinition: - operationId: privilegedAccess.resources.roleDefinitions.RoleSetting.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings': + /identityGovernance/lifecycleWorkflows/taskDefinitions: get: tags: - - privilegedAccess.governanceResource - summary: Get roleSettings from privilegedAccess - operationId: privilegedAccess.resources_ListRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskDefinitions from identityGovernance + description: The definition of tasks within the lifecycle workflows instance. + operationId: identityGovernance.lifecycleWorkflows_ListTaskDefinitions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -62188,24 +70321,18 @@ paths: enum: - id - id desc - - adminEligibleSettings - - adminEligibleSettings desc - - adminMemberSettings - - adminMemberSettings desc - - isDefault - - isDefault desc - - lastUpdatedBy - - lastUpdatedBy desc - - lastUpdatedDateTime - - lastUpdatedDateTime desc - - resourceId - - resourceId desc - - roleDefinitionId - - roleDefinitionId desc - - userEligibleSettings - - userEligibleSettings desc - - userMemberSettings - - userMemberSettings desc + - category + - category desc + - continueOnError + - continueOnError desc + - description + - description desc + - displayName + - displayName desc + - parameters + - parameters desc + - version + - version desc type: string - name: $select in: query @@ -62218,17 +70345,12 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - category + - continueOnError + - description + - displayName + - parameters + - version type: string - name: $expand in: query @@ -62241,12 +70363,10 @@ paths: items: enum: - '*' - - resource - - roleDefinition type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleSettingCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskDefinitionCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -62255,30 +70375,15 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceResource - summary: Create new navigation property to roleSettings for privilegedAccess - operationId: privilegedAccess.resources_CreateRoleSettings - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskDefinitions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_CreateTaskDefinitions requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' required: true responses: '201': @@ -62286,38 +70391,26 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}': + '/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleSettings from privilegedAccess - operationId: privilegedAccess.resources_GetRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskDefinitions from identityGovernance + description: The definition of tasks within the lifecycle workflows instance. + operationId: identityGovernance.lifecycleWorkflows_GetTaskDefinitions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id + - name: taskDefinition-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskDefinition' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskDefinition - name: $select in: query description: Select properties to be returned @@ -62329,17 +70422,12 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - category + - continueOnError + - description + - displayName + - parameters + - version type: string - name: $expand in: query @@ -62352,8 +70440,6 @@ paths: items: enum: - '*' - - resource - - roleDefinition type: string responses: '200': @@ -62361,56 +70447,30 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - links: - resource: - operationId: privilegedAccess.resources.RoleSettings.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinition: - operationId: privilegedAccess.resources.RoleSettings.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleSettings in privilegedAccess - operationId: privilegedAccess.resources_UpdateRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskDefinitions in identityGovernance + operationId: identityGovernance.lifecycleWorkflows_UpdateTaskDefinitions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: taskDefinition-id in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id - in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskDefinition' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskDefinition requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' required: true responses: '204': @@ -62420,34 +70480,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleSettings for privilegedAccess - operationId: privilegedAccess.resources_DeleteRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskDefinitions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_DeleteTaskDefinitions parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id + - name: taskDefinition-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskDefinition' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskDefinition - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -62456,34 +70504,54 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/resource': + /identityGovernance/lifecycleWorkflows/workflows: get: tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleSettings_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get workflows from identityGovernance + description: The workflows in the lifecycle workflows instance. + operationId: identityGovernance.lifecycleWorkflows_ListWorkflows parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id - in: path - description: 'key: id of governanceRoleSetting' - required: true + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: governanceRoleSetting + uniqueItems: true + type: array + items: + enum: + - category + - category desc + - createdDateTime + - createdDateTime desc + - description + - description desc + - displayName + - displayName desc + - executionConditions + - executionConditions desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - deletedDateTime + - deletedDateTime desc + - id + - id desc + - isEnabled + - isEnabled desc + - isSchedulingEnabled + - isSchedulingEnabled desc + - nextScheduleRunDateTime + - nextScheduleRunDateTime desc + - version + - version desc + type: string - name: $select in: query description: Select properties to be returned @@ -62494,18 +70562,26 @@ paths: type: array items: enum: - - id + - category + - createdDateTime + - description - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - executionConditions + - lastModifiedDateTime + - deletedDateTime + - id + - isEnabled + - isSchedulingEnabled + - nextScheduleRunDateTime + - version + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string - name: $expand in: query @@ -62518,81 +70594,62 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string responses: '200': - description: Retrieved navigation property + $ref: '#/components/responses/microsoft.graph.identityGovernance.workflowCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to workflows for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_CreateWorkflows + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + required: true + responses: + '201': + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.resources.roleSettings.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignments: - operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinitions: - operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleSettings: - operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleSettings - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleDefinition from privilegedAccess - operationId: privilegedAccess.resources.roleSettings_GetRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get workflows from identityGovernance + description: The workflows in the lifecycle workflows instance. + operationId: identityGovernance.lifecycleWorkflows_GetWorkflows parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id - in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: workflow - name: $select in: query description: Select properties to be returned @@ -62603,13 +70660,26 @@ paths: type: array items: enum: - - id + - category + - createdDateTime + - description - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - executionConditions + - lastModifiedDateTime + - deletedDateTime + - id + - isEnabled + - isSchedulingEnabled + - nextScheduleRunDateTime + - version + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string - name: $expand in: query @@ -62622,8 +70692,14 @@ paths: items: enum: - '*' - - resource - - roleSetting + - createdBy + - lastModifiedBy + - tasks + - executionScope + - runs + - taskReports + - userProcessingResults + - versions type: string responses: '200': @@ -62631,56 +70707,69 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' links: - resource: - operationId: privilegedAccess.resources.roleSettings.RoleDefinition.GetResource + createdBy: + operationId: identityGovernance.lifecycleWorkflows.Workflows.GetCreatedGraphBPre parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleSetting: - operationId: privilegedAccess.resources.roleSettings.RoleDefinition.GetRoleSetting + workflow-id: $request.path.workflow-id + lastModifiedBy: + operationId: identityGovernance.lifecycleWorkflows.Workflows.GetLastModifiedGraphBPre parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.Workflows.ListTasks + parameters: + workflow-id: $request.path.workflow-id + executionScope: + operationId: identityGovernance.lifecycleWorkflows.Workflows.ListExecutionScope + parameters: + workflow-id: $request.path.workflow-id + runs: + operationId: identityGovernance.lifecycleWorkflows.Workflows.ListRuns + parameters: + workflow-id: $request.path.workflow-id + taskReports: + operationId: identityGovernance.lifecycleWorkflows.Workflows.ListTaskReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.Workflows.ListUserProcessingResults + parameters: + workflow-id: $request.path.workflow-id + versions: + operationId: identityGovernance.lifecycleWorkflows.Workflows.ListVersions + parameters: + workflow-id: $request.path.workflow-id + activate: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.activate + createNewVersion: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.createNewVersion + restore: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.restore default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceResource - summary: Update the navigation property roleDefinition in privilegedAccess - operationId: privilegedAccess.resources.roleSettings_UpdateRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property workflows in identityGovernance + operationId: identityGovernance.lifecycleWorkflows_UpdateWorkflows parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' - required: true - schema: - type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id + - name: workflow-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: workflow requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' required: true responses: '204': @@ -62690,34 +70779,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceResource - summary: Delete navigation property roleDefinition for privilegedAccess - operationId: privilegedAccess.resources.roleSettings_DeleteRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property workflows for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_DeleteWorkflows parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id - in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id - in: path - description: 'key: id of governanceRoleSetting' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: workflow - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -62726,34 +70803,202 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope': get: tags: - - privilegedAccess.governanceResource - summary: Get resource from privilegedAccess - operationId: privilegedAccess.resources.roleSettings.roleDefinition_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get executionScope from identityGovernance + description: The unique identifier of the Azure AD identity that last modified the workflow object.. + operationId: identityGovernance.lifecycleWorkflows.workflows_ListExecutionScope parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id - in: path - description: 'key: id of governanceRoleSetting' - required: true + x-ms-docs-key-type: workflow + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: governanceRoleSetting + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - deletedDateTime + - deletedDateTime desc + - signInActivity + - signInActivity desc + - accountEnabled + - accountEnabled desc + - ageGroup + - ageGroup desc + - assignedLicenses + - assignedLicenses desc + - assignedPlans + - assignedPlans desc + - authorizationInfo + - authorizationInfo desc + - businessPhones + - businessPhones desc + - city + - city desc + - companyName + - companyName desc + - consentProvidedForMinor + - consentProvidedForMinor desc + - country + - country desc + - createdDateTime + - createdDateTime desc + - creationType + - creationType desc + - customSecurityAttributes + - customSecurityAttributes desc + - department + - department desc + - deviceKeys + - deviceKeys desc + - displayName + - displayName desc + - employeeHireDate + - employeeHireDate desc + - employeeId + - employeeId desc + - employeeLeaveDateTime + - employeeLeaveDateTime desc + - employeeOrgData + - employeeOrgData desc + - employeeType + - employeeType desc + - externalUserState + - externalUserState desc + - externalUserStateChangeDateTime + - externalUserStateChangeDateTime desc + - faxNumber + - faxNumber desc + - givenName + - givenName desc + - identities + - identities desc + - imAddresses + - imAddresses desc + - infoCatalogs + - infoCatalogs desc + - isManagementRestricted + - isManagementRestricted desc + - isResourceAccount + - isResourceAccount desc + - jobTitle + - jobTitle desc + - lastPasswordChangeDateTime + - lastPasswordChangeDateTime desc + - legalAgeGroupClassification + - legalAgeGroupClassification desc + - licenseAssignmentStates + - licenseAssignmentStates desc + - mail + - mail desc + - mailNickname + - mailNickname desc + - mobilePhone + - mobilePhone desc + - officeLocation + - officeLocation desc + - onPremisesDistinguishedName + - onPremisesDistinguishedName desc + - onPremisesDomainName + - onPremisesDomainName desc + - onPremisesExtensionAttributes + - onPremisesExtensionAttributes desc + - onPremisesImmutableId + - onPremisesImmutableId desc + - onPremisesLastSyncDateTime + - onPremisesLastSyncDateTime desc + - onPremisesProvisioningErrors + - onPremisesProvisioningErrors desc + - onPremisesSamAccountName + - onPremisesSamAccountName desc + - onPremisesSecurityIdentifier + - onPremisesSecurityIdentifier desc + - onPremisesSyncEnabled + - onPremisesSyncEnabled desc + - onPremisesUserPrincipalName + - onPremisesUserPrincipalName desc + - otherMails + - otherMails desc + - passwordPolicies + - passwordPolicies desc + - passwordProfile + - passwordProfile desc + - postalCode + - postalCode desc + - preferredDataLocation + - preferredDataLocation desc + - preferredLanguage + - preferredLanguage desc + - provisionedPlans + - provisionedPlans desc + - proxyAddresses + - proxyAddresses desc + - refreshTokensValidFromDateTime + - refreshTokensValidFromDateTime desc + - securityIdentifier + - securityIdentifier desc + - showInAddressList + - showInAddressList desc + - signInSessionsValidFromDateTime + - signInSessionsValidFromDateTime desc + - state + - state desc + - streetAddress + - streetAddress desc + - surname + - surname desc + - usageLocation + - usageLocation desc + - userPrincipalName + - userPrincipalName desc + - userType + - userType desc + - mailboxSettings + - mailboxSettings desc + - deviceEnrollmentLimit + - deviceEnrollmentLimit desc + - print + - print desc + - aboutMe + - aboutMe desc + - birthday + - birthday desc + - hireDate + - hireDate desc + - interests + - interests desc + - mySite + - mySite desc + - pastProjects + - pastProjects desc + - preferredName + - preferredName desc + - responsibilities + - responsibilities desc + - schools + - schools desc + - skills + - skills desc + type: string - name: $select in: query description: Select properties to be returned @@ -62765,17 +71010,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -62788,81 +71168,105 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignmentRequests: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignments: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinitions: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleSettings: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleSettings - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + $ref: '#/components/responses/microsoft.graph.userCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{user-id}': get: tags: - - privilegedAccess.governanceResource - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.resources.roleSettings.roleDefinition_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Get executionScope from identityGovernance + description: The unique identifier of the Azure AD identity that last modified the workflow object.. + operationId: identityGovernance.lifecycleWorkflows.workflows_GetExecutionScope parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceResource-id + - name: workflow-id in: path - description: 'key: id of governanceResource' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceResource - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: user-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of user' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: user - name: $select in: query description: Select properties to be returned @@ -62874,17 +71278,152 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -62897,8 +71436,71 @@ paths: items: enum: - '*' - - resource - - roleDefinition + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -62906,37 +71508,351 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.user' links: - resource: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.RoleSetting.GetResource + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinition: - operationId: privilegedAccess.resources.roleSettings.roleDefinition.RoleSetting.GetRoleDefinition + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceResource-id: $request.path.governanceResource-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetManager + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListContacts + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListEvents + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListMessages + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListPeople + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetDrive + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListDrives + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetInsights + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetSettings + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetProfile + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListActivities + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListDevices + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetPresence + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetTasks + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListChats + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.ExecutionScope.GetTodo + parameters: + workflow-id: $request.path.workflow-id + user-id: $request.path.user-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/resources/microsoft.graph.register': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.activate': post: tags: - - privilegedAccess.Actions - summary: Invoke action register - operationId: privilegedAccess.resources_register + - identityGovernance.Actions + summary: Invoke action activate + operationId: identityGovernance.lifecycleWorkflows.workflows_activate parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow requestBody: description: Action parameters content: @@ -62944,9 +71860,10 @@ paths: schema: type: object properties: - externalId: - type: string - nullable: true + subjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.user' additionalProperties: type: object required: true @@ -62956,20 +71873,83 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.createNewVersion': + post: + tags: + - identityGovernance.Actions + summary: Invoke action createNewVersion + operationId: identityGovernance.lifecycleWorkflows.workflows_createNewVersion + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + workflow: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/microsoft.graph.identityGovernance.restore': + post: + tags: + - identityGovernance.Actions + summary: Invoke action restore + operationId: identityGovernance.lifecycleWorkflows.workflows_restore + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs': get: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get roleAssignmentRequests from privilegedAccess - operationId: privilegedAccess_ListRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Get runs from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_ListRuns parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -62987,26 +71967,30 @@ paths: enum: - id - id desc - - assignmentState - - assignmentState desc - - linkedEligibleRoleAssignmentId - - linkedEligibleRoleAssignmentId desc - - reason - - reason desc - - requestedDateTime - - requestedDateTime desc - - resourceId - - resourceId desc - - roleDefinitionId - - roleDefinitionId desc - - schedule - - schedule desc - - status - - status desc - - subjectId - - subjectId desc - - type - - type desc + - completedDateTime + - completedDateTime desc + - failedTasksCount + - failedTasksCount desc + - failedUsersCount + - failedUsersCount desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - processingStatus + - processingStatus desc + - scheduledDateTime + - scheduledDateTime desc + - startedDateTime + - startedDateTime desc + - successfulUsersCount + - successfulUsersCount desc + - totalTasksCount + - totalTasksCount desc + - totalUnprocessedTasksCount + - totalUnprocessedTasksCount desc + - totalUsersCount + - totalUsersCount desc + - workflowExecutionType + - workflowExecutionType desc type: string - name: $select in: query @@ -63019,19 +72003,20 @@ paths: items: enum: - id - - assignmentState - - linkedEligibleRoleAssignmentId - - reason - - requestedDateTime - - resourceId - - roleDefinitionId - - schedule - - status - - subjectId - - type - - resource - - roleDefinition - - subject + - completedDateTime + - failedTasksCount + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - scheduledDateTime + - startedDateTime + - successfulUsersCount + - totalTasksCount + - totalUnprocessedTasksCount + - totalUsersCount + - workflowExecutionType + - taskProcessingResults + - userProcessingResults type: string - name: $expand in: query @@ -63044,13 +72029,12 @@ paths: items: enum: - '*' - - resource - - roleDefinition - - subject + - taskProcessingResults + - userProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentRequestCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.runCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -63059,23 +72043,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Create new navigation property to roleAssignmentRequests for privilegedAccess - operationId: privilegedAccess_CreateRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to runs for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_CreateRuns parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' required: true responses: '201': @@ -63083,31 +72068,33 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}': get: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get roleAssignmentRequests from privilegedAccess - operationId: privilegedAccess_GetRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Get runs from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_GetRuns parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run - name: $select in: query description: Select properties to be returned @@ -63119,19 +72106,20 @@ paths: items: enum: - id - - assignmentState - - linkedEligibleRoleAssignmentId - - reason - - requestedDateTime - - resourceId - - roleDefinitionId - - schedule - - status - - subjectId - - type - - resource - - roleDefinition - - subject + - completedDateTime + - failedTasksCount + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - scheduledDateTime + - startedDateTime + - successfulUsersCount + - totalTasksCount + - totalUnprocessedTasksCount + - totalUsersCount + - workflowExecutionType + - taskProcessingResults + - userProcessingResults type: string - name: $expand in: query @@ -63144,9 +72132,8 @@ paths: items: enum: - '*' - - resource - - roleDefinition - - subject + - taskProcessingResults + - userProcessingResults type: string responses: '200': @@ -63154,56 +72141,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' links: - resource: - operationId: privilegedAccess.RoleAssignmentRequests.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinition: - operationId: privilegedAccess.RoleAssignmentRequests.GetRoleDefinition + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.Runs.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - subject: - operationId: privilegedAccess.RoleAssignmentRequests.GetSubject + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.Runs.ListUserProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - cancel: - operationId: privilegedAccess.privilegedAccess.roleAssignmentRequests.governanceRoleAssignmentRequest.cancel - updateRequest: - operationId: privilegedAccess.privilegedAccess.roleAssignmentRequests.governanceRoleAssignmentRequest.updateRequest + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Update the navigation property roleAssignmentRequests in privilegedAccess - operationId: privilegedAccess_UpdateRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property runs in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_UpdateRuns parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' required: true responses: '204': @@ -63213,27 +72193,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Delete navigation property roleAssignmentRequests for privilegedAccess - operationId: privilegedAccess_DeleteRoleAssignmentRequests + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property runs for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_DeleteRuns parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -63242,106 +72225,58 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.cancel': - post: - tags: - - privilegedAccess.Actions - summary: Invoke action cancel - operationId: privilegedAccess.roleAssignmentRequests_cancel - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.updateRequest': - post: - tags: - - privilegedAccess.Actions - summary: Invoke action updateRequest - operationId: privilegedAccess.roleAssignmentRequests_updateRequest - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - decision: - type: string - nullable: true - assignmentState: - type: string - nullable: true - schedule: - $ref: '#/components/schemas/microsoft.graph.governanceSchedule' - reason: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults': get: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_ListTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc + type: string - name: $select in: query description: Select properties to be returned @@ -63353,17 +72288,13 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -63376,69 +72307,89 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - task type: string responses: '200': - description: Retrieved navigation property + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_CreateTaskProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + required: true + responses: + '201': + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.roleAssignmentRequests.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignmentRequests: - operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignments: - operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinitions: - operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleSettings: - operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleSettings - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get roleDefinition from privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_GetRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_GetTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -63450,12 +72401,13 @@ paths: items: enum: - id - - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -63468,8 +72420,8 @@ paths: items: enum: - '*' - - resource - - roleSetting + - subject + - task type: string responses: '200': @@ -63477,47 +72429,61 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - resource: - operationId: privilegedAccess.roleAssignmentRequests.RoleDefinition.GetResource + subject: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.TaskProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleSetting: - operationId: privilegedAccess.roleAssignmentRequests.RoleDefinition.GetRoleSetting + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.TaskProcessingResults.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.runs.run.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Update the navigation property roleDefinition in privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_UpdateRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_UpdateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -63527,27 +72493,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Delete navigation property roleDefinition for privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_DeleteRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_DeleteTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -63556,124 +72533,93 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource': - get: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition_GetResource + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults_resume parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignmentRequests: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleAssignments: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinitions: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleSettings: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleSettings - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + '204': + description: Success default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting': + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -63685,17 +72631,152 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -63708,8 +72789,71 @@ paths: items: enum: - '*' - - resource - - roleDefinition + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -63717,42 +72861,433 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.user' links: - resource: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.RoleSetting.GetResource + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - roleDefinition: - operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.RoleSetting.GetRoleDefinition + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject': - get: - tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Get subject from privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_GetSubject + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest + x-ms-docs-key-type: run + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -63764,10 +73299,15 @@ paths: items: enum: - id + - arguments + - category + - continueOnError + - description - displayName - - email - - principalName - - type + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -63780,6 +73320,7 @@ paths: items: enum: - '*' + - taskProcessingResults type: string responses: '200': @@ -63787,88 +73328,41 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Update the navigation property subject in privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_UpdateSubject - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id - in: path - description: 'key: id of governanceRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' - required: true - responses: - '204': - description: Success + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.taskProcessingResults.Task.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults': + get: tags: - - privilegedAccess.governanceRoleAssignmentRequest - summary: Delete navigation property subject for privilegedAccess - operationId: privilegedAccess.roleAssignmentRequests_DeleteSubject + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + description: The associated individual user execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_ListUserProcessingResults parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignmentRequest-id + - name: workflow-id in: path - description: 'key: id of governanceRoleAssignmentRequest' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignmentRequest - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments': - get: - tags: - - privilegedAccess.governanceRoleAssignment - summary: Get roleAssignments from privilegedAccess - operationId: privilegedAccess_ListRoleAssignments - parameters: - - name: privilegedAccess-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: run - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -63886,26 +73380,24 @@ paths: enum: - id - id desc - - assignmentState - - assignmentState desc - - endDateTime - - endDateTime desc - - externalId - - externalId desc - - linkedEligibleRoleAssignmentId - - linkedEligibleRoleAssignmentId desc - - memberType - - memberType desc - - resourceId - - resourceId desc - - roleDefinitionId - - roleDefinitionId desc - - startDateTime - - startDateTime desc - - status - - status desc - - subjectId - - subjectId desc + - completedDateTime + - completedDateTime desc + - failedTasksCount + - failedTasksCount desc + - processingStatus + - processingStatus desc + - scheduledDateTime + - scheduledDateTime desc + - startedDateTime + - startedDateTime desc + - totalTasksCount + - totalTasksCount desc + - totalUnprocessedTasksCount + - totalUnprocessedTasksCount desc + - workflowExecutionType + - workflowExecutionType desc + - workflowVersion + - workflowVersion desc type: string - name: $select in: query @@ -63918,20 +73410,17 @@ paths: items: enum: - id - - assignmentState - - endDateTime - - externalId - - linkedEligibleRoleAssignmentId - - memberType - - resourceId - - roleDefinitionId - - startDateTime - - status - - subjectId - - linkedEligibleRoleAssignment - - resource - - roleDefinition + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion - subject + - taskProcessingResults type: string - name: $expand in: query @@ -63944,14 +73433,12 @@ paths: items: enum: - '*' - - linkedEligibleRoleAssignment - - resource - - roleDefinition - subject + - taskProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.userProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -63960,23 +73447,32 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceRoleAssignment - summary: Create new navigation property to roleAssignments for privilegedAccess - operationId: privilegedAccess_CreateRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_CreateUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' required: true responses: '201': @@ -63984,31 +73480,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}': get: tags: - - privilegedAccess.governanceRoleAssignment - summary: Get roleAssignments from privilegedAccess - operationId: privilegedAccess_GetRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + description: The associated individual user execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_GetUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -64020,20 +73527,17 @@ paths: items: enum: - id - - assignmentState - - endDateTime - - externalId - - linkedEligibleRoleAssignmentId - - memberType - - resourceId - - roleDefinitionId - - startDateTime - - status - - subjectId - - linkedEligibleRoleAssignment - - resource - - roleDefinition + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion - subject + - taskProcessingResults type: string - name: $expand in: query @@ -64046,10 +73550,8 @@ paths: items: enum: - '*' - - linkedEligibleRoleAssignment - - resource - - roleDefinition - subject + - taskProcessingResults type: string responses: '200': @@ -64057,57 +73559,59 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' links: - linkedEligibleRoleAssignment: - operationId: privilegedAccess.RoleAssignments.GetLinkedEligibleRoleAssignment - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - resource: - operationId: privilegedAccess.RoleAssignments.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinition: - operationId: privilegedAccess.RoleAssignments.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id subject: - operationId: privilegedAccess.RoleAssignments.GetSubject + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.UserProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.UserProcessingResults.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceRoleAssignment - summary: Update the navigation property roleAssignments in privilegedAccess - operationId: privilegedAccess_UpdateRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property userProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_UpdateUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' required: true responses: '204': @@ -64117,27 +73621,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceRoleAssignment - summary: Delete navigation property roleAssignments for privilegedAccess - operationId: privilegedAccess_DeleteRoleAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_DeleteUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -64146,27 +73661,38 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceRoleAssignment - summary: Get linkedEligibleRoleAssignment from privilegedAccess - operationId: privilegedAccess.roleAssignments_GetLinkedEligibleRoleAssignment + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the AAD user targeted for the taskProcessingResult. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -64178,20 +73704,152 @@ paths: items: enum: - id - - assignmentState - - endDateTime - - externalId - - linkedEligibleRoleAssignmentId - - memberType - - resourceId - - roleDefinitionId - - startDateTime - - status - - subjectId - - linkedEligibleRoleAssignment - - resource - - roleDefinition - - subject + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -64204,10 +73862,71 @@ paths: items: enum: - '*' - - linkedEligibleRoleAssignment - - resource - - roleDefinition - - subject + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -64215,149 +73934,461 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.user' links: - linkedEligibleRoleAssignment: - operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetLinkedEligibleRoleAssignment + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - resource: - operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetResource + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinition: - operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetRoleDefinition + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListUsageRights parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - subject: - operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetSubject + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetInformationProtection parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/resource': - get: - tags: - - privilegedAccess.governanceRoleAssignment - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleAssignments_GetResource - parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id - in: path - description: 'key: id of governanceRoleAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - links: - parent: - operationId: privilegedAccess.roleAssignments.Resource.GetParent + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListAppRoleAssignedResources parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignmentRequests: - operationId: privilegedAccess.roleAssignments.Resource.ListRoleAssignmentRequests + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListAppRoleAssignments parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignments: - operationId: privilegedAccess.roleAssignments.Resource.ListRoleAssignments + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListCreatedObjects parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinitions: - operationId: privilegedAccess.roleAssignments.Resource.ListRoleDefinitions + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListDirectReports parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleSettings: - operationId: privilegedAccess.roleAssignments.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListLicenseDetails parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults': get: tags: - - privilegedAccess.governanceRoleAssignment - summary: Get roleDefinition from privilegedAccess - operationId: privilegedAccess.roleAssignments_GetRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_ListTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc + type: string - name: $select in: query description: Select properties to be returned @@ -64369,12 +74400,13 @@ paths: items: enum: - id - - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -64387,115 +74419,105 @@ paths: items: enum: - '*' - - resource - - roleSetting + - subject + - task type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - links: - resource: - operationId: privilegedAccess.roleAssignments.RoleDefinition.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleSetting: - operationId: privilegedAccess.roleAssignments.RoleDefinition.GetRoleSetting - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - privilegedAccess.governanceRoleAssignment - summary: Update the navigation property roleDefinition in privilegedAccess - operationId: privilegedAccess.roleAssignments_UpdateRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_CreateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult requestBody: - description: New navigation property values + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: - '204': - description: Success + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}': + get: tags: - - privilegedAccess.governanceRoleAssignment - summary: Delete navigation property roleDefinition for privilegedAccess - operationId: privilegedAccess.roleAssignments_DeleteRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_GetTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource': - get: - tags: - - privilegedAccess.governanceRoleAssignment - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleAssignments.roleDefinition_GetResource - parameters: - - name: privilegedAccess-id + x-ms-docs-key-type: run + - name: userProcessingResult-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of taskProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -64507,17 +74529,13 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -64530,11 +74548,8 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - task type: string responses: '200': @@ -64542,285 +74557,1134 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - parent: - operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignmentRequests: - operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleAssignments: - operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinitions: - operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleDefinitions + subject: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.TaskProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleSettings: - operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.TaskProcessingResults.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.runs.run.userProcessingResults.userProcessingResult.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting': - get: + patch: tags: - - privilegedAccess.governanceRoleAssignment - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.roleAssignments.roleDefinition_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_UpdateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - resource - - roleDefinition - type: string + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + required: true responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - links: - resource: - operationId: privilegedAccess.roleAssignments.roleDefinition.RoleSetting.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id - roleDefinition: - operationId: privilegedAccess.roleAssignments.roleDefinition.RoleSetting.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject': - get: + delete: tags: - - privilegedAccess.governanceRoleAssignment - summary: Get subject from privilegedAccess - operationId: privilegedAccess.roleAssignments_GetSubject + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_DeleteTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - id - - displayName - - email - - principalName - - type - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - '*' - type: string + type: string + x-ms-docs-key-type: taskProcessingResult + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' + '204': + description: Success default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: tags: - - privilegedAccess.governanceRoleAssignment - summary: Update the navigation property subject in privilegedAccess - operationId: privilegedAccess.roleAssignments_UpdateSubject + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults_resume parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: - description: New navigation property values + description: Action parameters content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object required: true responses: '204': description: Success default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject': + get: tags: - - privilegedAccess.governanceRoleAssignment - summary: Delete navigation property subject for privilegedAccess - operationId: privilegedAccess.roleAssignments_DeleteSubject + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleAssignment-id + x-ms-docs-key-type: workflow + - name: run-id in: path - description: 'key: id of governanceRoleAssignment' + description: 'key: id of run' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleAssignment - - name: If-Match - in: header - description: ETag + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple schema: type: string - responses: - '204': - description: Success - default: + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.user' + links: + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetAnalytics + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCloudPCs + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleAssignments/microsoft.graph.export()': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task': get: tags: - - privilegedAccess.Functions - summary: Invoke function export - operationId: privilegedAccess.roleAssignments_export + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - taskProcessingResults + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults.taskProcessingResults.Task.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + run-id: $request.path.run-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': + get: + tags: + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.workflows.runs.userProcessingResults_summary + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: run-id + in: path + description: 'key: id of run' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: run + - name: startDateTime + in: path + description: 'Usage: startDateTime=''{startDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + - name: endDateTime + in: path + description: 'Usage: endDateTime=''{endDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time responses: '200': description: Success content: application/json: schema: - title: Collection of governanceRoleAssignment - type: object - properties: - value: - type: array - items: - type: string - nullable: true - additionalProperties: - type: object + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userSummary' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: function - '/privilegedAccess/{privilegedAccess-id}/roleDefinitions': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': get: tags: - - privilegedAccess.governanceRoleDefinition - summary: Get roleDefinitions from privilegedAccess - operationId: privilegedAccess_ListRoleDefinitions + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.workflows.runs_summary parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: startDateTime + in: path + description: 'Usage: startDateTime=''{startDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + - name: endDateTime + in: path + description: 'Usage: endDateTime=''{endDateTime}''' + required: true + style: simple + schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.runSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskReports from identityGovernance + description: Represents the aggregation of task execution data for tasks within a workflow object. + operationId: identityGovernance.lifecycleWorkflows.workflows_ListTaskReports + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -64838,14 +75702,24 @@ paths: enum: - id - id desc - - displayName - - displayName desc - - externalId - - externalId desc - - resourceId - - resourceId desc - - templateId - - templateId desc + - completedDateTime + - completedDateTime desc + - failedUsersCount + - failedUsersCount desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - processingStatus + - processingStatus desc + - runId + - runId desc + - startedDateTime + - startedDateTime desc + - successfulUsersCount + - successfulUsersCount desc + - totalUsersCount + - totalUsersCount desc + - unprocessedUsersCount + - unprocessedUsersCount desc type: string - name: $select in: query @@ -64858,12 +75732,18 @@ paths: items: enum: - id - - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - completedDateTime + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - runId + - startedDateTime + - successfulUsersCount + - totalUsersCount + - unprocessedUsersCount + - task + - taskDefinition + - taskProcessingResults type: string - name: $expand in: query @@ -64876,12 +75756,13 @@ paths: items: enum: - '*' - - resource - - roleSetting + - task + - taskDefinition + - taskProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleDefinitionCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskReportCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -64890,23 +75771,24 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceRoleDefinition - summary: Create new navigation property to roleDefinitions for privilegedAccess - operationId: privilegedAccess_CreateRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskReports for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_CreateTaskReports parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' required: true responses: '201': @@ -64914,31 +75796,34 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}': get: tags: - - privilegedAccess.governanceRoleDefinition - summary: Get roleDefinitions from privilegedAccess - operationId: privilegedAccess_GetRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskReports from identityGovernance + description: Represents the aggregation of task execution data for tasks within a workflow object. + operationId: identityGovernance.lifecycleWorkflows.workflows_GetTaskReports parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleDefinition + x-ms-docs-key-type: taskReport - name: $select in: query description: Select properties to be returned @@ -64950,12 +75835,18 @@ paths: items: enum: - id - - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - completedDateTime + - failedUsersCount + - lastUpdatedDateTime + - processingStatus + - runId + - startedDateTime + - successfulUsersCount + - totalUsersCount + - unprocessedUsersCount + - task + - taskDefinition + - taskProcessingResults type: string - name: $expand in: query @@ -64968,8 +75859,9 @@ paths: items: enum: - '*' - - resource - - roleSetting + - task + - taskDefinition + - taskProcessingResults type: string responses: '200': @@ -64977,47 +75869,54 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' links: - resource: - operationId: privilegedAccess.RoleDefinitions.GetResource + task: + operationId: identityGovernance.lifecycleWorkflows.workflows.TaskReports.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleSetting: - operationId: privilegedAccess.RoleDefinitions.GetRoleSetting + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskDefinition: + operationId: identityGovernance.lifecycleWorkflows.workflows.TaskReports.GetTaskDefinition parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.TaskReports.ListTaskProcessingResults + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceRoleDefinition - summary: Update the navigation property roleDefinitions in privilegedAccess - operationId: privilegedAccess_UpdateRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskReports in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_UpdateTaskReports parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleDefinition + x-ms-docs-key-type: taskReport requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' required: true responses: '204': @@ -65027,27 +75926,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceRoleDefinition - summary: Delete navigation property roleDefinitions for privilegedAccess - operationId: privilegedAccess_DeleteRoleDefinitions + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskReports for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_DeleteTaskReports parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleDefinition + x-ms-docs-key-type: taskReport - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -65056,27 +75958,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/resource': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task': get: tags: - - privilegedAccess.governanceRoleDefinition - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleDefinitions_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related lifecycle workflow task. + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleDefinition + x-ms-docs-key-type: taskReport - name: $select in: query description: Select properties to be returned @@ -65088,17 +75993,15 @@ paths: items: enum: - id + - arguments + - category + - continueOnError + - description - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -65111,11 +76014,7 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - taskProcessingResults type: string responses: '200': @@ -65123,57 +76022,40 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' links: - parent: - operationId: privilegedAccess.roleDefinitions.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleAssignmentRequests: - operationId: privilegedAccess.roleDefinitions.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleAssignments: - operationId: privilegedAccess.roleDefinitions.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleDefinitions: - operationId: privilegedAccess.roleDefinitions.Resource.ListRoleDefinitions - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleSettings: - operationId: privilegedAccess.roleDefinitions.Resource.ListRoleSettings + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.Task.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition': get: tags: - - privilegedAccess.governanceRoleDefinition - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.roleDefinitions_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskDefinition from identityGovernance + description: The taskDefinition associated with the related lifecycle workflow task. + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_GetTaskDefinition parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleDefinition-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleDefinition' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleDefinition + x-ms-docs-key-type: taskReport - name: $select in: query description: Select properties to be returned @@ -65185,17 +76067,12 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - category + - continueOnError + - description + - displayName + - parameters + - version type: string - name: $expand in: query @@ -65208,8 +76085,6 @@ paths: items: enum: - '*' - - resource - - roleDefinition type: string responses: '200': @@ -65217,35 +76092,34 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - links: - resource: - operationId: privilegedAccess.roleDefinitions.RoleSetting.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id - roleDefinition: - operationId: privilegedAccess.roleDefinitions.RoleSetting.GetRoleDefinition - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleSettings': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults': get: tags: - - privilegedAccess.governanceRoleSetting - summary: Get roleSettings from privilegedAccess - operationId: privilegedAccess_ListRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related lifecycle workflow taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_ListTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: taskReport-id + in: path + description: 'key: id of taskReport' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskReport - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -65263,24 +76137,16 @@ paths: enum: - id - id desc - - adminEligibleSettings - - adminEligibleSettings desc - - adminMemberSettings - - adminMemberSettings desc - - isDefault - - isDefault desc - - lastUpdatedBy - - lastUpdatedBy desc - - lastUpdatedDateTime - - lastUpdatedDateTime desc - - resourceId - - resourceId desc - - roleDefinitionId - - roleDefinitionId desc - - userEligibleSettings - - userEligibleSettings desc - - userMemberSettings - - userMemberSettings desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc type: string - name: $select in: query @@ -65293,17 +76159,13 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -65316,12 +76178,12 @@ paths: items: enum: - '*' - - resource - - roleDefinition + - subject + - task type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.governanceRoleSettingCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -65330,23 +76192,32 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedAccess.governanceRoleSetting - summary: Create new navigation property to roleSettings for privilegedAccess - operationId: privilegedAccess_CreateRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_CreateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess + x-ms-docs-key-type: workflow + - name: taskReport-id + in: path + description: 'key: id of taskReport' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskReport requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '201': @@ -65354,31 +76225,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedAccess.governanceRoleSetting - summary: Get roleSettings from privilegedAccess - operationId: privilegedAccess_GetRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The related lifecycle workflow taskProcessingResults. + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_GetTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -65390,17 +76272,13 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -65413,8 +76291,8 @@ paths: items: enum: - '*' - - resource - - roleDefinition + - subject + - task type: string responses: '200': @@ -65422,47 +76300,61 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - resource: - operationId: privilegedAccess.RoleSettings.GetResource + subject: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.TaskProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinition: - operationId: privilegedAccess.RoleSettings.GetRoleDefinition + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.TaskProcessingResults.GetTask parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.taskReports.taskReport.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedAccess.governanceRoleSetting - summary: Update the navigation property roleSettings in privilegedAccess - operationId: privilegedAccess_UpdateRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_UpdateTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -65472,27 +76364,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedAccess.governanceRoleSetting - summary: Delete navigation property roleSettings for privilegedAccess - operationId: privilegedAccess_DeleteRoleSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_DeleteTaskProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -65501,27 +76404,93 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/resource': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: + tags: + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults_resume + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: taskReport-id + in: path + description: 'key: id of taskReport' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceRoleSetting - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleSettings_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -65533,17 +76502,152 @@ paths: items: enum: - id + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -65556,11 +76660,71 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -65568,57 +76732,433 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.user' links: - parent: - operationId: privilegedAccess.roleSettings.Resource.GetParent + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignmentRequests: - operationId: privilegedAccess.roleSettings.Resource.ListRoleAssignmentRequests + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignments: - operationId: privilegedAccess.roleSettings.Resource.ListRoleAssignments + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListUsageRights parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinitions: - operationId: privilegedAccess.roleSettings.Resource.ListRoleDefinitions + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetInformationProtection parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleSettings: - operationId: privilegedAccess.roleSettings.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListAppRoleAssignedResources parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task': get: tags: - - privilegedAccess.governanceRoleSetting - summary: Get roleDefinition from privilegedAccess - operationId: privilegedAccess.roleSettings_GetRoleDefinition + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults_GetTask parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: taskReport-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of taskReport' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: taskReport + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -65630,12 +77170,15 @@ paths: items: enum: - id + - arguments + - category + - continueOnError + - description - displayName - - externalId - - resourceId - - templateId - - resource - - roleSetting + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -65648,8 +77191,7 @@ paths: items: enum: - '*' - - resource - - roleSetting + - taskProcessingResults type: string responses: '200': @@ -65657,106 +77199,111 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' links: - resource: - operationId: privilegedAccess.roleSettings.RoleDefinition.GetResource - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleSetting: - operationId: privilegedAccess.roleSettings.RoleDefinition.GetRoleSetting + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports.taskProcessingResults.Task.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + taskReport-id: $request.path.taskReport-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': + get: tags: - - privilegedAccess.governanceRoleSetting - summary: Update the navigation property roleDefinition in privilegedAccess - operationId: privilegedAccess.roleSettings_UpdateRoleDefinition + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.workflows.taskReports_summary parameters: - - name: privilegedAccess-id - in: path - description: 'key: id of privilegedAccess' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + - name: workflow-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - privilegedAccess.governanceRoleSetting - summary: Delete navigation property roleDefinition for privilegedAccess - operationId: privilegedAccess.roleSettings_DeleteRoleDefinition - parameters: - - name: privilegedAccess-id + x-ms-docs-key-type: workflow + - name: startDateTime in: path - description: 'key: id of privilegedAccess' + description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + format: date-time + - name: endDateTime in: path - description: 'key: id of governanceRoleSetting' + description: 'Usage: endDateTime=''{endDateTime}''' required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - x-ms-docs-key-type: governanceRoleSetting - - name: If-Match - in: header - description: ETag - schema: - type: string + format: date-time responses: - '204': + '200': description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReportSummary' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource': + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults': get: tags: - - privilegedAccess.governanceRoleSetting - summary: Get resource from privilegedAccess - operationId: privilegedAccess.roleSettings.roleDefinition_GetResource + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_ListUserProcessingResults parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id - in: path - description: 'key: id of governanceRoleSetting' - required: true + x-ms-docs-key-type: workflow + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: governanceRoleSetting + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - completedDateTime + - completedDateTime desc + - failedTasksCount + - failedTasksCount desc + - processingStatus + - processingStatus desc + - scheduledDateTime + - scheduledDateTime desc + - startedDateTime + - startedDateTime desc + - totalTasksCount + - totalTasksCount desc + - totalUnprocessedTasksCount + - totalUnprocessedTasksCount desc + - workflowExecutionType + - workflowExecutionType desc + - workflowVersion + - workflowVersion desc + type: string - name: $select in: query description: Select properties to be returned @@ -65768,17 +77315,17 @@ paths: items: enum: - id - - displayName - - externalId - - registeredDateTime - - registeredRoot - - status - - type - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion + - subject + - taskProcessingResults type: string - name: $expand in: query @@ -65791,11 +77338,108 @@ paths: items: enum: - '*' - - parent - - roleAssignmentRequests - - roleAssignments - - roleDefinitions - - roleSettings + - subject + - taskProcessingResults + type: string + responses: + '200': + $ref: '#/components/responses/microsoft.graph.identityGovernance.userProcessingResultCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_CreateUserProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get userProcessingResults from identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_GetUserProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - completedDateTime + - failedTasksCount + - processingStatus + - scheduledDateTime + - startedDateTime + - totalTasksCount + - totalUnprocessedTasksCount + - workflowExecutionType + - workflowVersion + - subject + - taskProcessingResults + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - subject + - taskProcessingResults type: string responses: '200': @@ -65803,57 +77447,114 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceResource' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' links: - parent: - operationId: privilegedAccess.roleSettings.roleDefinition.Resource.GetParent - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignmentRequests: - operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleAssignmentRequests - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleAssignments: - operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleAssignments - parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinitions: - operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleDefinitions + subject: + operationId: identityGovernance.lifecycleWorkflows.workflows.UserProcessingResults.GetSubject parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleSettings: - operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleSettings + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.UserProcessingResults.ListTaskProcessingResults parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting': + patch: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property userProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_UpdateUserProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property userProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_DeleteUserProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject': get: tags: - - privilegedAccess.governanceRoleSetting - summary: Get roleSetting from privilegedAccess - operationId: privilegedAccess.roleSettings.roleDefinition_GetRoleSetting + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the AAD user targeted for the taskProcessingResult. + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_GetSubject parameters: - - name: privilegedAccess-id + - name: workflow-id in: path - description: 'key: id of privilegedAccess' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedAccess - - name: governanceRoleSetting-id + x-ms-docs-key-type: workflow + - name: userProcessingResult-id in: path - description: 'key: id of governanceRoleSetting' + description: 'key: id of userProcessingResult' required: true + style: simple schema: type: string - x-ms-docs-key-type: governanceRoleSetting + x-ms-docs-key-type: userProcessingResult - name: $select in: query description: Select properties to be returned @@ -65865,17 +77566,152 @@ paths: items: enum: - id - - adminEligibleSettings - - adminMemberSettings - - isDefault - - lastUpdatedBy - - lastUpdatedDateTime - - resourceId - - roleDefinitionId - - userEligibleSettings - - userMemberSettings - - resource - - roleDefinition + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -65888,8 +77724,71 @@ paths: items: enum: - '*' - - resource - - roleDefinition + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -65897,28 +77796,360 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + $ref: '#/components/schemas/microsoft.graph.user' links: - resource: - operationId: privilegedAccess.roleSettings.roleDefinition.RoleSetting.GetResource + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetAnalytics parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id - roleDefinition: - operationId: privilegedAccess.roleSettings.roleDefinition.RoleSetting.GetRoleDefinition + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListCloudPCs parameters: - privilegedAccess-id: $request.path.privilegedAccess-id - governanceRoleSetting-id: $request.path.governanceRoleSetting-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /privilegedApproval: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults': get: tags: - - privilegedApproval.privilegedApproval - summary: List privilegedApproval - operationId: privilegedApproval.privilegedApproval_ListPrivilegedApproval + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_ListTaskProcessingResults parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -65936,24 +78167,16 @@ paths: enum: - id - id desc - - approvalDuration - - approvalDuration desc - - approvalState - - approvalState desc - - approvalType - - approvalType desc - - approverReason - - approverReason desc - - endDateTime - - endDateTime desc - - requestorReason - - requestorReason desc - - roleId - - roleId desc - - startDateTime - - startDateTime desc - - userId - - userId desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc type: string - name: $select in: query @@ -65966,17 +78189,13 @@ paths: items: enum: - id - - approvalDuration - - approvalState - - approvalType - - approverReason - - endDateTime - - requestorReason - - roleId - - startDateTime - - userId - - request - - roleInfo + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -65989,12 +78208,12 @@ paths: items: enum: - '*' - - request - - roleInfo + - subject + - task type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedApprovalCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -66003,40 +78222,75 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedApproval.privilegedApproval - summary: Create privilegedApproval - operationId: privilegedApproval.privilegedApproval_CreatePrivilegedApproval + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_CreateTaskProcessingResults + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedApproval.privilegedApproval - summary: Get privilegedApproval - operationId: privilegedApproval.privilegedApproval_GetPrivilegedApproval + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The associated individual task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_GetTaskProcessingResults parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -66048,17 +78302,13 @@ paths: items: enum: - id - - approvalDuration - - approvalState - - approvalType - - approverReason - - endDateTime - - requestorReason - - roleId - - startDateTime - - userId - - request - - roleInfo + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -66071,47 +78321,70 @@ paths: items: enum: - '*' - - request - - roleInfo + - subject + - task type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - request: - operationId: privilegedApproval.GetRequest + subject: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.TaskProcessingResults.GetSubject parameters: - privilegedApproval-id: $request.path.privilegedApproval-id - roleInfo: - operationId: privilegedApproval.GetRoleInfo + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.TaskProcessingResults.GetTask parameters: - privilegedApproval-id: $request.path.privilegedApproval-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.workflows.workflow.userProcessingResults.userProcessingResult.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedApproval.privilegedApproval - summary: Update privilegedapproval - operationId: privilegedApproval.privilegedApproval_UpdatePrivilegedApproval + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_UpdateTaskProcessingResults parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -66121,20 +78394,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedApproval.privilegedApproval - summary: Delete entity from privilegedApproval - operationId: privilegedApproval.privilegedApproval_DeletePrivilegedApproval + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_DeleteTaskProcessingResults parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -66143,20 +78434,93 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}/request': - get: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': + post: tags: - - privilegedApproval.privilegedRoleAssignmentRequest - summary: Get request from privilegedApproval - operationId: privilegedApproval_GetRequest + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults_resume parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/subject': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults_GetSubject + parameters: + - name: workflow-id + in: path + description: 'key: id of workflow' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -66168,18 +78532,152 @@ paths: items: enum: - id - - assignmentState - - duration - - reason - - requestedDateTime - - roleId - - schedule - - status - - ticketNumber - - ticketSystem - - type - - userId - - roleInfo + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string - name: $expand in: query @@ -66192,7 +78690,71 @@ paths: items: enum: - '*' - - roleInfo + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights + - settings + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -66200,29 +78762,433 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.user' links: - roleInfo: - operationId: privilegedApproval.Request.GetRoleInfo + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetAnalytics parameters: - privilegedApproval-id: $request.path.privilegedApproval-id + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListCloudPCs + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListUsageRights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetInformationProtection + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListDirectReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetManager + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetCalendar + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListCalendars + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListCalendarView + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListContactFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListContacts + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListMailFolders + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListMessages + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetOutlook + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListPeople + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetDrive + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListDrives + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListExtensions + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListApprovals + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetSecurity + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListNotifications + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetPlanner + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetInsights + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + settings: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetSettings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetOnenote + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetPhoto + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListPhotos + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetProfile + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListActivities + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListDevices + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetPresence + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetAuthentication + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetTasks + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListChats + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetTeamwork + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Subject.GetTodo + parameters: + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}/roleInfo': + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}/task': get: tags: - - privilegedApproval.privilegedRole - summary: Get roleInfo from privilegedApproval - operationId: privilegedApproval_GetRoleInfo + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults_GetTask parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow + - name: userProcessingResult-id + in: path + description: 'key: id of userProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: userProcessingResult + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -66234,10 +79200,15 @@ paths: items: enum: - id - - name - - assignments - - settings - - summary + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -66250,9 +79221,7 @@ paths: items: enum: - '*' - - assignments - - settings - - summary + - taskProcessingResults type: string responses: '200': @@ -66260,91 +79229,76 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' links: - assignments: - operationId: privilegedApproval.RoleInfo.ListAssignments - parameters: - privilegedApproval-id: $request.path.privilegedApproval-id - settings: - operationId: privilegedApproval.RoleInfo.GetSettings - parameters: - privilegedApproval-id: $request.path.privilegedApproval-id - summary: - operationId: privilegedApproval.RoleInfo.GetSummary + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults.taskProcessingResults.Task.ListTaskProcessingResults parameters: - privilegedApproval-id: $request.path.privilegedApproval-id - selfActivate: - operationId: privilegedApproval.privilegedApproval.roleInfo.selfActivate - selfDeactivate: - operationId: privilegedApproval.privilegedApproval.roleInfo.selfDeactivate + workflow-id: $request.path.workflow-id + userProcessingResult-id: $request.path.userProcessingResult-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/microsoft.graph.identityGovernance.summary(startDateTime=''{startDateTime}'',endDateTime=''{endDateTime}'')': + get: tags: - - privilegedApproval.privilegedRole - summary: Update the navigation property roleInfo in privilegedApproval - operationId: privilegedApproval_UpdateRoleInfo + - identityGovernance.Functions + summary: Invoke function summary + operationId: identityGovernance.lifecycleWorkflows.workflows.userProcessingResults_summary parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' - required: true - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - privilegedApproval.privilegedRole - summary: Delete navigation property roleInfo for privilegedApproval - operationId: privilegedApproval_DeleteRoleInfo - parameters: - - name: privilegedApproval-id + x-ms-docs-key-type: workflow + - name: startDateTime in: path - description: 'key: id of privilegedApproval' + description: 'Usage: startDateTime=''{startDateTime}''' required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - x-ms-docs-key-type: privilegedApproval - - name: If-Match - in: header - description: ETag + format: date-time + - name: endDateTime + in: path + description: 'Usage: endDateTime=''{endDateTime}''' + required: true + style: simple schema: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + format: date-time responses: - '204': + '200': description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userSummary' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments': + x-ms-docs-operation-type: function + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions': get: tags: - - privilegedApproval.privilegedRole - summary: Get assignments from privilegedApproval - operationId: privilegedApproval.roleInfo_ListAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Get versions from identityGovernance + description: The workflow versions that are available. + operationId: identityGovernance.lifecycleWorkflows.workflows_ListVersions parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -66360,18 +79314,20 @@ paths: type: array items: enum: - - id - - id desc - - expirationDateTime - - expirationDateTime desc - - isElevated - - isElevated desc - - resultMessage - - resultMessage desc - - roleId - - roleId desc - - userId - - userId desc + - category + - category desc + - createdDateTime + - createdDateTime desc + - description + - description desc + - displayName + - displayName desc + - executionConditions + - executionConditions desc + - lastModifiedDateTime + - lastModifiedDateTime desc + - versionNumber + - versionNumber desc type: string - name: $select in: query @@ -66383,13 +79339,16 @@ paths: type: array items: enum: - - id - - expirationDateTime - - isElevated - - resultMessage - - roleId - - userId - - roleInfo + - category + - createdDateTime + - description + - displayName + - executionConditions + - lastModifiedDateTime + - versionNumber + - createdBy + - lastModifiedBy + - tasks type: string - name: $expand in: query @@ -66402,38 +79361,77 @@ paths: items: enum: - '*' - - roleInfo + - createdBy + - lastModifiedBy + - tasks type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.workflowVersionCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/{privilegedRoleAssignment-id}': - get: + post: tags: - - privilegedApproval.privilegedRole - summary: Get assignments from privilegedApproval - operationId: privilegedApproval.roleInfo_GetAssignments + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to versions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_CreateVersions parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval - - name: privilegedRoleAssignment-id + x-ms-docs-key-type: workflow + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}': + get: + tags: + - identityGovernance.lifecycleWorkflowsContainer + summary: Get versions from identityGovernance + description: The workflow versions that are available. + operationId: identityGovernance.lifecycleWorkflows.workflows_GetVersions + parameters: + - name: workflow-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: workflow + - name: workflowVersion-versionNumber + in: path + description: 'key: versionNumber of workflowVersion' + required: true + style: simple + schema: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + x-ms-docs-key-type: workflowVersion - name: $select in: query description: Select properties to be returned @@ -66444,13 +79442,16 @@ paths: type: array items: enum: - - id - - expirationDateTime - - isElevated - - resultMessage - - roleId - - userId - - roleInfo + - category + - createdDateTime + - description + - displayName + - executionConditions + - lastModifiedDateTime + - versionNumber + - createdBy + - lastModifiedBy + - tasks type: string - name: $expand in: query @@ -66463,7 +79464,9 @@ paths: items: enum: - '*' - - roleInfo + - createdBy + - lastModifiedBy + - tasks type: string responses: '200': @@ -66471,100 +79474,135 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' links: - roleInfo: - operationId: privilegedApproval.roleInfo.Assignments.GetRoleInfo + createdBy: + operationId: identityGovernance.lifecycleWorkflows.workflows.Versions.GetCreatedGraphBPre parameters: - privilegedApproval-id: $request.path.privilegedApproval-id - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + workflow-id: $request.path.workflow-id + workflowVersion-versionNumber: $request.path.workflowVersion-versionNumber + lastModifiedBy: + operationId: identityGovernance.lifecycleWorkflows.workflows.Versions.GetLastModifiedGraphBPre + parameters: + workflow-id: $request.path.workflow-id + workflowVersion-versionNumber: $request.path.workflowVersion-versionNumber + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflows.Versions.ListTasks + parameters: + workflow-id: $request.path.workflow-id + workflowVersion-versionNumber: $request.path.workflowVersion-versionNumber default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}/roleInfo/microsoft.graph.selfActivate': - post: + patch: tags: - - privilegedApproval.Actions - summary: Invoke action selfActivate - operationId: privilegedApproval.roleInfo_selfActivate + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property versions in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_UpdateVersions parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflow + - name: workflowVersion-versionNumber + in: path + description: 'key: versionNumber of workflowVersion' + required: true + style: simple + schema: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + x-ms-docs-key-type: workflowVersion requestBody: - description: Action parameters + description: New navigation property values content: application/json: schema: - type: object - properties: - reason: - type: string - nullable: true - duration: - type: string - nullable: true - ticketNumber: - type: string - nullable: true - ticketSystem: - type: string - nullable: true - additionalProperties: - type: object + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' required: true responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedApproval/{privilegedApproval-id}/roleInfo/microsoft.graph.selfDeactivate': - post: + x-ms-docs-operation-type: operation + delete: tags: - - privilegedApproval.Actions - summary: Invoke action selfDeactivate - operationId: privilegedApproval.roleInfo_selfDeactivate + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property versions for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflows_DeleteVersions parameters: - - name: privilegedApproval-id + - name: workflow-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflow' required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflow + - name: workflowVersion-versionNumber + in: path + description: 'key: versionNumber of workflowVersion' + required: true + style: simple + schema: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + x-ms-docs-key-type: workflowVersion + - name: If-Match + in: header + description: ETag + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedApproval/{privilegedApproval-id}/roleInfo/settings': + x-ms-docs-operation-type: operation + /identityGovernance/lifecycleWorkflows/workflowTemplates: get: tags: - - privilegedApproval.privilegedRole - summary: Get settings from privilegedApproval - operationId: privilegedApproval.roleInfo_GetSettings + - identityGovernance.lifecycleWorkflowsContainer + summary: Get workflowTemplates from identityGovernance + description: The workflow templates in the lifecycle workflow instance. + operationId: identityGovernance.lifecycleWorkflows_ListWorkflowTemplates parameters: - - name: privilegedApproval-id - in: path - description: 'key: id of privilegedApproval' - required: true + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: privilegedApproval + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - category + - category desc + - description + - description desc + - displayName + - displayName desc + - executionConditions + - executionConditions desc + type: string - name: $select in: query description: Select properties to be returned @@ -66576,16 +79614,11 @@ paths: items: enum: - id - - approvalOnElevation - - approverIds - - elevationDuration - - isMfaOnElevationConfigurable - - lastGlobalAdmin - - maxElavationDuration - - mfaOnElevation - - minElevationDuration - - notificationToUserOnElevation - - ticketingInfoOnElevation + - category + - description + - displayName + - executionConditions + - tasks type: string - name: $expand in: query @@ -66598,81 +79631,55 @@ paths: items: enum: - '*' + - tasks type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/responses/microsoft.graph.identityGovernance.workflowTemplateCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - privilegedApproval.privilegedRole - summary: Update the navigation property settings in privilegedApproval - operationId: privilegedApproval.roleInfo_UpdateSettings - parameters: - - name: privilegedApproval-id - in: path - description: 'key: id of privilegedApproval' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedApproval + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to workflowTemplates for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_CreateWorkflowTemplates requestBody: - description: New navigation property values + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowTemplate' required: true responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - privilegedApproval.privilegedRole - summary: Delete navigation property settings for privilegedApproval - operationId: privilegedApproval.roleInfo_DeleteSettings - parameters: - - name: privilegedApproval-id - in: path - description: 'key: id of privilegedApproval' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedApproval - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowTemplate' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedApproval/{privilegedApproval-id}/roleInfo/summary': + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}': get: tags: - - privilegedApproval.privilegedRole - summary: Get summary from privilegedApproval - operationId: privilegedApproval.roleInfo_GetSummary + - identityGovernance.lifecycleWorkflowsContainer + summary: Get workflowTemplates from identityGovernance + description: The workflow templates in the lifecycle workflow instance. + operationId: identityGovernance.lifecycleWorkflows_GetWorkflowTemplates parameters: - - name: privilegedApproval-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflowTemplate - name: $select in: query description: Select properties to be returned @@ -66684,11 +79691,11 @@ paths: items: enum: - id - - elevatedCount - - managedCount - - mfaEnabled - - status - - usersCount + - category + - description + - displayName + - executionConditions + - tasks type: string - name: $expand in: query @@ -66701,6 +79708,7 @@ paths: items: enum: - '*' + - tasks type: string responses: '200': @@ -66708,29 +79716,35 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowTemplate' + links: + tasks: + operationId: identityGovernance.lifecycleWorkflows.WorkflowTemplates.ListTasks + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedApproval.privilegedRole - summary: Update the navigation property summary in privilegedApproval - operationId: privilegedApproval.roleInfo_UpdateSummary + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property workflowTemplates in identityGovernance + operationId: identityGovernance.lifecycleWorkflows_UpdateWorkflowTemplates parameters: - - name: privilegedApproval-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflowTemplate requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowTemplate' required: true responses: '204': @@ -66740,20 +79754,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedApproval.privilegedRole - summary: Delete navigation property summary for privilegedApproval - operationId: privilegedApproval.roleInfo_DeleteSummary + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property workflowTemplates for identityGovernance + operationId: identityGovernance.lifecycleWorkflows_DeleteWorkflowTemplates parameters: - - name: privilegedApproval-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedApproval' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedApproval + x-ms-docs-key-type: workflowTemplate - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -66762,37 +79778,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /privilegedApproval/microsoft.graph.myRequests(): - get: - tags: - - privilegedApproval.Functions - summary: Invoke function myRequests - operationId: privilegedApproval_myRequests - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of privilegedApproval - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedApproval' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /privilegedOperationEvents: + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks': get: tags: - - privilegedOperationEvents.privilegedOperationEvent - summary: List privilegedOperationEvents - operationId: privilegedOperationEvents.privilegedOperationEvent_ListPrivilegedOperationEvent + - identityGovernance.lifecycleWorkflowsContainer + summary: Get tasks from identityGovernance + description: Represents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default. + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates_ListTasks parameters: + - name: workflowTemplate-id + in: path + description: 'key: id of workflowTemplate' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflowTemplate - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -66810,34 +79811,22 @@ paths: enum: - id - id desc - - additionalInformation - - additionalInformation desc - - creationDateTime - - creationDateTime desc - - expirationDateTime - - expirationDateTime desc - - referenceKey - - referenceKey desc - - referenceSystem - - referenceSystem desc - - requestorId - - requestorId desc - - requestorName - - requestorName desc - - requestType - - requestType desc - - roleId - - roleId desc - - roleName - - roleName desc - - tenantId - - tenantId desc - - userId - - userId desc - - userMail - - userMail desc - - userName - - userName desc + - arguments + - arguments desc + - category + - category desc + - continueOnError + - continueOnError desc + - description + - description desc + - displayName + - displayName desc + - executionSequence + - executionSequence desc + - isEnabled + - isEnabled desc + - taskDefinitionId + - taskDefinitionId desc type: string - name: $select in: query @@ -66850,20 +79839,15 @@ paths: items: enum: - id - - additionalInformation - - creationDateTime - - expirationDateTime - - referenceKey - - referenceSystem - - requestorId - - requestorName - - requestType - - roleId - - roleName - - tenantId - - userId - - userMail - - userName + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -66876,10 +79860,11 @@ paths: items: enum: - '*' + - taskProcessingResults type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedOperationEventCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -66888,40 +79873,59 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedOperationEvents.privilegedOperationEvent - summary: Add new entity to privilegedOperationEvents - operationId: privilegedOperationEvents.privilegedOperationEvent_CreatePrivilegedOperationEvent + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to tasks for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates_CreateTasks + parameters: + - name: workflowTemplate-id + in: path + description: 'key: id of workflowTemplate' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflowTemplate requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedOperationEvents/{privilegedOperationEvent-id}': + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}': get: tags: - - privilegedOperationEvents.privilegedOperationEvent - summary: Get entity from privilegedOperationEvents by key - operationId: privilegedOperationEvents.privilegedOperationEvent_GetPrivilegedOperationEvent + - identityGovernance.lifecycleWorkflowsContainer + summary: Get tasks from identityGovernance + description: Represents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default. + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates_GetTasks parameters: - - name: privilegedOperationEvent-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedOperationEvent' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedOperationEvent + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task - name: $select in: query description: Select properties to be returned @@ -66933,20 +79937,15 @@ paths: items: enum: - id - - additionalInformation - - creationDateTime - - expirationDateTime - - referenceKey - - referenceSystem - - requestorId - - requestorName - - requestType - - roleId - - roleName - - tenantId - - userId - - userMail - - userName + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults type: string - name: $expand in: query @@ -66959,36 +79958,52 @@ paths: items: enum: - '*' + - taskProcessingResults type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.Tasks.ListTaskProcessingResults + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedOperationEvents.privilegedOperationEvent - summary: Update entity in privilegedOperationEvents - operationId: privilegedOperationEvents.privilegedOperationEvent_UpdatePrivilegedOperationEvent + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property tasks in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates_UpdateTasks parameters: - - name: privilegedOperationEvent-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedOperationEvent' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedOperationEvent + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' required: true responses: '204': @@ -66998,20 +80013,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedOperationEvents.privilegedOperationEvent - summary: Delete entity from privilegedOperationEvents - operationId: privilegedOperationEvents.privilegedOperationEvent_DeletePrivilegedOperationEvent + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property tasks for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates_DeleteTasks parameters: - - name: privilegedOperationEvent-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedOperationEvent' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedOperationEvent + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -67020,13 +80045,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /privilegedRoleAssignmentRequests: + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults': get: tags: - - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest - summary: List privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_ListPrivilegedRoleAssignmentRequest + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The result of processing the task. + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks_ListTaskProcessingResults parameters: + - name: workflowTemplate-id + in: path + description: 'key: id of workflowTemplate' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -67044,28 +80086,16 @@ paths: enum: - id - id desc - - assignmentState - - assignmentState desc - - duration - - duration desc - - reason - - reason desc - - requestedDateTime - - requestedDateTime desc - - roleId - - roleId desc - - schedule - - schedule desc - - status - - status desc - - ticketNumber - - ticketNumber desc - - ticketSystem - - ticketSystem desc - - type - - type desc - - userId - - userId desc + - completedDateTime + - completedDateTime desc + - createdDateTime + - createdDateTime desc + - failureReason + - failureReason desc + - processingStatus + - processingStatus desc + - startedDateTime + - startedDateTime desc type: string - name: $select in: query @@ -67078,18 +80108,13 @@ paths: items: enum: - id - - assignmentState - - duration - - reason - - requestedDateTime - - roleId - - schedule - - status - - ticketNumber - - ticketSystem - - type - - userId - - roleInfo + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -67102,11 +80127,12 @@ paths: items: enum: - '*' - - roleInfo + - subject + - task type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentRequestCollectionResponse' + $ref: '#/components/responses/microsoft.graph.identityGovernance.taskProcessingResultCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -67115,40 +80141,75 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest - summary: Create privilegedRoleAssignmentRequest - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_CreatePrivilegedRoleAssignmentRequest + - identityGovernance.lifecycleWorkflowsContainer + summary: Create new navigation property to taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks_CreateTaskProcessingResults + parameters: + - name: workflowTemplate-id + in: path + description: 'key: id of workflowTemplate' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}': + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}': get: tags: - - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest - summary: Get entity from privilegedRoleAssignmentRequests by key - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_GetPrivilegedRoleAssignmentRequest + - identityGovernance.lifecycleWorkflowsContainer + summary: Get taskProcessingResults from identityGovernance + description: The result of processing the task. + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks_GetTaskProcessingResults parameters: - - name: privilegedRoleAssignmentRequest-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -67160,18 +80221,13 @@ paths: items: enum: - id - - assignmentState - - duration - - reason - - requestedDateTime - - roleId - - schedule - - status - - ticketNumber - - ticketSystem - - type - - userId - - roleInfo + - completedDateTime + - createdDateTime + - failureReason + - processingStatus + - startedDateTime + - subject + - task type: string - name: $expand in: query @@ -67184,44 +80240,70 @@ paths: items: enum: - '*' - - roleInfo + - subject + - task type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' links: - roleInfo: - operationId: privilegedRoleAssignmentRequests.GetRoleInfo + subject: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.TaskProcessingResults.GetSubject parameters: - privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id - cancel: - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest.cancel + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + task: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.TaskProcessingResults.GetTask + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + resume: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.workflowTemplate.tasks.task.taskProcessingResults.taskProcessingResult.resume default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest - summary: Update entity in privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_UpdatePrivilegedRoleAssignmentRequest + - identityGovernance.lifecycleWorkflowsContainer + summary: Update the navigation property taskProcessingResults in identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks_UpdateTaskProcessingResults parameters: - - name: privilegedRoleAssignmentRequest-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' required: true responses: '204': @@ -67231,20 +80313,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest - summary: Delete entity from privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_DeletePrivilegedRoleAssignmentRequest + - identityGovernance.lifecycleWorkflowsContainer + summary: Delete navigation property taskProcessingResults for identityGovernance + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks_DeleteTaskProcessingResults parameters: - - name: privilegedRoleAssignmentRequest-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -67253,44 +80353,93 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/microsoft.graph.cancel': + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/microsoft.graph.identityGovernance.resume': post: tags: - - privilegedRoleAssignmentRequests.Actions - summary: Invoke action cancel - operationId: privilegedRoleAssignmentRequests_cancel + - identityGovernance.Actions + summary: Invoke action resume + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults_resume parameters: - - name: privilegedRoleAssignmentRequest-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + source: + type: string + nullable: true + type: + type: string + nullable: true + data: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionCallbackData' + additionalProperties: + type: object + required: true responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: action - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo': + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject': get: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Get roleInfo from privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests_GetRoleInfo + - identityGovernance.lifecycleWorkflowsContainer + summary: Get subject from identityGovernance + description: The unique identifier of the Azure AD user targeted for the task execution. + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults_GetSubject parameters: - - name: privilegedRoleAssignmentRequest-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult - name: $select in: query description: Select properties to be returned @@ -67302,12 +80451,154 @@ paths: items: enum: - id - - name - - assignments + - deletedDateTime + - signInActivity + - accountEnabled + - ageGroup + - assignedLicenses + - assignedPlans + - authorizationInfo + - businessPhones + - city + - companyName + - consentProvidedForMinor + - country + - createdDateTime + - creationType + - customSecurityAttributes + - department + - deviceKeys + - displayName + - employeeHireDate + - employeeId + - employeeLeaveDateTime + - employeeOrgData + - employeeType + - externalUserState + - externalUserStateChangeDateTime + - faxNumber + - givenName + - identities + - imAddresses + - infoCatalogs + - isManagementRestricted + - isResourceAccount + - jobTitle + - lastPasswordChangeDateTime + - legalAgeGroupClassification + - licenseAssignmentStates + - mail + - mailNickname + - mobilePhone + - officeLocation + - onPremisesDistinguishedName + - onPremisesDomainName + - onPremisesExtensionAttributes + - onPremisesImmutableId + - onPremisesLastSyncDateTime + - onPremisesProvisioningErrors + - onPremisesSamAccountName + - onPremisesSecurityIdentifier + - onPremisesSyncEnabled + - onPremisesUserPrincipalName + - otherMails + - passwordPolicies + - passwordProfile + - postalCode + - preferredDataLocation + - preferredLanguage + - provisionedPlans + - proxyAddresses + - refreshTokensValidFromDateTime + - securityIdentifier + - showInAddressList + - signInSessionsValidFromDateTime + - state + - streetAddress + - surname + - usageLocation + - userPrincipalName + - userType + - mailboxSettings + - deviceEnrollmentLimit + - print + - aboutMe + - birthday + - hireDate + - interests + - mySite + - pastProjects + - preferredName + - responsibilities + - schools + - skills + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights - settings - - summary - type: string - - name: $expand + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo + type: string + - name: $expand in: query description: Expand related entities style: form @@ -67318,9 +80609,71 @@ paths: items: enum: - '*' - - assignments + - analytics + - cloudPCs + - usageRights + - informationProtection + - appRoleAssignedResources + - appRoleAssignments + - createdObjects + - directReports + - licenseDetails + - manager + - memberOf + - oauth2PermissionGrants + - ownedDevices + - ownedObjects + - registeredDevices + - scopedRoleMemberOf + - transitiveMemberOf + - transitiveReports + - calendar + - calendarGroups + - calendars + - calendarView + - contactFolders + - contacts + - events + - inferenceClassification + - joinedGroups + - mailFolders + - messages + - outlook + - people + - drive + - drives + - followedSites + - extensions + - appConsentRequestsForApproval + - approvals + - pendingAccessReviewInstances + - agreementAcceptances + - security + - deviceEnrollmentConfigurations + - managedDevices + - managedAppRegistrations + - windowsInformationProtectionDeviceRegistrations + - deviceManagementTroubleshootingEvents + - mobileAppIntentAndStates + - mobileAppTroubleshootingEvents + - notifications + - planner + - insights - settings - - summary + - onenote + - photo + - photos + - profile + - activities + - devices + - onlineMeetings + - presence + - authentication + - tasks + - chats + - joinedTeams + - teamwork + - todo type: string responses: '200': @@ -67328,46 +80681,545 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.user' links: - assignments: - operationId: privilegedRoleAssignmentRequests.RoleInfo.ListAssignments + analytics: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetAnalytics parameters: - privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + cloudPCs: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListCloudPCs + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + usageRights: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListUsageRights + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + informationProtection: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetInformationProtection + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignedResources: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListAppRoleAssignedResources + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appRoleAssignments: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListAppRoleAssignments + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + createdObjects: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListCreatedObjects + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + directReports: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListDirectReports + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + licenseDetails: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListLicenseDetails + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + manager: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetManager + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + memberOf: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListMemberGraphOPre + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + oauth2PermissionGrants: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListOauth2PermissionGrants + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListOwnedDevices + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + ownedObjects: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListOwnedObjects + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + registeredDevices: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListRegisteredDevices + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + scopedRoleMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListScopedRoleMemberGraphOPre + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveMemberOf: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListTransitiveMemberGraphOPre + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + transitiveReports: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListTransitiveReports + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendar: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetCalendar + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarGroups: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListCalendarGroups + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendars: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListCalendars + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + calendarView: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListCalendarView + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contactFolders: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListContactFolders + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + contacts: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListContacts + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + events: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListEvents + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + inferenceClassification: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetInferenceClassification + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedGroups: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListJoinedGroups + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mailFolders: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListMailFolders + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + messages: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListMessages + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + outlook: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetOutlook + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + people: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListPeople + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drive: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetDrive + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + drives: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListDrives + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + followedSites: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListFollowedSites + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + extensions: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListExtensions + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + appConsentRequestsForApproval: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListAppConsentRequestsGraphFPreApproval + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + approvals: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListApprovals + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + pendingAccessReviewInstances: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListPendingAccessReviewInstances + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + agreementAcceptances: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListAgreementAcceptances + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + security: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetSecurity + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceEnrollmentConfigurations: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListDeviceEnrollmentConfigurations + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedDevices: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListManagedDevices + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + managedAppRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListManagedAppRegistrations + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + windowsInformationProtectionDeviceRegistrations: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListWindowsInformationProtectionDeviceRegistrations + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + deviceManagementTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListDeviceManagementTroubleshootingEvents + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppIntentAndStates: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListMobileAppIntentAndStates + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + mobileAppTroubleshootingEvents: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListMobileAppTroubleshootingEvents + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + notifications: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListNotifications + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + planner: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetPlanner + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + insights: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetInsights + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id settings: - operationId: privilegedRoleAssignmentRequests.RoleInfo.GetSettings + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetSettings parameters: - privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id - summary: - operationId: privilegedRoleAssignmentRequests.RoleInfo.GetSummary + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onenote: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetOnenote parameters: - privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id - selfActivate: - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest.roleInfo.selfActivate - selfDeactivate: - operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest.roleInfo.selfDeactivate + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photo: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetPhoto + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + photos: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListPhotos + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + profile: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetProfile + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + activities: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListActivities + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + devices: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListDevices + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + onlineMeetings: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListOnlineMeetings + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + presence: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetPresence + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + authentication: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetAuthentication + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + tasks: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetTasks + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + chats: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListChats + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + joinedTeams: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.ListJoinedTeams + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + teamwork: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetTeamwork + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + todo: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Subject.GetTodo + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - patch: + '/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task': + get: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Update the navigation property roleInfo in privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests_UpdateRoleInfo + - identityGovernance.lifecycleWorkflowsContainer + summary: Get task from identityGovernance + description: The related workflow task + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults_GetTask parameters: - - name: privilegedRoleAssignmentRequest-id + - name: workflowTemplate-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of workflowTemplate' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: workflowTemplate + - name: task-id + in: path + description: 'key: id of task' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: task + - name: taskProcessingResult-id + in: path + description: 'key: id of taskProcessingResult' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: taskProcessingResult + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - arguments + - category + - continueOnError + - description + - displayName + - executionSequence + - isEnabled + - taskDefinitionId + - taskProcessingResults + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - taskProcessingResults + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + links: + taskProcessingResults: + operationId: identityGovernance.lifecycleWorkflows.workflowTemplates.tasks.taskProcessingResults.Task.ListTaskProcessingResults + parameters: + workflowTemplate-id: $request.path.workflowTemplate-id + task-id: $request.path.task-id + taskProcessingResult-id: $request.path.taskProcessingResult-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /identityGovernance/termsOfUse: + get: + tags: + - identityGovernance.termsOfUseContainer + summary: Get termsOfUse from identityGovernance + operationId: identityGovernance_GetTermsGraphOPreUse + parameters: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - agreementAcceptances + - agreements + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - agreementAcceptances + - agreements + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.termsOfUseContainer' + links: + agreementAcceptances: + operationId: identityGovernance.TermsGraphOPreUse.ListAgreementAcceptances + agreements: + operationId: identityGovernance.TermsGraphOPreUse.ListAgreements + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - identityGovernance.termsOfUseContainer + summary: Update the navigation property termsOfUse in identityGovernance + operationId: identityGovernance_UpdateTermsGraphOPreUse requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.termsOfUseContainer' required: true responses: '204': @@ -67377,20 +81229,14 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Delete navigation property roleInfo for privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests_DeleteRoleInfo + - identityGovernance.termsOfUseContainer + summary: Delete navigation property termsOfUse for identityGovernance + operationId: identityGovernance_DeleteTermsGraphOPreUse parameters: - - name: privilegedRoleAssignmentRequest-id - in: path - description: 'key: id of privilegedRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -67399,20 +81245,14 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments': + /identityGovernance/termsOfUse/agreementAcceptances: get: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Get assignments from privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_ListAssignments + - identityGovernance.termsOfUseContainer + summary: Get agreementAcceptances from identityGovernance + description: Represents the current status of a user's response to a company's customizable terms of use agreement. + operationId: identityGovernance.termsGraphOPreUse_ListAgreementAcceptances parameters: - - name: privilegedRoleAssignmentRequest-id - in: path - description: 'key: id of privilegedRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -67430,16 +81270,32 @@ paths: enum: - id - id desc + - agreementFileId + - agreementFileId desc + - agreementId + - agreementId desc + - deviceDisplayName + - deviceDisplayName desc + - deviceId + - deviceId desc + - deviceOSType + - deviceOSType desc + - deviceOSVersion + - deviceOSVersion desc - expirationDateTime - expirationDateTime desc - - isElevated - - isElevated desc - - resultMessage - - resultMessage desc - - roleId - - roleId desc + - recordedDateTime + - recordedDateTime desc + - state + - state desc + - userDisplayName + - userDisplayName desc + - userEmail + - userEmail desc - userId - userId desc + - userPrincipalName + - userPrincipalName desc type: string - name: $select in: query @@ -67452,12 +81308,19 @@ paths: items: enum: - id + - agreementFileId + - agreementId + - deviceDisplayName + - deviceId + - deviceOSType + - deviceOSVersion - expirationDateTime - - isElevated - - resultMessage - - roleId + - recordedDateTime + - state + - userDisplayName + - userEmail - userId - - roleInfo + - userPrincipalName type: string - name: $expand in: query @@ -67470,38 +81333,54 @@ paths: items: enum: - '*' - - roleInfo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.agreementAcceptanceCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/{privilegedRoleAssignment-id}': + post: + tags: + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to agreementAcceptances for identityGovernance + operationId: identityGovernance.termsGraphOPreUse_CreateAgreementAcceptances + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}': get: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Get assignments from privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_GetAssignments + - identityGovernance.termsOfUseContainer + summary: Get agreementAcceptances from identityGovernance + description: Represents the current status of a user's response to a company's customizable terms of use agreement. + operationId: identityGovernance.termsGraphOPreUse_GetAgreementAcceptances parameters: - - name: privilegedRoleAssignmentRequest-id - in: path - description: 'key: id of privilegedRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest - - name: privilegedRoleAssignment-id + - name: agreementAcceptance-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreementAcceptance' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreementAcceptance - name: $select in: query description: Select properties to be returned @@ -67513,12 +81392,19 @@ paths: items: enum: - id + - agreementFileId + - agreementId + - deviceDisplayName + - deviceId + - deviceOSType + - deviceOSVersion - expirationDateTime - - isElevated - - resultMessage - - roleId + - recordedDateTime + - state + - userDisplayName + - userEmail - userId - - roleInfo + - userPrincipalName type: string - name: $expand in: query @@ -67531,7 +81417,6 @@ paths: items: enum: - '*' - - roleInfo type: string responses: '200': @@ -67539,103 +81424,79 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - links: - roleInfo: - operationId: privilegedRoleAssignmentRequests.roleInfo.Assignments.GetRoleInfo - parameters: - privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/microsoft.graph.selfActivate': - post: + patch: tags: - - privilegedRoleAssignmentRequests.Actions - summary: Invoke action selfActivate - operationId: privilegedRoleAssignmentRequests.roleInfo_selfActivate + - identityGovernance.termsOfUseContainer + summary: Update the navigation property agreementAcceptances in identityGovernance + operationId: identityGovernance.termsGraphOPreUse_UpdateAgreementAcceptances parameters: - - name: privilegedRoleAssignmentRequest-id + - name: agreementAcceptance-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of agreementAcceptance' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: agreementAcceptance requestBody: - description: Action parameters + description: New navigation property values content: application/json: schema: - type: object - properties: - reason: - type: string - nullable: true - duration: - type: string - nullable: true - ticketNumber: - type: string - nullable: true - ticketSystem: - type: string - nullable: true - additionalProperties: - type: object + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/microsoft.graph.selfDeactivate': - post: + x-ms-docs-operation-type: operation + delete: tags: - - privilegedRoleAssignmentRequests.Actions - summary: Invoke action selfDeactivate - operationId: privilegedRoleAssignmentRequests.roleInfo_selfDeactivate + - identityGovernance.termsOfUseContainer + summary: Delete navigation property agreementAcceptances for identityGovernance + operationId: identityGovernance.termsGraphOPreUse_DeleteAgreementAcceptances parameters: - - name: privilegedRoleAssignmentRequest-id + - name: agreementAcceptance-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of agreementAcceptance' required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementAcceptance + - name: If-Match + in: header + description: ETag + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings': + x-ms-docs-operation-type: operation + /identityGovernance/termsOfUse/agreements: get: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Get settings from privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_GetSettings + - identityGovernance.termsOfUseContainer + summary: Get agreements from identityGovernance + description: Represents a tenant's customizable terms of use agreement that's created and managed with Azure Active Directory (Azure AD). + operationId: identityGovernance.termsGraphOPreUse_ListAgreements parameters: - - name: privilegedRoleAssignmentRequest-id - in: path - description: 'key: id of privilegedRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest - - name: $select + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby in: query - description: Select properties to be returned + description: Order items by property values style: form explode: false schema: @@ -67644,16 +81505,37 @@ paths: items: enum: - id - - approvalOnElevation - - approverIds - - elevationDuration - - isMfaOnElevationConfigurable - - lastGlobalAdmin - - maxElavationDuration - - mfaOnElevation - - minElevationDuration - - notificationToUserOnElevation - - ticketingInfoOnElevation + - id desc + - displayName + - displayName desc + - isPerDeviceAcceptanceRequired + - isPerDeviceAcceptanceRequired desc + - isViewingBeforeAcceptanceRequired + - isViewingBeforeAcceptanceRequired desc + - termsExpiration + - termsExpiration desc + - userReacceptRequiredFrequency + - userReacceptRequiredFrequency desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - isPerDeviceAcceptanceRequired + - isViewingBeforeAcceptanceRequired + - termsExpiration + - userReacceptRequiredFrequency + - acceptances + - file + - files type: string - name: $expand in: query @@ -67666,81 +81548,57 @@ paths: items: enum: - '*' + - acceptances + - file + - files type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/responses/microsoft.graph.agreementCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Update the navigation property settings in privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_UpdateSettings - parameters: - - name: privilegedRoleAssignmentRequest-id - in: path - description: 'key: id of privilegedRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to agreements for identityGovernance + operationId: identityGovernance.termsGraphOPreUse_CreateAgreements requestBody: - description: New navigation property values + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/schemas/microsoft.graph.agreement' required: true responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - delete: - tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Delete navigation property settings for privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_DeleteSettings - parameters: - - name: privilegedRoleAssignmentRequest-id - in: path - description: 'key: id of privilegedRoleAssignmentRequest' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreement' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary': + '/identityGovernance/termsOfUse/agreements/{agreement-id}': get: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Get summary from privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_GetSummary + - identityGovernance.termsOfUseContainer + summary: Get agreements from identityGovernance + description: Represents a tenant's customizable terms of use agreement that's created and managed with Azure Active Directory (Azure AD). + operationId: identityGovernance.termsGraphOPreUse_GetAgreements parameters: - - name: privilegedRoleAssignmentRequest-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: agreement - name: $select in: query description: Select properties to be returned @@ -67752,11 +81610,14 @@ paths: items: enum: - id - - elevatedCount - - managedCount - - mfaEnabled - - status - - usersCount + - displayName + - isPerDeviceAcceptanceRequired + - isViewingBeforeAcceptanceRequired + - termsExpiration + - userReacceptRequiredFrequency + - acceptances + - file + - files type: string - name: $expand in: query @@ -67769,6 +81630,9 @@ paths: items: enum: - '*' + - acceptances + - file + - files type: string responses: '200': @@ -67776,29 +81640,43 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.agreement' + links: + acceptances: + operationId: identityGovernance.termsGraphOPreUse.Agreements.ListAcceptances + parameters: + agreement-id: $request.path.agreement-id + file: + operationId: identityGovernance.termsGraphOPreUse.Agreements.GetFile + parameters: + agreement-id: $request.path.agreement-id + files: + operationId: identityGovernance.termsGraphOPreUse.Agreements.ListFiles + parameters: + agreement-id: $request.path.agreement-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Update the navigation property summary in privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_UpdateSummary + - identityGovernance.termsOfUseContainer + summary: Update the navigation property agreements in identityGovernance + operationId: identityGovernance.termsGraphOPreUse_UpdateAgreements parameters: - - name: privilegedRoleAssignmentRequest-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: agreement requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.agreement' required: true responses: '204': @@ -67808,20 +81686,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoleAssignmentRequests.privilegedRole - summary: Delete navigation property summary for privilegedRoleAssignmentRequests - operationId: privilegedRoleAssignmentRequests.roleInfo_DeleteSummary + - identityGovernance.termsOfUseContainer + summary: Delete navigation property agreements for identityGovernance + operationId: identityGovernance.termsGraphOPreUse_DeleteAgreements parameters: - - name: privilegedRoleAssignmentRequest-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignmentRequest' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignmentRequest + x-ms-docs-key-type: agreement - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -67830,37 +81710,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /privilegedRoleAssignmentRequests/microsoft.graph.my(): - get: - tags: - - privilegedRoleAssignmentRequests.Functions - summary: Invoke function my - operationId: privilegedRoleAssignmentRequests_my - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of privilegedRoleAssignmentRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /privilegedRoleAssignments: + '/identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances': get: tags: - - privilegedRoleAssignments.privilegedRoleAssignment - summary: List privilegedRoleAssignments - operationId: privilegedRoleAssignments.privilegedRoleAssignment_ListPrivilegedRoleAssignment + - identityGovernance.termsOfUseContainer + summary: Get acceptances from identityGovernance + description: Read-only. Information about acceptances of this agreement. + operationId: identityGovernance.termsGraphOPreUse.agreements_ListAcceptances parameters: + - name: agreement-id + in: path + description: 'key: id of agreement' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreement - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -67878,16 +81743,32 @@ paths: enum: - id - id desc + - agreementFileId + - agreementFileId desc + - agreementId + - agreementId desc + - deviceDisplayName + - deviceDisplayName desc + - deviceId + - deviceId desc + - deviceOSType + - deviceOSType desc + - deviceOSVersion + - deviceOSVersion desc - expirationDateTime - expirationDateTime desc - - isElevated - - isElevated desc - - resultMessage - - resultMessage desc - - roleId - - roleId desc + - recordedDateTime + - recordedDateTime desc + - state + - state desc + - userDisplayName + - userDisplayName desc + - userEmail + - userEmail desc - userId - userId desc + - userPrincipalName + - userPrincipalName desc type: string - name: $select in: query @@ -67900,12 +81781,19 @@ paths: items: enum: - id + - agreementFileId + - agreementId + - deviceDisplayName + - deviceId + - deviceOSType + - deviceOSVersion - expirationDateTime - - isElevated - - resultMessage - - roleId + - recordedDateTime + - state + - userDisplayName + - userEmail - userId - - roleInfo + - userPrincipalName type: string - name: $expand in: query @@ -67918,11 +81806,10 @@ paths: items: enum: - '*' - - roleInfo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.agreementAcceptanceCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -67931,40 +81818,59 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedRoleAssignments.privilegedRoleAssignment - summary: Create privilegedRoleAssignment - operationId: privilegedRoleAssignments.privilegedRoleAssignment_CreatePrivilegedRoleAssignment + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to acceptances for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_CreateAcceptances + parameters: + - name: agreement-id + in: path + description: 'key: id of agreement' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreement requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}': + '/identityGovernance/termsOfUse/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}': get: tags: - - privilegedRoleAssignments.privilegedRoleAssignment - summary: Get privilegedRoleAssignment - operationId: privilegedRoleAssignments.privilegedRoleAssignment_GetPrivilegedRoleAssignment + - identityGovernance.termsOfUseContainer + summary: Get acceptances from identityGovernance + description: Read-only. Information about acceptances of this agreement. + operationId: identityGovernance.termsGraphOPreUse.agreements_GetAcceptances parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementAcceptance-id + in: path + description: 'key: id of agreementAcceptance' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementAcceptance - name: $select in: query description: Select properties to be returned @@ -67976,12 +81882,19 @@ paths: items: enum: - id + - agreementFileId + - agreementId + - deviceDisplayName + - deviceId + - deviceOSType + - deviceOSVersion - expirationDateTime - - isElevated - - resultMessage - - roleId + - recordedDateTime + - state + - userDisplayName + - userEmail - userId - - roleInfo + - userPrincipalName type: string - name: $expand in: query @@ -67994,46 +81907,45 @@ paths: items: enum: - '*' - - roleInfo type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - links: - roleInfo: - operationId: privilegedRoleAssignments.GetRoleInfo - parameters: - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id - makeEligible: - operationId: privilegedRoleAssignments.privilegedRoleAssignment.makeEligible - makePermanent: - operationId: privilegedRoleAssignments.privilegedRoleAssignment.makePermanent + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoleAssignments.privilegedRoleAssignment - summary: Update entity in privilegedRoleAssignments - operationId: privilegedRoleAssignments.privilegedRoleAssignment_UpdatePrivilegedRoleAssignment + - identityGovernance.termsOfUseContainer + summary: Update the navigation property acceptances in identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_UpdateAcceptances parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementAcceptance-id + in: path + description: 'key: id of agreementAcceptance' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementAcceptance requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: '204': @@ -68043,20 +81955,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoleAssignments.privilegedRoleAssignment - summary: Delete privilegedRoleAssignment - operationId: privilegedRoleAssignments.privilegedRoleAssignment_DeletePrivilegedRoleAssignment + - identityGovernance.termsOfUseContainer + summary: Delete navigation property acceptances for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_DeleteAcceptances parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementAcceptance-id + in: path + description: 'key: id of agreementAcceptance' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementAcceptance - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -68065,87 +81987,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/microsoft.graph.makeEligible': - post: - tags: - - privilegedRoleAssignments.Actions - summary: Invoke action makeEligible - operationId: privilegedRoleAssignments_makeEligible - parameters: - - name: privilegedRoleAssignment-id - in: path - description: 'key: id of privilegedRoleAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignment - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/microsoft.graph.makePermanent': - post: - tags: - - privilegedRoleAssignments.Actions - summary: Invoke action makePermanent - operationId: privilegedRoleAssignments_makePermanent - parameters: - - name: privilegedRoleAssignment-id - in: path - description: 'key: id of privilegedRoleAssignment' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRoleAssignment - requestBody: - description: Action parameters - content: - application/json: - schema: - type: object - properties: - reason: - type: string - nullable: true - ticketNumber: - type: string - nullable: true - ticketSystem: - type: string - nullable: true - additionalProperties: - type: object - required: true - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo': + '/identityGovernance/termsOfUse/agreements/{agreement-id}/file': get: tags: - - privilegedRoleAssignments.privilegedRole - summary: Get roleInfo from privilegedRoleAssignments - operationId: privilegedRoleAssignments_GetRoleInfo + - identityGovernance.termsOfUseContainer + summary: Get file from identityGovernance + description: Default PDF linked to this agreement. + operationId: identityGovernance.termsGraphOPreUse.agreements_GetFile parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement - name: $select in: query description: Select properties to be returned @@ -68157,10 +82014,14 @@ paths: items: enum: - id - - name - - assignments - - settings - - summary + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language + - localizations type: string - name: $expand in: query @@ -68173,9 +82034,7 @@ paths: items: enum: - '*' - - assignments - - settings - - summary + - localizations type: string responses: '200': @@ -68183,46 +82042,35 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.agreementFile' links: - assignments: - operationId: privilegedRoleAssignments.RoleInfo.ListAssignments - parameters: - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id - settings: - operationId: privilegedRoleAssignments.RoleInfo.GetSettings - parameters: - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id - summary: - operationId: privilegedRoleAssignments.RoleInfo.GetSummary + localizations: + operationId: identityGovernance.termsGraphOPreUse.agreements.File.ListLocalizations parameters: - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id - selfActivate: - operationId: privilegedRoleAssignments.privilegedRoleAssignment.roleInfo.selfActivate - selfDeactivate: - operationId: privilegedRoleAssignments.privilegedRoleAssignment.roleInfo.selfDeactivate + agreement-id: $request.path.agreement-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoleAssignments.privilegedRole - summary: Update the navigation property roleInfo in privilegedRoleAssignments - operationId: privilegedRoleAssignments_UpdateRoleInfo + - identityGovernance.termsOfUseContainer + summary: Update the navigation property file in identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_UpdateFile parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.agreementFile' required: true responses: '204': @@ -68232,20 +82080,22 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoleAssignments.privilegedRole - summary: Delete navigation property roleInfo for privilegedRoleAssignments - operationId: privilegedRoleAssignments_DeleteRoleInfo + - identityGovernance.termsOfUseContainer + summary: Delete navigation property file for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_DeleteFile parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -68254,20 +82104,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments': + '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations': get: tags: - - privilegedRoleAssignments.privilegedRole - summary: Get assignments from privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_ListAssignments + - identityGovernance.termsOfUseContainer + summary: Get localizations from identityGovernance + description: The localized version of the terms of use agreement files attached to the agreement. + operationId: identityGovernance.termsGraphOPreUse.agreements.file_ListLocalizations parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -68285,16 +82137,20 @@ paths: enum: - id - id desc - - expirationDateTime - - expirationDateTime desc - - isElevated - - isElevated desc - - resultMessage - - resultMessage desc - - roleId - - roleId desc - - userId - - userId desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - fileData + - fileData desc + - fileName + - fileName desc + - isDefault + - isDefault desc + - isMajorVersion + - isMajorVersion desc + - language + - language desc type: string - name: $select in: query @@ -68307,12 +82163,14 @@ paths: items: enum: - id - - expirationDateTime - - isElevated - - resultMessage - - roleId - - userId - - roleInfo + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language + - versions type: string - name: $expand in: query @@ -68325,38 +82183,72 @@ paths: items: enum: - '*' - - roleInfo + - versions type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.agreementFileLocalizationCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/{privilegedRoleAssignment-id1}': + post: + tags: + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to localizations for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.file_CreateLocalizations + parameters: + - name: agreement-id + in: path + description: 'key: id of agreement' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreement + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}': get: tags: - - privilegedRoleAssignments.privilegedRole - summary: Get assignments from privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_GetAssignments + - identityGovernance.termsOfUseContainer + summary: Get localizations from identityGovernance + description: The localized version of the terms of use agreement files attached to the agreement. + operationId: identityGovernance.termsGraphOPreUse.agreements.file_GetLocalizations parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment - - name: privilegedRoleAssignment-id1 + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreementFileLocalization - name: $select in: query description: Select properties to be returned @@ -68368,12 +82260,14 @@ paths: items: enum: - id - - expirationDateTime - - isElevated - - resultMessage - - roleId - - userId - - roleInfo + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language + - versions type: string - name: $expand in: query @@ -68386,7 +82280,7 @@ paths: items: enum: - '*' - - roleInfo + - versions type: string responses: '200': @@ -68394,100 +82288,141 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' links: - roleInfo: - operationId: privilegedRoleAssignments.roleInfo.Assignments.GetRoleInfo + versions: + operationId: identityGovernance.termsGraphOPreUse.agreements.file.Localizations.ListVersions parameters: - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id - privilegedRoleAssignment-id1: $request.path.privilegedRoleAssignment-id1 + agreement-id: $request.path.agreement-id + agreementFileLocalization-id: $request.path.agreementFileLocalization-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/microsoft.graph.selfActivate': - post: + patch: tags: - - privilegedRoleAssignments.Actions - summary: Invoke action selfActivate - operationId: privilegedRoleAssignments.roleInfo_selfActivate + - identityGovernance.termsOfUseContainer + summary: Update the navigation property localizations in identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.file_UpdateLocalizations parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization requestBody: - description: Action parameters + description: New navigation property values content: application/json: schema: - type: object - properties: - reason: - type: string - nullable: true - duration: - type: string - nullable: true - ticketNumber: - type: string - nullable: true - ticketSystem: - type: string - nullable: true - additionalProperties: - type: object + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/microsoft.graph.selfDeactivate': - post: + x-ms-docs-operation-type: operation + delete: tags: - - privilegedRoleAssignments.Actions - summary: Invoke action selfDeactivate - operationId: privilegedRoleAssignments.roleInfo_selfDeactivate + - identityGovernance.termsOfUseContainer + summary: Delete navigation property localizations for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.file_DeleteLocalizations parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization + - name: If-Match + in: header + description: ETag + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment responses: - '200': + '204': description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings': + x-ms-docs-operation-type: operation + '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions': get: tags: - - privilegedRoleAssignments.privilegedRole - summary: Get settings from privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_GetSettings + - identityGovernance.termsOfUseContainer + summary: Get versions from identityGovernance + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. + operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_ListVersions parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - fileData + - fileData desc + - fileName + - fileName desc + - isDefault + - isDefault desc + - isMajorVersion + - isMajorVersion desc + - language + - language desc + type: string - name: $select in: query description: Select properties to be returned @@ -68499,16 +82434,13 @@ paths: items: enum: - id - - approvalOnElevation - - approverIds - - elevationDuration - - isMfaOnElevationConfigurable - - lastGlobalAdmin - - maxElavationDuration - - mfaOnElevation - - minElevationDuration - - notificationToUserOnElevation - - ticketingInfoOnElevation + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language type: string - name: $expand in: query @@ -68524,78 +82456,84 @@ paths: type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/responses/microsoft.graph.agreementFileVersionCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - privilegedRoleAssignments.privilegedRole - summary: Update the navigation property settings in privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_UpdateSettings + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to versions for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_CreateVersions parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization requestBody: - description: New navigation property values + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: - '204': - description: Success + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}': + get: tags: - - privilegedRoleAssignments.privilegedRole - summary: Delete navigation property settings for privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_DeleteSettings + - identityGovernance.termsOfUseContainer + summary: Get versions from identityGovernance + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. + operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_GetVersions parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment - - name: If-Match - in: header - description: ETag + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple schema: type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary': - get: - tags: - - privilegedRoleAssignments.privilegedRole - summary: Get summary from privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_GetSummary - parameters: - - name: privilegedRoleAssignment-id + x-ms-docs-key-type: agreementFileLocalization + - name: agreementFileVersion-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreementFileVersion' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreementFileVersion - name: $select in: query description: Select properties to be returned @@ -68607,11 +82545,13 @@ paths: items: enum: - id - - elevatedCount - - managedCount - - mfaEnabled - - status - - usersCount + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language type: string - name: $expand in: query @@ -68631,29 +82571,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoleAssignments.privilegedRole - summary: Update the navigation property summary in privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_UpdateSummary + - identityGovernance.termsOfUseContainer + summary: Update the navigation property versions in identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_UpdateVersions parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization + - name: agreementFileVersion-id + in: path + description: 'key: id of agreementFileVersion' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileVersion requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: '204': @@ -68663,20 +82620,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoleAssignments.privilegedRole - summary: Delete navigation property summary for privilegedRoleAssignments - operationId: privilegedRoleAssignments.roleInfo_DeleteSummary + - identityGovernance.termsOfUseContainer + summary: Delete navigation property versions for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.file.localizations_DeleteVersions parameters: - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization + - name: agreementFileVersion-id + in: path + description: 'key: id of agreementFileVersion' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -68685,37 +82660,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /privilegedRoleAssignments/microsoft.graph.my(): - get: - tags: - - privilegedRoleAssignments.Functions - summary: Invoke function my - operationId: privilegedRoleAssignments_my - responses: - '200': - description: Success - content: - application/json: - schema: - title: Collection of privilegedRoleAssignment - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - additionalProperties: - type: object - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: function - /privilegedRoles: + '/identityGovernance/termsOfUse/agreements/{agreement-id}/files': get: tags: - - privilegedRoles.privilegedRole - summary: List privilegedRoles - operationId: privilegedRoles.privilegedRole_ListPrivilegedRole + - identityGovernance.termsOfUseContainer + summary: Get files from identityGovernance + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' + operationId: identityGovernance.termsGraphOPreUse.agreements_ListFiles parameters: + - name: agreement-id + in: path + description: 'key: id of agreement' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreement - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -68733,8 +82693,20 @@ paths: enum: - id - id desc - - name - - name desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - fileData + - fileData desc + - fileName + - fileName desc + - isDefault + - isDefault desc + - isMajorVersion + - isMajorVersion desc + - language + - language desc type: string - name: $select in: query @@ -68747,10 +82719,14 @@ paths: items: enum: - id - - name - - assignments - - settings - - summary + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language + - versions type: string - name: $expand in: query @@ -68763,13 +82739,11 @@ paths: items: enum: - '*' - - assignments - - settings - - summary + - versions type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleCollectionResponse' + $ref: '#/components/responses/microsoft.graph.agreementFileLocalizationCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -68778,40 +82752,59 @@ paths: x-ms-docs-operation-type: operation post: tags: - - privilegedRoles.privilegedRole - summary: Add new entity to privilegedRoles - operationId: privilegedRoles.privilegedRole_CreatePrivilegedRole + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to files for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_CreateFiles + parameters: + - name: agreement-id + in: path + description: 'key: id of agreement' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreement requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoles/{privilegedRole-id}': + '/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}': get: tags: - - privilegedRoles.privilegedRole - summary: Get privilegedRole - operationId: privilegedRoles.privilegedRole_GetPrivilegedRole + - identityGovernance.termsOfUseContainer + summary: Get files from identityGovernance + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' + operationId: identityGovernance.termsGraphOPreUse.agreements_GetFiles parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization - name: $select in: query description: Select properties to be returned @@ -68823,10 +82816,14 @@ paths: items: enum: - id - - name - - assignments - - settings - - summary + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language + - versions type: string - name: $expand in: query @@ -68839,56 +82836,52 @@ paths: items: enum: - '*' - - assignments - - settings - - summary + - versions type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' links: - assignments: - operationId: privilegedRoles.ListAssignments - parameters: - privilegedRole-id: $request.path.privilegedRole-id - settings: - operationId: privilegedRoles.GetSettings - parameters: - privilegedRole-id: $request.path.privilegedRole-id - summary: - operationId: privilegedRoles.GetSummary + versions: + operationId: identityGovernance.termsGraphOPreUse.agreements.Files.ListVersions parameters: - privilegedRole-id: $request.path.privilegedRole-id - selfActivate: - operationId: privilegedRoles.privilegedRole.selfActivate - selfDeactivate: - operationId: privilegedRoles.privilegedRole.selfDeactivate + agreement-id: $request.path.agreement-id + agreementFileLocalization-id: $request.path.agreementFileLocalization-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoles.privilegedRole - summary: Update entity in privilegedRoles - operationId: privilegedRoles.privilegedRole_UpdatePrivilegedRole + - identityGovernance.termsOfUseContainer + summary: Update the navigation property files in identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_UpdateFiles parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: '204': @@ -68898,20 +82891,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoles.privilegedRole - summary: Delete entity from privilegedRoles - operationId: privilegedRoles.privilegedRole_DeletePrivilegedRole + - identityGovernance.termsOfUseContainer + summary: Delete navigation property files for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements_DeleteFiles parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -68920,20 +82923,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoles/{privilegedRole-id}/assignments': + '/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions': get: tags: - - privilegedRoles.privilegedRoleAssignment - summary: Get assignments from privilegedRoles - operationId: privilegedRoles_ListAssignments + - identityGovernance.termsOfUseContainer + summary: Get versions from identityGovernance + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. + operationId: identityGovernance.termsGraphOPreUse.agreements.files_ListVersions parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -68951,16 +82964,20 @@ paths: enum: - id - id desc - - expirationDateTime - - expirationDateTime desc - - isElevated - - isElevated desc - - resultMessage - - resultMessage desc - - roleId - - roleId desc - - userId - - userId desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - fileData + - fileData desc + - fileName + - fileName desc + - isDefault + - isDefault desc + - isMajorVersion + - isMajorVersion desc + - language + - language desc type: string - name: $select in: query @@ -68973,12 +82990,13 @@ paths: items: enum: - id - - expirationDateTime - - isElevated - - resultMessage - - roleId - - userId - - roleInfo + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language type: string - name: $expand in: query @@ -68991,169 +83009,87 @@ paths: items: enum: - '*' - - roleInfo type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + $ref: '#/components/responses/microsoft.graph.agreementFileVersionCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation - '/privilegedRoles/{privilegedRole-id}/assignments/{privilegedRoleAssignment-id}': - get: + post: tags: - - privilegedRoles.privilegedRoleAssignment - summary: Get assignments from privilegedRoles - operationId: privilegedRoles_GetAssignments + - identityGovernance.termsOfUseContainer + summary: Create new navigation property to versions for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.files_CreateVersions parameters: - - name: privilegedRole-id - in: path - description: 'key: id of privilegedRole' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRole - - name: privilegedRoleAssignment-id + - name: agreement-id in: path - description: 'key: id of privilegedRoleAssignment' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRoleAssignment - - name: $select - in: query - description: Select properties to be returned - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - id - - expirationDateTime - - isElevated - - resultMessage - - roleId - - userId - - roleInfo - type: string - - name: $expand - in: query - description: Expand related entities - style: form - explode: false - schema: - uniqueItems: true - type: array - items: - enum: - - '*' - - roleInfo - type: string - responses: - '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - links: - roleInfo: - operationId: privilegedRoles.Assignments.GetRoleInfo - parameters: - privilegedRole-id: $request.path.privilegedRole-id - privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/privilegedRoles/{privilegedRole-id}/microsoft.graph.selfActivate': - post: - tags: - - privilegedRoles.Actions - summary: Invoke action selfActivate - operationId: privilegedRoles_selfActivate - parameters: - - name: privilegedRole-id + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreementFileLocalization requestBody: - description: Action parameters + description: New navigation property content: application/json: schema: - type: object - properties: - reason: - type: string - nullable: true - duration: - type: string - nullable: true - ticketNumber: - type: string - nullable: true - ticketSystem: - type: string - nullable: true - additionalProperties: - type: object + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: - '200': - description: Success + '201': + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' default: $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoles/{privilegedRole-id}/microsoft.graph.selfDeactivate': - post: + x-ms-docs-operation-type: operation + '/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}': + get: tags: - - privilegedRoles.Actions - summary: Invoke action selfDeactivate - operationId: privilegedRoles_selfDeactivate + - identityGovernance.termsOfUseContainer + summary: Get versions from identityGovernance + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. + operationId: identityGovernance.termsGraphOPreUse.agreements.files_GetVersions parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole - responses: - '200': - description: Success - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: action - '/privilegedRoles/{privilegedRole-id}/settings': - get: - tags: - - privilegedRoles.privilegedRoleSettings - summary: Get settings from privilegedRoles - operationId: privilegedRoles_GetSettings - parameters: - - name: privilegedRole-id + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreementFileLocalization' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreementFileLocalization + - name: agreementFileVersion-id + in: path + description: 'key: id of agreementFileVersion' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileVersion - name: $select in: query description: Select properties to be returned @@ -69165,16 +83101,13 @@ paths: items: enum: - id - - approvalOnElevation - - approverIds - - elevationDuration - - isMfaOnElevationConfigurable - - lastGlobalAdmin - - maxElavationDuration - - mfaOnElevation - - minElevationDuration - - notificationToUserOnElevation - - ticketingInfoOnElevation + - createdDateTime + - displayName + - fileData + - fileName + - isDefault + - isMajorVersion + - language type: string - name: $expand in: query @@ -69194,29 +83127,46 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - privilegedRoles.privilegedRoleSettings - summary: Update the navigation property settings in privilegedRoles - operationId: privilegedRoles_UpdateSettings + - identityGovernance.termsOfUseContainer + summary: Update the navigation property versions in identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.files_UpdateVersions parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization + - name: agreementFileVersion-id + in: path + description: 'key: id of agreementFileVersion' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileVersion requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: '204': @@ -69226,20 +83176,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - privilegedRoles.privilegedRoleSettings - summary: Delete navigation property settings for privilegedRoles - operationId: privilegedRoles_DeleteSettings + - identityGovernance.termsOfUseContainer + summary: Delete navigation property versions for identityGovernance + operationId: identityGovernance.termsGraphOPreUse.agreements.files_DeleteVersions parameters: - - name: privilegedRole-id + - name: agreement-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of agreement' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: agreement + - name: agreementFileLocalization-id + in: path + description: 'key: id of agreementFileLocalization' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileLocalization + - name: agreementFileVersion-id + in: path + description: 'key: id of agreementFileVersion' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementFileVersion - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -69248,20 +83216,33 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/privilegedRoles/{privilegedRole-id}/summary': + /privilegedAccess: get: tags: - - privilegedRoles.privilegedRoleSummary - summary: Get summary from privilegedRoles - operationId: privilegedRoles_GetSummary + - privilegedAccess.privilegedAccess + summary: Get entities from privilegedAccess + operationId: privilegedAccess.privilegedAccess_ListPrivilegedAccess parameters: - - name: privilegedRole-id - in: path - description: 'key: id of privilegedRole' - required: true + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false schema: - type: string - x-ms-docs-key-type: privilegedRole + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - displayName + - displayName desc + type: string - name: $select in: query description: Select properties to be returned @@ -69273,11 +83254,12 @@ paths: items: enum: - id - - elevatedCount - - managedCount - - mfaEnabled - - status - - usersCount + - displayName + - resources + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -69290,59 +83272,169 @@ paths: items: enum: - '*' + - resources + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': - description: Retrieved navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/responses/microsoft.graph.privilegedAccessCollectionResponse' default: $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore x-ms-docs-operation-type: operation - patch: + post: tags: - - privilegedRoles.privilegedRoleSummary - summary: Update the navigation property summary in privilegedRoles - operationId: privilegedRoles_UpdateSummary - parameters: - - name: privilegedRole-id - in: path - description: 'key: id of privilegedRole' - required: true - schema: - type: string - x-ms-docs-key-type: privilegedRole + - privilegedAccess.privilegedAccess + summary: Add new entity to privilegedAccess + operationId: privilegedAccess.privilegedAccess_CreatePrivilegedAccess requestBody: - description: New navigation property values + description: New entity content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + $ref: '#/components/schemas/microsoft.graph.privilegedAccess' required: true responses: - '204': - description: Success + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedAccess' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/privilegedAccess/{privilegedAccess-id}': + get: tags: - - privilegedRoles.privilegedRoleSummary - summary: Delete navigation property summary for privilegedRoles - operationId: privilegedRoles_DeleteSummary + - privilegedAccess.privilegedAccess + summary: Get entity from privilegedAccess by key + operationId: privilegedAccess.privilegedAccess_GetPrivilegedAccess parameters: - - name: privilegedRole-id + - name: privilegedAccess-id in: path - description: 'key: id of privilegedRole' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: privilegedRole + x-ms-docs-key-type: privilegedAccess + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - resources + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resources + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings + type: string + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedAccess' + links: + resources: + operationId: privilegedAccess.ListResources + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + roleAssignmentRequests: + operationId: privilegedAccess.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + roleAssignments: + operationId: privilegedAccess.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + roleDefinitions: + operationId: privilegedAccess.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + roleSettings: + operationId: privilegedAccess.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.privilegedAccess + summary: Update entity in privilegedAccess + operationId: privilegedAccess.privilegedAccess_UpdatePrivilegedAccess + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedAccess' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.privilegedAccess + summary: Delete entity from privilegedAccess + operationId: privilegedAccess.privilegedAccess_DeletePrivilegedAccess + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -69351,13 +83443,22 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /programControls: + '/privilegedAccess/{privilegedAccess-id}/resources': get: tags: - - programControls.programControl - summary: List programControls (deprecated) - operationId: programControls.programControl_ListProgramControl + - privilegedAccess.governanceResource + summary: Get resources from privilegedAccess + description: A collection of resources for the provider. + operationId: privilegedAccess_ListResources parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -69375,22 +83476,18 @@ paths: enum: - id - id desc - - controlId - - controlId desc - - controlTypeId - - controlTypeId desc - - createdDateTime - - createdDateTime desc - displayName - displayName desc - - owner - - owner desc - - programId - - programId desc - - resource - - resource desc + - externalId + - externalId desc + - registeredDateTime + - registeredDateTime desc + - registeredRoot + - registeredRoot desc - status - status desc + - type + - type desc type: string - name: $select in: query @@ -69403,15 +83500,17 @@ paths: items: enum: - id - - controlId - - controlTypeId - - createdDateTime - displayName - - owner - - programId - - resource + - externalId + - registeredDateTime + - registeredRoot - status - - program + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -69424,11 +83523,15 @@ paths: items: enum: - '*' - - program + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.programControlCollectionResponse' + $ref: '#/components/responses/microsoft.graph.governanceResourceCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -69437,40 +83540,59 @@ paths: x-ms-docs-operation-type: operation post: tags: - - programControls.programControl - summary: Create programControl (deprecated) - operationId: programControls.programControl_CreateProgramControl + - privilegedAccess.governanceResource + summary: Create new navigation property to resources for privilegedAccess + operationId: privilegedAccess_CreateResources + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess requestBody: - description: New entity + description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceResource' required: true responses: '201': - description: Created entity + description: Created navigation property. content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceResource' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programControls/{programControl-id}': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}': get: tags: - - programControls.programControl - summary: Get entity from programControls by key - operationId: programControls.programControl_GetProgramControl + - privilegedAccess.governanceResource + summary: Get resources from privilegedAccess + description: A collection of resources for the provider. + operationId: privilegedAccess_GetResources parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource - name: $select in: query description: Select properties to be returned @@ -69482,15 +83604,17 @@ paths: items: enum: - id - - controlId - - controlTypeId - - createdDateTime - displayName - - owner - - programId - - resource + - externalId + - registeredDateTime + - registeredRoot - status - - program + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -69503,42 +83627,76 @@ paths: items: enum: - '*' - - program + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceResource' links: - program: - operationId: programControls.GetProgram + parent: + operationId: privilegedAccess.Resources.GetParent parameters: - programControl-id: $request.path.programControl-id + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleAssignmentRequests: + operationId: privilegedAccess.Resources.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleAssignments: + operationId: privilegedAccess.Resources.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleDefinitions: + operationId: privilegedAccess.Resources.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleSettings: + operationId: privilegedAccess.Resources.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - programControls.programControl - summary: Update entity in programControls - operationId: programControls.programControl_UpdateProgramControl + - privilegedAccess.governanceResource + summary: Update the navigation property resources in privilegedAccess + operationId: privilegedAccess_UpdateResources parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceResource' required: true responses: '204': @@ -69548,20 +83706,30 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - programControls.programControl - summary: Delete programControl (deprecated) - operationId: programControls.programControl_DeleteProgramControl + - privilegedAccess.governanceResource + summary: Delete navigation property resources for privilegedAccess + operationId: privilegedAccess_DeleteResources parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -69570,20 +83738,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programControls/{programControl-id}/program': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/parent': get: tags: - - programControls.program - summary: Get program from programControls - operationId: programControls_GetProgram + - privilegedAccess.governanceResource + summary: Get parent from privilegedAccess + description: 'Read-only. The parent resource. for pimforazurerbac scenario, it can represent the subscription the resource belongs to.' + operationId: privilegedAccess.resources_GetParent parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource - name: $select in: query description: Select properties to be returned @@ -69595,9 +83773,17 @@ paths: items: enum: - id - - description - displayName - - controls + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -69610,7 +83796,11 @@ paths: items: enum: - '*' - - controls + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': @@ -69618,79 +83808,60 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.program' + $ref: '#/components/schemas/microsoft.graph.governanceResource' links: - controls: - operationId: programControls.Program.ListControls + parent: + operationId: privilegedAccess.resources.Parent.GetParent parameters: - programControl-id: $request.path.programControl-id - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - patch: - tags: - - programControls.program - summary: Update the navigation property program in programControls - operationId: programControls_UpdateProgram - parameters: - - name: programControl-id - in: path - description: 'key: id of programControl' - required: true - schema: - type: string - x-ms-docs-key-type: programControl - requestBody: - description: New navigation property values - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.program' - required: true - responses: - '204': - description: Success + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.Parent.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleAssignments: + operationId: privilegedAccess.resources.Parent.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleDefinitions: + operationId: privilegedAccess.resources.Parent.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + roleSettings: + operationId: privilegedAccess.resources.Parent.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - delete: + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests': + get: tags: - - programControls.program - summary: Delete navigation property program for programControls - operationId: programControls_DeleteProgram + - privilegedAccess.governanceResource + summary: Get roleAssignmentRequests from privilegedAccess + description: The collection of role assignment requests for the resource. + operationId: privilegedAccess.resources_ListRoleAssignmentRequests parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl - - name: If-Match - in: header - description: ETag - schema: - type: string - responses: - '204': - description: Success - default: - $ref: '#/components/responses/error' - x-ms-docs-operation-type: operation - '/programControls/{programControl-id}/program/controls': - get: - tags: - - programControls.program - summary: Get controls from programControls - operationId: programControls.program_ListControls - parameters: - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -69708,22 +83879,26 @@ paths: enum: - id - id desc - - controlId - - controlId desc - - controlTypeId - - controlTypeId desc - - createdDateTime - - createdDateTime desc - - displayName - - displayName desc - - owner - - owner desc - - programId - - programId desc - - resource - - resource desc + - assignmentState + - assignmentState desc + - linkedEligibleRoleAssignmentId + - linkedEligibleRoleAssignmentId desc + - reason + - reason desc + - requestedDateTime + - requestedDateTime desc + - resourceId + - resourceId desc + - roleDefinitionId + - roleDefinitionId desc + - schedule + - schedule desc - status - status desc + - subjectId + - subjectId desc + - type + - type desc type: string - name: $select in: query @@ -69736,15 +83911,19 @@ paths: items: enum: - id - - controlId - - controlTypeId - - createdDateTime - - displayName - - owner - - programId - - resource + - assignmentState + - linkedEligibleRoleAssignmentId + - reason + - requestedDateTime + - resourceId + - roleDefinitionId + - schedule - status - - program + - subjectId + - type + - resource + - roleDefinition + - subject type: string - name: $expand in: query @@ -69757,11 +83936,13 @@ paths: items: enum: - '*' - - program + - resource + - roleDefinition + - subject type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.programControlCollectionResponse' + $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentRequestCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -69770,23 +83951,32 @@ paths: x-ms-docs-operation-type: operation post: tags: - - programControls.program - summary: Create new navigation property to controls for programControls - operationId: programControls.program_CreateControls + - privilegedAccess.governanceResource + summary: Create new navigation property to roleAssignmentRequests for privilegedAccess + operationId: privilegedAccess.resources_CreateRoleAssignmentRequests parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl - requestBody: - description: New navigation property - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' required: true responses: '201': @@ -69794,31 +83984,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programControls/{programControl-id}/program/controls/{programControl-id1}': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}': get: tags: - - programControls.program - summary: Get controls from programControls - operationId: programControls.program_GetControls + - privilegedAccess.governanceResource + summary: Get roleAssignmentRequests from privilegedAccess + description: The collection of role assignment requests for the resource. + operationId: privilegedAccess.resources_GetRoleAssignmentRequests parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl - - name: programControl-id1 + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: $select in: query description: Select properties to be returned @@ -69830,15 +84031,19 @@ paths: items: enum: - id - - controlId - - controlTypeId - - createdDateTime - - displayName - - owner - - programId - - resource + - assignmentState + - linkedEligibleRoleAssignmentId + - reason + - requestedDateTime + - resourceId + - roleDefinitionId + - schedule - status - - program + - subjectId + - type + - resource + - roleDefinition + - subject type: string - name: $expand in: query @@ -69851,7 +84056,9 @@ paths: items: enum: - '*' - - program + - resource + - roleDefinition + - subject type: string responses: '200': @@ -69859,42 +84066,69 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' links: - program: - operationId: programControls.program.Controls.GetProgram + resource: + operationId: privilegedAccess.resources.RoleAssignmentRequests.GetResource parameters: - programControl-id: $request.path.programControl-id - programControl-id1: $request.path.programControl-id1 + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinition: + operationId: privilegedAccess.resources.RoleAssignmentRequests.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + subject: + operationId: privilegedAccess.resources.RoleAssignmentRequests.GetSubject + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + cancel: + operationId: privilegedAccess.privilegedAccess.resources.governanceResource.roleAssignmentRequests.governanceRoleAssignmentRequest.cancel + updateRequest: + operationId: privilegedAccess.privilegedAccess.resources.governanceResource.roleAssignmentRequests.governanceRoleAssignmentRequest.updateRequest default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - programControls.program - summary: Update the navigation property controls in programControls - operationId: programControls.program_UpdateControls + - privilegedAccess.governanceResource + summary: Update the navigation property roleAssignmentRequests in privilegedAccess + operationId: privilegedAccess.resources_UpdateRoleAssignmentRequests parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl - - name: programControl-id1 + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' required: true responses: '204': @@ -69904,27 +84138,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - programControls.program - summary: Delete navigation property controls for programControls - operationId: programControls.program_DeleteControls + - privilegedAccess.governanceResource + summary: Delete navigation property roleAssignmentRequests for privilegedAccess + operationId: privilegedAccess.resources_DeleteRoleAssignmentRequests parameters: - - name: programControl-id + - name: privilegedAccess-id in: path - description: 'key: id of programControl' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl - - name: programControl-id1 + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -69933,35 +84178,137 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /programControlTypes: + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.cancel': + post: + tags: + - privilegedAccess.Actions + summary: Invoke action cancel + operationId: privilegedAccess.resources.roleAssignmentRequests_cancel + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.updateRequest': + post: + tags: + - privilegedAccess.Actions + summary: Invoke action updateRequest + operationId: privilegedAccess.resources.roleAssignmentRequests_updateRequest + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + decision: + type: string + nullable: true + assignmentState: + type: string + nullable: true + schedule: + $ref: '#/components/schemas/microsoft.graph.governanceSchedule' + reason: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource': get: tags: - - programControlTypes.programControlType - summary: List programControlTypes (deprecated) - operationId: programControlTypes.programControlType_ListProgramControlType + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The resource that the request aims to. + operationId: privilegedAccess.resources.roleAssignmentRequests_GetResource parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - controlTypeGroupId - - controlTypeGroupId desc - - displayName - - displayName desc - type: string + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: $select in: query description: Select properties to be returned @@ -69973,8 +84320,17 @@ paths: items: enum: - id - - controlTypeGroupId - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -69987,52 +84343,85 @@ paths: items: enum: - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.programControlTypeCollectionResponse' - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - programControlTypes.programControlType - summary: Add new entity to programControlTypes - operationId: programControlTypes.programControlType_CreateProgramControlType - requestBody: - description: New entity - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.programControlType' - required: true - responses: - '201': - description: Created entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControlType' + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignments: + operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinitions: + operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleSettings: + operationId: privilegedAccess.resources.roleAssignmentRequests.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programControlTypes/{programControlType-id}': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition': get: tags: - - programControlTypes.programControlType - summary: Get entity from programControlTypes by key - operationId: programControlTypes.programControlType_GetProgramControlType + - privilegedAccess.governanceResource + summary: Get roleDefinition from privilegedAccess + description: Read-only. The role definition that the request aims to. + operationId: privilegedAccess.resources.roleAssignmentRequests_GetRoleDefinition parameters: - - name: programControlType-id + - name: privilegedAccess-id in: path - description: 'key: id of programControlType' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControlType + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: $select in: query description: Select properties to be returned @@ -70044,8 +84433,12 @@ paths: items: enum: - id - - controlTypeGroupId - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - name: $expand in: query @@ -70058,36 +84451,68 @@ paths: items: enum: - '*' + - resource + - roleSetting type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControlType' + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.resources.roleAssignmentRequests.RoleDefinition.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleSetting: + operationId: privilegedAccess.resources.roleAssignmentRequests.RoleDefinition.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - programControlTypes.programControlType - summary: Update entity in programControlTypes - operationId: programControlTypes.programControlType_UpdateProgramControlType + - privilegedAccess.governanceResource + summary: Update the navigation property roleDefinition in privilegedAccess + operationId: privilegedAccess.resources.roleAssignmentRequests_UpdateRoleDefinition parameters: - - name: programControlType-id + - name: privilegedAccess-id in: path - description: 'key: id of programControlType' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControlType + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControlType' + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' required: true responses: '204': @@ -70097,20 +84522,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - programControlTypes.programControlType - summary: Delete entity from programControlTypes - operationId: programControlTypes.programControlType_DeleteProgramControlType + - privilegedAccess.governanceResource + summary: Delete navigation property roleDefinition for privilegedAccess + operationId: privilegedAccess.resources.roleAssignmentRequests_DeleteRoleDefinition parameters: - - name: programControlType-id + - name: privilegedAccess-id in: path - description: 'key: id of programControlType' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControlType + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -70119,21 +84562,41 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - /programs: + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource': get: tags: - - programs.program - summary: List programs (deprecated) - operationId: programs.program_ListProgram + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition_GetResource parameters: - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select in: query - description: Order items by property values + description: Select properties to be returned style: form explode: false schema: @@ -70142,12 +84605,108 @@ paths: items: enum: - id - - id desc - - description - - description desc - displayName - - displayName desc - type: string + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignments: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinitions: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleSettings: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: $select in: query description: Select properties to be returned @@ -70159,9 +84718,17 @@ paths: items: enum: - id - - description - - displayName - - controls + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - name: $expand in: query @@ -70174,53 +84741,64 @@ paths: items: enum: - '*' - - controls + - resource + - roleDefinition type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.programCollectionResponse' - default: - $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore - x-ms-docs-operation-type: operation - post: - tags: - - programs.program - summary: Create program (deprecated) - operationId: programs.program_CreateProgram - requestBody: - description: New entity - content: - application/json: - schema: - $ref: '#/components/schemas/microsoft.graph.program' - required: true - responses: - '201': - description: Created entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.program' + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinition: + operationId: privilegedAccess.resources.roleAssignmentRequests.roleDefinition.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programs/{program-id}': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject': get: tags: - - programs.program - summary: Get entity from programs by key - operationId: programs.program_GetProgram + - privilegedAccess.governanceResource + summary: Get subject from privilegedAccess + description: Read-only. The user/group principal. + operationId: privilegedAccess.resources.roleAssignmentRequests_GetSubject parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: $select in: query description: Select properties to be returned @@ -70232,9 +84810,10 @@ paths: items: enum: - id - - description - displayName - - controls + - email + - principalName + - type type: string - name: $expand in: query @@ -70247,42 +84826,53 @@ paths: items: enum: - '*' - - controls type: string responses: '200': - description: Retrieved entity + description: Retrieved navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.program' - links: - controls: - operationId: programs.ListControls - parameters: - program-id: $request.path.program-id + $ref: '#/components/schemas/microsoft.graph.governanceSubject' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - programs.program - summary: Update program (deprecated) - operationId: programs.program_UpdateProgram + - privilegedAccess.governanceResource + summary: Update the navigation property subject in privilegedAccess + operationId: privilegedAccess.resources.roleAssignmentRequests_UpdateSubject parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest requestBody: - description: New property values + description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.program' + $ref: '#/components/schemas/microsoft.graph.governanceSubject' required: true responses: '204': @@ -70292,20 +84882,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - programs.program - summary: Delete program (deprecated) - operationId: programs.program_DeleteProgram + - privilegedAccess.governanceResource + summary: Delete navigation property subject for privilegedAccess + operationId: privilegedAccess.resources.roleAssignmentRequests_DeleteSubject parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -70314,20 +84922,30 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programs/{program-id}/controls': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments': get: tags: - - programs.programControl - summary: Get controls from programs - operationId: programs_ListControls + - privilegedAccess.governanceResource + summary: Get roleAssignments from privilegedAccess + description: The collection of role assignments for the resource. + operationId: privilegedAccess.resources_ListRoleAssignments parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' @@ -70345,22 +84963,26 @@ paths: enum: - id - id desc - - controlId - - controlId desc - - controlTypeId - - controlTypeId desc - - createdDateTime - - createdDateTime desc - - displayName - - displayName desc - - owner - - owner desc - - programId - - programId desc - - resource - - resource desc + - assignmentState + - assignmentState desc + - endDateTime + - endDateTime desc + - externalId + - externalId desc + - linkedEligibleRoleAssignmentId + - linkedEligibleRoleAssignmentId desc + - memberType + - memberType desc + - resourceId + - resourceId desc + - roleDefinitionId + - roleDefinitionId desc + - startDateTime + - startDateTime desc - status - status desc + - subjectId + - subjectId desc type: string - name: $select in: query @@ -70373,15 +84995,20 @@ paths: items: enum: - id - - controlId - - controlTypeId - - createdDateTime - - displayName - - owner - - programId - - resource + - assignmentState + - endDateTime + - externalId + - linkedEligibleRoleAssignmentId + - memberType + - resourceId + - roleDefinitionId + - startDateTime - status - - program + - subjectId + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - name: $expand in: query @@ -70394,11 +85021,14 @@ paths: items: enum: - '*' - - program + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.programControlCollectionResponse' + $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentCollectionResponse' default: $ref: '#/components/responses/error' x-ms-pageable: @@ -70407,23 +85037,32 @@ paths: x-ms-docs-operation-type: operation post: tags: - - programs.programControl - summary: Create new navigation property to controls for programs - operationId: programs_CreateControls + - privilegedAccess.governanceResource + summary: Create new navigation property to roleAssignments for privilegedAccess + operationId: privilegedAccess.resources_CreateRoleAssignments parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource requestBody: description: New navigation property content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' required: true responses: '201': @@ -70431,31 +85070,42 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programs/{program-id}/controls/{programControl-id}': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}': get: tags: - - programs.programControl - summary: Get controls from programs - operationId: programs_GetControls + - privilegedAccess.governanceResource + summary: Get roleAssignments from privilegedAccess + description: The collection of role assignments for the resource. + operationId: privilegedAccess.resources_GetRoleAssignments parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment - name: $select in: query description: Select properties to be returned @@ -70467,15 +85117,20 @@ paths: items: enum: - id - - controlId - - controlTypeId - - createdDateTime - - displayName - - owner - - programId - - resource + - assignmentState + - endDateTime + - externalId + - linkedEligibleRoleAssignmentId + - memberType + - resourceId + - roleDefinitionId + - startDateTime - status - - program + - subjectId + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - name: $expand in: query @@ -70488,7 +85143,10 @@ paths: items: enum: - '*' - - program + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string responses: '200': @@ -70496,42 +85154,71 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' links: - program: - operationId: programs.Controls.GetProgram + linkedEligibleRoleAssignment: + operationId: privilegedAccess.resources.RoleAssignments.GetLinkedEligibleRoleAssignment parameters: - program-id: $request.path.program-id - programControl-id: $request.path.programControl-id + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + resource: + operationId: privilegedAccess.resources.RoleAssignments.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinition: + operationId: privilegedAccess.resources.RoleAssignments.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + subject: + operationId: privilegedAccess.resources.RoleAssignments.GetSubject + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - programs.programControl - summary: Update the navigation property controls in programs - operationId: programs_UpdateControls + - privilegedAccess.governanceResource + summary: Update the navigation property roleAssignments in privilegedAccess + operationId: privilegedAccess.resources_UpdateRoleAssignments parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.programControl' + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' required: true responses: '204': @@ -70541,27 +85228,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - programs.programControl - summary: Delete navigation property controls for programs - operationId: programs_DeleteControls + - privilegedAccess.governanceResource + summary: Delete navigation property roleAssignments for privilegedAccess + operationId: privilegedAccess.resources_DeleteRoleAssignments parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -70570,31 +85268,151 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/programs/{program-id}/controls/{programControl-id}/program': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment': get: tags: - - programs.programControl - summary: Get program from programs - operationId: programs.controls_GetProgram + - privilegedAccess.governanceResource + summary: Get linkedEligibleRoleAssignment from privilegedAccess + description: 'Read-only. If this is an active assignment and created due to activation on an eligible assignment, it represents the object of that eligible assignment; Otherwise, the value is null.' + operationId: privilegedAccess.resources.roleAssignments_GetLinkedEligibleRoleAssignment parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl - - name: $select - in: query - description: Select properties to be returned - style: form + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - endDateTime + - externalId + - linkedEligibleRoleAssignmentId + - memberType + - resourceId + - roleDefinitionId + - startDateTime + - status + - subjectId + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + links: + linkedEligibleRoleAssignment: + operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetLinkedEligibleRoleAssignment + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + resource: + operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinition: + operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + subject: + operationId: privilegedAccess.resources.roleAssignments.LinkedEligibleRoleAssignment.GetSubject + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/resource': + get: + tags: + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The resource associated with the role assignment. + operationId: privilegedAccess.resources.roleAssignments_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form explode: false schema: uniqueItems: true @@ -70602,9 +85420,17 @@ paths: items: enum: - id - - description - displayName - - controls + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -70617,7 +85443,11 @@ paths: items: enum: - '*' - - controls + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': @@ -70625,42 +85455,164 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.program' + $ref: '#/components/schemas/microsoft.graph.governanceResource' links: - controls: - operationId: programs.controls.Program.ListControls + parent: + operationId: privilegedAccess.resources.roleAssignments.Resource.GetParent parameters: - program-id: $request.path.program-id - programControl-id: $request.path.programControl-id + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignments: + operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinitions: + operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleSettings: + operationId: privilegedAccess.resources.roleAssignments.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleDefinition from privilegedAccess + description: Read-only. The role definition associated with the role assignment. + operationId: privilegedAccess.resources.roleAssignments_GetRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.resources.roleAssignments.RoleDefinition.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleSetting: + operationId: privilegedAccess.resources.roleAssignments.RoleDefinition.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - - programs.programControl - summary: Update the navigation property program in programs - operationId: programs.controls_UpdateProgram + - privilegedAccess.governanceResource + summary: Update the navigation property roleDefinition in privilegedAccess + operationId: privilegedAccess.resources.roleAssignments_UpdateRoleDefinition parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment requestBody: description: New navigation property values content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.program' + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' required: true responses: '204': @@ -70670,27 +85622,38 @@ paths: x-ms-docs-operation-type: operation delete: tags: - - programs.programControl - summary: Delete navigation property program for programs - operationId: programs.controls_DeleteProgram + - privilegedAccess.governanceResource + summary: Delete navigation property roleDefinition for privilegedAccess + operationId: privilegedAccess.resources.roleAssignments_DeleteRoleDefinition parameters: - - name: program-id + - name: privilegedAccess-id in: path - description: 'key: id of program' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: program - - name: programControl-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of programControl' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: programControl + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment - name: If-Match in: header description: ETag + style: simple schema: type: string responses: @@ -70699,64 +85662,38 @@ paths: default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation - '/users/{user-id}/agreementAcceptances': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource': get: tags: - - users.agreementAcceptance - summary: Get agreementAcceptances from users - operationId: users_ListAgreementAcceptances + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.resources.roleAssignments.roleDefinition_GetResource parameters: - - name: user-id + - name: privilegedAccess-id in: path - description: 'key: id of user' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: user - - $ref: '#/components/parameters/top' - - $ref: '#/components/parameters/skip' - - $ref: '#/components/parameters/search' - - $ref: '#/components/parameters/filter' - - $ref: '#/components/parameters/count' - - name: $orderby - in: query - description: Order items by property values - style: form - explode: false + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple schema: - uniqueItems: true - type: array - items: - enum: - - id - - id desc - - agreementFileId - - agreementFileId desc - - agreementId - - agreementId desc - - deviceDisplayName - - deviceDisplayName desc - - deviceId - - deviceId desc - - deviceOSType - - deviceOSType desc - - deviceOSVersion - - deviceOSVersion desc - - expirationDateTime - - expirationDateTime desc - - recordedDateTime - - recordedDateTime desc - - state - - state desc - - userDisplayName - - userDisplayName desc - - userEmail - - userEmail desc - - userId - - userId desc - - userPrincipalName - - userPrincipalName desc - type: string + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment - name: $select in: query description: Select properties to be returned @@ -70768,19 +85705,17 @@ paths: items: enum: - id - - agreementFileId - - agreementId - - deviceDisplayName - - deviceId - - deviceOSType - - deviceOSVersion - - expirationDateTime - - recordedDateTime - - state - - userDisplayName - - userEmail - - userId - - userPrincipalName + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - name: $expand in: query @@ -70793,37 +85728,85 @@ paths: items: enum: - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string responses: '200': - $ref: '#/components/responses/microsoft.graph.agreementAcceptanceCollectionResponse' + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignments: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinitions: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleSettings: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id default: $ref: '#/components/responses/error' - x-ms-pageable: - nextLinkName: '@odata.nextLink' - operationName: listMore x-ms-docs-operation-type: operation - '/users/{user-id}/agreementAcceptances/{agreementAcceptance-id}': + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting': get: tags: - - users.agreementAcceptance - summary: Get agreementAcceptances from users - operationId: users_GetAgreementAcceptances + - privilegedAccess.governanceResource + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.resources.roleAssignments.roleDefinition_GetRoleSetting parameters: - - name: user-id + - name: privilegedAccess-id in: path - description: 'key: id of user' + description: 'key: id of privilegedAccess' required: true + style: simple schema: type: string - x-ms-docs-key-type: user - - name: agreementAcceptance-id + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id in: path - description: 'key: id of agreementAcceptance' + description: 'key: id of governanceResource' required: true + style: simple schema: type: string - x-ms-docs-key-type: agreementAcceptance + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment - name: $select in: query description: Select properties to be returned @@ -70835,19 +85818,17 @@ paths: items: enum: - id - - agreementFileId - - agreementId - - deviceDisplayName - - deviceId - - deviceOSType - - deviceOSVersion - - expirationDateTime - - recordedDateTime - - state - - userDisplayName - - userEmail - - userId - - userPrincipalName + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - name: $expand in: query @@ -70860,6 +85841,8 @@ paths: items: enum: - '*' + - resource + - roleDefinition type: string responses: '200': @@ -70867,19795 +85850,28190 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinition: + operationId: privilegedAccess.resources.roleAssignments.roleDefinition.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id default: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation -components: - schemas: - microsoft.graph.accessReview: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReview - type: object - properties: - businessFlowTemplateId: - type: string - description: The business flow template identifier. Required on create. This value is case sensitive. - createdBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - description: - type: string - description: 'The description provided by the access review creator, to show to the reviewers.' - nullable: true - displayName: - type: string - description: The access review name. Required on create. - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The DateTime when the review is scheduled to end. This must be at least one day later than the start date. Required on create. - format: date-time - reviewedEntity: - $ref: '#/components/schemas/microsoft.graph.identity' - reviewerType: - type: string - description: 'The relationship type of reviewer to the target object, one of self, delegated or entityOwners. Required on create.' - nullable: true - settings: - $ref: '#/components/schemas/microsoft.graph.accessReviewSettings' - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The DateTime when the review is scheduled to be start. This could be a date in the future. Required on create. - format: date-time - status: - type: string - description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting,InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' - nullable: true - decisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' - description: The collection of decisions for this access review. - instances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReview' - description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' - myDecisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' - description: 'The collection of decisions for the caller, if the caller is a reviewer.' - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' - description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' - additionalProperties: - type: object - microsoft.graph.accessReviewDecision: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewDecision - type: object - properties: - accessRecommendation: - type: string - description: 'The feature- generated recommendation shown to the reviewer, one of Approve, Deny or NotAvailable.' - nullable: true - accessReviewId: - type: string - description: The feature-generated id of the access review. - nullable: true - appliedBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - appliedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The date and time when the review decision was applied. - format: date-time - nullable: true - applyResult: - type: string - description: 'The outcome of applying the decision, one of NotApplied, Success, Failed, NotFound or NotSupported.' - nullable: true - justification: - type: string - description: 'The reviewer''s business justification, if supplied.' - nullable: true - reviewedBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - reviewedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject': + get: + tags: + - privilegedAccess.governanceResource + summary: Get subject from privilegedAccess + description: Read-only. The subject associated with the role assignment. + operationId: privilegedAccess.resources.roleAssignments_GetSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - email + - principalName + - type type: string - format: date-time - nullable: true - reviewResult: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The result of the review, one of NotReviewed, Deny, DontKnow or Approve.' - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewReviewer: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewReviewer - type: object - properties: - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceResource + summary: Update the navigation property subject in privilegedAccess + operationId: privilegedAccess.resources.roleAssignments_UpdateSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceResource + summary: Delete navigation property subject for privilegedAccess + operationId: privilegedAccess.resources.roleAssignments_DeleteSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/microsoft.graph.export()': + get: + tags: + - privilegedAccess.Functions + summary: Invoke function export + operationId: privilegedAccess.resources.roleAssignments_export + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of governanceRoleAssignment + type: object + properties: + value: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleDefinitions from privilegedAccess + description: The collection of role defintions for the resource. + operationId: privilegedAccess.resources_ListRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - displayName + - displayName desc + - externalId + - externalId desc + - resourceId + - resourceId desc + - templateId + - templateId desc type: string - description: The date when the reviewer was added for the access review. - format: date-time - nullable: true - displayName: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: Name of reviewer. - nullable: true - userPrincipalName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: User principal name of the user. - nullable: true - additionalProperties: - type: object - microsoft.graph.agreement: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: agreement - type: object - properties: - displayName: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.governanceRoleDefinitionCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedAccess.governanceResource + summary: Create new navigation property to roleDefinitions for privilegedAccess + operationId: privilegedAccess.resources_CreateRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleDefinitions from privilegedAccess + description: The collection of role defintions for the resource. + operationId: privilegedAccess.resources_GetRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement. Supports $filter (eq). - nullable: true - isPerDeviceAcceptanceRequired: - type: boolean - description: 'This setting enables you to require end users to accept this agreement on every device that they are accessing it from. The end user will be required to register their device in Azure AD, if they haven''t already done so. Supports $filter (eq).' - nullable: true - isViewingBeforeAcceptanceRequired: - type: boolean - description: Indicates whether the user has to expand the agreement before accepting. Supports $filter (eq). - nullable: true - termsExpiration: - $ref: '#/components/schemas/microsoft.graph.termsExpiration' - userReacceptRequiredFrequency: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations. - format: duration - nullable: true - acceptances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - description: Read-only. Information about acceptances of this agreement. - file: - $ref: '#/components/schemas/microsoft.graph.agreementFile' - files: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' - description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' - additionalProperties: - type: object - microsoft.graph.agreementAcceptance: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: agreementAcceptance - type: object - properties: - agreementFileId: - type: string - description: ID of the agreement file accepted by the user. - nullable: true - agreementId: - type: string - description: ID of the agreement. - nullable: true - deviceDisplayName: - type: string - description: The display name of the device used for accepting the agreement. - nullable: true - deviceId: - type: string - description: The unique identifier of the device used for accepting the agreement. - nullable: true - deviceOSType: - type: string - description: The operating system used for accepting the agreement. - nullable: true - deviceOSVersion: - type: string - description: The operating system version of the device used for accepting the agreement. - nullable: true - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.resources.RoleDefinitions.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleSetting: + operationId: privilegedAccess.resources.RoleDefinitions.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceResource + summary: Update the navigation property roleDefinitions in privilegedAccess + operationId: privilegedAccess.resources_UpdateRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceResource + summary: Delete navigation property roleDefinitions for privilegedAccess + operationId: privilegedAccess.resources_DeleteRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/resource': + get: + tags: + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.resources.roleDefinitions_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - recordedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - state: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptanceState' - userDisplayName: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.resources.roleDefinitions.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleAssignments: + operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleDefinitions: + operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleSettings: + operationId: privilegedAccess.resources.roleDefinitions.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.resources.roleDefinitions_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: Display name of the user when the acceptance was recorded. - nullable: true - userEmail: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: Email of the user when the acceptance was recorded. - nullable: true - userId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.resources.roleDefinitions.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleDefinition: + operationId: privilegedAccess.resources.roleDefinitions.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleSettings from privilegedAccess + description: The collection of role settings for the resource. + operationId: privilegedAccess.resources_ListRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - adminEligibleSettings + - adminEligibleSettings desc + - adminMemberSettings + - adminMemberSettings desc + - isDefault + - isDefault desc + - lastUpdatedBy + - lastUpdatedBy desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - resourceId + - resourceId desc + - roleDefinitionId + - roleDefinitionId desc + - userEligibleSettings + - userEligibleSettings desc + - userMemberSettings + - userMemberSettings desc type: string - description: ID of the user who accepted the agreement. - nullable: true - userPrincipalName: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: UPN of the user when the acceptance was recorded. - nullable: true - additionalProperties: - type: object - microsoft.graph.agreementFile: - allOf: - - $ref: '#/components/schemas/microsoft.graph.agreementFileProperties' - - title: agreementFile - type: object - properties: - localizations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' - description: The localized version of the terms of use agreement files attached to the agreement. - additionalProperties: - type: object - microsoft.graph.agreementFileLocalization: - allOf: - - $ref: '#/components/schemas/microsoft.graph.agreementFileProperties' - - title: agreementFileLocalization - type: object - properties: - versions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' - description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. - additionalProperties: - type: object - microsoft.graph.agreementFileVersion: - allOf: - - $ref: '#/components/schemas/microsoft.graph.agreementFileProperties' - - title: agreementFileVersion - type: object - additionalProperties: - type: object - microsoft.graph.businessFlowTemplate: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: businessFlowTemplate - type: object - properties: - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: The name of the business flow template - nullable: true - additionalProperties: - type: object - microsoft.graph.identityGovernance: - title: identityGovernance - type: object - properties: - accessReviews: - $ref: '#/components/schemas/microsoft.graph.accessReviewSet' - appConsent: - $ref: '#/components/schemas/microsoft.graph.appConsentApprovalRoute' - termsOfUse: - $ref: '#/components/schemas/microsoft.graph.termsOfUseContainer' - entitlementManagement: - $ref: '#/components/schemas/microsoft.graph.entitlementManagement' - additionalProperties: - type: object - microsoft.graph.accessReviewSet: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewSet - type: object - properties: - decisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' - description: Represents an Azure AD access review decision on an instance of a review. - definitions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' - description: Represents the template and scheduling for an access review. - historyDefinitions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDefinition' - description: Represents a collection of access review history data and the scopes used to collect that data. - policy: - $ref: '#/components/schemas/microsoft.graph.accessReviewPolicy' - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceDecisionItem: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewInstanceDecisionItem - type: object - properties: - accessReviewId: - type: string - description: The identifier of the accessReviewInstance parent. Supports $select. Read-only. - appliedBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - appliedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The timestamp when the approval decision was applied. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.' - format: date-time - nullable: true - applyResult: - type: string - description: 'The result of applying the decision. Possible values: New, AppliedSuccessfully, AppliedWithUnknownFailure, AppliedSuccessfullyButObjectNotFound and ApplyNotSupported. Supports $select, $orderby, and $filter (eq only). Read-only.' - nullable: true - decision: - type: string - description: 'Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow. Supports $select, $orderby, and $filter (eq only).' - nullable: true - justification: - type: string - description: Justification left by the reviewer when they made the decision. - nullable: true - principal: - $ref: '#/components/schemas/microsoft.graph.identity' - principalLink: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.governanceRoleSettingCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedAccess.governanceResource + summary: Create new navigation property to roleSettings for privilegedAccess + operationId: privilegedAccess.resources_CreateRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleSettings from privilegedAccess + description: The collection of role settings for the resource. + operationId: privilegedAccess.resources_GetRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: 'Link to the principal object. For example: https://graph.microsoft.com/v1.0/users/a6c7aecb-cbfd-4763-87ef-e91b4bd509d9. Read-only.' - nullable: true - principalResourceMembership: - $ref: '#/components/schemas/microsoft.graph.decisionItemPrincipalResourceMembership' - recommendation: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: 'A system-generated recommendation for the approval decision based off last interactive sign-in to tenant. Recommend approve if sign-in is within thirty days of start of review. Recommend deny if sign-in is greater than thirty days of start of review. Recommendation not available otherwise. Possible values: Approve, Deny, or NoInfoAvailable. Supports $select, $orderby, and $filter (eq only). Read-only.' - nullable: true + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: resource: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource' - resourceLink: - type: string - description: 'A link to the resource. For example, https://graph.microsoft.com/v1.0/servicePrincipals/c86300f3-8695-4320-9f6e-32a2555f5ff8. Supports $select. Read-only.' - nullable: true - reviewedBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - reviewedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The timestamp when the review decision occurred. Supports $select. Read-only. - format: date-time - nullable: true - target: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemTarget' - insights: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceInsight' - description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. - instance: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - additionalProperties: - type: object - microsoft.graph.governanceInsight: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceInsight - type: object - properties: - insightCreatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + operationId: privilegedAccess.resources.RoleSettings.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinition: + operationId: privilegedAccess.resources.RoleSettings.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceResource + summary: Update the navigation property roleSettings in privilegedAccess + operationId: privilegedAccess.resources_UpdateRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceResource + summary: Delete navigation property roleSettings for privilegedAccess + operationId: privilegedAccess.resources_DeleteRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/resource': + get: + tags: + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for this role setting. + operationId: privilegedAccess.resources.roleSettings_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: Indicates when the insight was created. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewInstance: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewInstance - type: object - properties: - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'DateTime when review instance is scheduled to end.The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.' - format: date-time - nullable: true - errors: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewError' - description: Collection of errors in an access review instance lifecycle. Read-only. - fallbackReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of access review scopes is used to define who the reviewers are. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' - scope: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.resources.roleSettings.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignments: + operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinitions: + operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleSettings: + operationId: privilegedAccess.resources.roleSettings.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleDefinition from privilegedAccess + description: Read-only. The role definition that is enforced with this role setting. + operationId: privilegedAccess.resources.roleSettings_GetRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.' - format: date-time - nullable: true - status: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: 'Specifies the status of an accessReview. Possible values: Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only). Read-only.' - nullable: true - contactedReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' - description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' - decisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' - description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' - definition: - $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' - stages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewStage' - description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions: - title: accessReviewInstanceDecisionItemFilterByCurrentUserOptions - enum: - - reviewer - - unknownFutureValue - type: string - microsoft.graph.accessReviewScheduleDefinition: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewScheduleDefinition - type: object - properties: - additionalNotificationRecipients: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewNotificationRecipientItem' - description: Defines the list of additional users or group members to be notified of the access review progress. - backupReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - createdBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Timestamp when the access review series was created. Supports $select. Read-only. - format: date-time - nullable: true - descriptionForAdmins: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.resources.roleSettings.RoleDefinition.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleSetting: + operationId: privilegedAccess.resources.roleSettings.RoleDefinition.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceResource + summary: Update the navigation property roleDefinition in privilegedAccess + operationId: privilegedAccess.resources.roleSettings_UpdateRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceResource + summary: Delete navigation property roleDefinition for privilegedAccess + operationId: privilegedAccess.resources.roleSettings_DeleteRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource': + get: + tags: + - privilegedAccess.governanceResource + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.resources.roleSettings.roleDefinition_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: Description provided by review creators to provide more context of the review to admins. Supports $select. - nullable: true - descriptionForReviewers: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Email notifications support up to 256 characters. Supports $select. - nullable: true - displayName: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignmentRequests: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignments: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinitions: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleSettings: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting': + get: + tags: + - privilegedAccess.governanceResource + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.resources.roleSettings.roleDefinition_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceResource-id + in: path + description: 'key: id of governanceResource' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceResource + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: Name of the access review series. Supports $select and $orderBy. Required on create. - nullable: true - fallbackReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope. Replaces backupReviewers. Supports $select. NOTE: The value of this property will be ignored if fallback reviewers are assigned through the stageSettings property.' - instanceEnumerationScope: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: Timestamp when the access review series was last modified. Supports $select. Read-only. - format: date-time - nullable: true - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of access review scopes is used to define who are the reviewers. The reviewers property is only updatable if individual users are assigned as reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API. NOTE: The value of this property will be ignored if reviewers are assigned through the stageSettings property.' - scope: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - settings: - $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' - stageSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewStageSettings' - description: 'Required only for a multi-stage access review to define the stages and their settings. You can break down each review instance into up to three sequential stages, where each stage can have a different set of reviewers, fallback reviewers, and settings. Stages will be created sequentially based on the dependsOn property. Optional. When this property is defined, its settings are used instead of the corresponding settings in the accessReviewScheduleDefinition object and its settings, reviewers, and fallbackReviewers properties.' - status: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinition: + operationId: privilegedAccess.resources.roleSettings.roleDefinition.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceResource-id: $request.path.governanceResource-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/resources/microsoft.graph.register': + post: + tags: + - privilegedAccess.Actions + summary: Invoke action register + operationId: privilegedAccess.resources_register + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + externalId: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get roleAssignmentRequests from privilegedAccess + description: A collection of role assignment requests for the provider. + operationId: privilegedAccess_ListRoleAssignmentRequests + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - assignmentState + - assignmentState desc + - linkedEligibleRoleAssignmentId + - linkedEligibleRoleAssignmentId desc + - reason + - reason desc + - requestedDateTime + - requestedDateTime desc + - resourceId + - resourceId desc + - roleDefinitionId + - roleDefinitionId desc + - schedule + - schedule desc + - status + - status desc + - subjectId + - subjectId desc + - type + - type desc type: string - description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only). Read-only.' - nullable: true - instances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' - additionalProperties: - type: object - microsoft.graph.accessReviewStage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewStage - type: object - properties: - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - linkedEligibleRoleAssignmentId + - reason + - requestedDateTime + - resourceId + - roleDefinitionId + - schedule + - status + - subjectId + - type + - resource + - roleDefinition + - subject type: string - description: 'DateTime when review stage is scheduled to end. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. This property is the cumulative total of the durationInDays for all stages. Read-only.' - format: date-time - nullable: true - fallbackReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist.' - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'This collection of access review scopes is used to define who the reviewers are. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'DateTime when review stage is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - status: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition + - subject type: string - description: 'Specifies the status of an accessReviewStage. Possible values: Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $orderby, and $filter (eq only). Read-only.' - nullable: true - decisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' - description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' - additionalProperties: - type: object - microsoft.graph.accessReviewStageFilterByCurrentUserOptions: - title: accessReviewStageFilterByCurrentUserOptions - enum: - - reviewer - - unknownFutureValue - type: string - microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions: - title: accessReviewInstanceFilterByCurrentUserOptions - enum: - - reviewer - - unknownFutureValue - type: string - microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions: - title: accessReviewScheduleDefinitionFilterByCurrentUserOptions - enum: - - reviewer - - unknownFutureValue - type: string - microsoft.graph.accessReviewHistoryDefinition: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewHistoryDefinition - type: object - properties: - createdBy: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentRequestCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Create new navigation property to roleAssignmentRequests for privilegedAccess + operationId: privilegedAccess_CreateRoleAssignmentRequests + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get roleAssignmentRequests from privilegedAccess + description: A collection of role assignment requests for the provider. + operationId: privilegedAccess_GetRoleAssignmentRequests + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - linkedEligibleRoleAssignmentId + - reason + - requestedDateTime + - resourceId + - roleDefinitionId + - schedule + - status + - subjectId + - type + - resource + - roleDefinition + - subject type: string - description: Timestamp when the access review definition was created. - format: date-time - decisions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDecisionFilter' - description: 'Determines which review decisions will be included in the fetched review history data if specified. Optional on create. All decisions will be included by default if no decisions are provided on create. Possible values are: approve, deny, dontKnow, notReviewed, and notNotified.' - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition + - subject type: string - description: Name for the access review history data collection. Required. - downloadUri: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + links: + resource: + operationId: privilegedAccess.RoleAssignmentRequests.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinition: + operationId: privilegedAccess.RoleAssignmentRequests.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + subject: + operationId: privilegedAccess.RoleAssignmentRequests.GetSubject + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + cancel: + operationId: privilegedAccess.privilegedAccess.roleAssignmentRequests.governanceRoleAssignmentRequest.cancel + updateRequest: + operationId: privilegedAccess.privilegedAccess.roleAssignmentRequests.governanceRoleAssignmentRequest.updateRequest + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Update the navigation property roleAssignmentRequests in privilegedAccess + operationId: privilegedAccess_UpdateRoleAssignmentRequests + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Delete navigation property roleAssignmentRequests for privilegedAccess + operationId: privilegedAccess_DeleteRoleAssignmentRequests + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.cancel': + post: + tags: + - privilegedAccess.Actions + summary: Invoke action cancel + operationId: privilegedAccess.roleAssignmentRequests_cancel + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/microsoft.graph.updateRequest': + post: + tags: + - privilegedAccess.Actions + summary: Invoke action updateRequest + operationId: privilegedAccess.roleAssignmentRequests_updateRequest + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + decision: + type: string + nullable: true + assignmentState: + type: string + nullable: true + schedule: + $ref: '#/components/schemas/microsoft.graph.governanceSchedule' + reason: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get resource from privilegedAccess + description: Read-only. The resource that the request aims to. + operationId: privilegedAccess.roleAssignmentRequests_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - nullable: true - fulfilledDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - format: date-time - nullable: true - reviewHistoryPeriodEndDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleAssignmentRequests.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignmentRequests: + operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignments: + operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinitions: + operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleSettings: + operationId: privilegedAccess.roleAssignmentRequests.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get roleDefinition from privilegedAccess + description: Read-only. The role definition that the request aims to. + operationId: privilegedAccess.roleAssignmentRequests_GetRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: A timestamp. Reviews ending on or before this date will be included in the fetched history data. Only required if scheduleSettings is not defined. - format: date-time - reviewHistoryPeriodStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: A timestamp. Reviews starting on or before this date will be included in the fetched history data. Only required if scheduleSettings is not defined. - format: date-time - scheduleSettings: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryScheduleSettings' - scopes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - description: Used to scope what reviews are included in the fetched history data. Fetches reviews whose scope matches with this provided scope. Required. - status: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryStatus' - instances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryInstance' - description: 'If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that does not recur will have exactly one instance.' - additionalProperties: - type: object - microsoft.graph.accessReviewHistoryInstance: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewHistoryInstance - type: object - properties: - downloadUri: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.roleAssignmentRequests.RoleDefinition.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleSetting: + operationId: privilegedAccess.roleAssignmentRequests.RoleDefinition.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Update the navigation property roleDefinition in privilegedAccess + operationId: privilegedAccess.roleAssignmentRequests_UpdateRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Delete navigation property roleDefinition for privilegedAccess + operationId: privilegedAccess.roleAssignmentRequests_DeleteRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: Uri which can be used to retrieve review history data. This URI will be active for 24 hours after being generated. Required. - nullable: true - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: Timestamp when this instance and associated data expires and the history is deleted. Required. - format: date-time - fulfilledDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignmentRequests: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleAssignments: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinitions: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleSettings: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: Timestamp when all of the available data for this instance was collected. This will be set after this instance's status is set to done. Required. - format: date-time - nullable: true - reviewHistoryPeriodEndDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: 'Timestamp, reviews ending on or before this date will be included in the fetched history data.' - format: date-time - nullable: true - reviewHistoryPeriodStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + roleDefinition: + operationId: privilegedAccess.roleAssignmentRequests.roleDefinition.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignmentRequest-id: $request.path.governanceRoleAssignmentRequest-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject': + get: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Get subject from privilegedAccess + description: Read-only. The user/group principal. + operationId: privilegedAccess.roleAssignmentRequests_GetSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - email + - principalName + - type type: string - description: 'Timestamp, reviews starting on or after this date will be included in the fetched history data.' - format: date-time - nullable: true - runDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: Timestamp when the instance's history data is scheduled to be generated. - format: date-time - status: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryStatus' - additionalProperties: - type: object - microsoft.graph.accessReviewPolicy: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessReviewPolicy - type: object - properties: - description: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Update the navigation property subject in privilegedAccess + operationId: privilegedAccess.roleAssignmentRequests_UpdateSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleAssignmentRequest + summary: Delete navigation property subject for privilegedAccess + operationId: privilegedAccess.roleAssignmentRequests_DeleteSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignmentRequest-id + in: path + description: 'key: id of governanceRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get roleAssignments from privilegedAccess + description: A collection of role assignments for the provider. + operationId: privilegedAccess_ListRoleAssignments + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - assignmentState + - assignmentState desc + - endDateTime + - endDateTime desc + - externalId + - externalId desc + - linkedEligibleRoleAssignmentId + - linkedEligibleRoleAssignmentId desc + - memberType + - memberType desc + - resourceId + - resourceId desc + - roleDefinitionId + - roleDefinitionId desc + - startDateTime + - startDateTime desc + - status + - status desc + - subjectId + - subjectId desc type: string - description: Description for this policy. Read-only. - nullable: true - displayName: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - endDateTime + - externalId + - linkedEligibleRoleAssignmentId + - memberType + - resourceId + - roleDefinitionId + - startDateTime + - status + - subjectId + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - description: Display name for this policy. Read-only. - isGroupOwnerManagementEnabled: - type: boolean - description: 'If true, group owners can create and manage access reviews on groups they own.' - additionalProperties: - type: object - microsoft.graph.appConsentApprovalRoute: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: appConsentApprovalRoute - type: object - properties: - appConsentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.appConsentRequest' - description: A collection of userConsentRequest objects for a specific application. - additionalProperties: - type: object - microsoft.graph.appConsentRequest: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: appConsentRequest - type: object - properties: - appDisplayName: - type: string - description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby. - nullable: true - appId: - type: string - description: The identifier of the application. Required. Supports $filter (eq only) and $orderby. - consentType: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.' - nullable: true - pendingScopes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.appConsentRequestScope' - description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required. - userConsentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - description: A list of pending user consent requests. - additionalProperties: - type: object - microsoft.graph.userConsentRequest: - allOf: - - $ref: '#/components/schemas/microsoft.graph.request' - - title: userConsentRequest - type: object - properties: - reason: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.governanceRoleAssignmentCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Create new navigation property to roleAssignments for privilegedAccess + operationId: privilegedAccess_CreateRoleAssignments + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get roleAssignments from privilegedAccess + description: A collection of role assignments for the provider. + operationId: privilegedAccess_GetRoleAssignments + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - endDateTime + - externalId + - linkedEligibleRoleAssignmentId + - memberType + - resourceId + - roleDefinitionId + - startDateTime + - status + - subjectId + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby. - nullable: true - approval: - $ref: '#/components/schemas/microsoft.graph.approval' - additionalProperties: - type: object - microsoft.graph.approval: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: approval - type: object - properties: - steps: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.approvalStep' - additionalProperties: - type: object - microsoft.graph.approvalStep: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: approvalStep - type: object - properties: - assignedToMe: - type: boolean - description: Indicates whether the step is assigned to the calling user to review. Read-only. - nullable: true - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - description: The label provided by the policy creator to identify an approval step. Read-only. - nullable: true - justification: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + links: + linkedEligibleRoleAssignment: + operationId: privilegedAccess.RoleAssignments.GetLinkedEligibleRoleAssignment + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + resource: + operationId: privilegedAccess.RoleAssignments.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinition: + operationId: privilegedAccess.RoleAssignments.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + subject: + operationId: privilegedAccess.RoleAssignments.GetSubject + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Update the navigation property roleAssignments in privilegedAccess + operationId: privilegedAccess_UpdateRoleAssignments + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Delete navigation property roleAssignments for privilegedAccess + operationId: privilegedAccess_DeleteRoleAssignments + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get linkedEligibleRoleAssignment from privilegedAccess + description: 'Read-only. If this is an active assignment and created due to activation on an eligible assignment, it represents the object of that eligible assignment; Otherwise, the value is null.' + operationId: privilegedAccess.roleAssignments_GetLinkedEligibleRoleAssignment + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - endDateTime + - externalId + - linkedEligibleRoleAssignmentId + - memberType + - resourceId + - roleDefinitionId + - startDateTime + - status + - subjectId + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - description: The justification associated with the approval step decision. - nullable: true - reviewedBy: - $ref: '#/components/schemas/microsoft.graph.identity' - reviewedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - linkedEligibleRoleAssignment + - resource + - roleDefinition + - subject type: string - description: 'The date and time when a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - reviewResult: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + links: + linkedEligibleRoleAssignment: + operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetLinkedEligibleRoleAssignment + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + resource: + operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinition: + operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + subject: + operationId: privilegedAccess.roleAssignments.LinkedEligibleRoleAssignment.GetSubject + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/resource': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get resource from privilegedAccess + description: Read-only. The resource associated with the role assignment. + operationId: privilegedAccess.roleAssignments_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.' - nullable: true - status: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.' - nullable: true - additionalProperties: - type: object - microsoft.graph.consentRequestFilterByCurrentUserOptions: - title: consentRequestFilterByCurrentUserOptions - enum: - - reviewer - - unknownFutureValue - type: string - microsoft.graph.entitlementManagement: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: entitlementManagement - type: object - properties: - accessPackageAssignmentApprovals: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.approval' - description: Approval stages for decisions associated with access package assignment requests. - accessPackageAssignmentPolicies: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' - description: Represents the policy that governs which subjects can request or be assigned an access package via an access package assignment. - accessPackageAssignmentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequest' - description: Represents access package assignment requests created by or on behalf of a user. - accessPackageAssignmentResourceRoles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentResourceRole' - description: Represents the resource-specific role which a subject has been assigned through an access package assignment. - accessPackageAssignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' - description: The assignment of an access package to a subject for a period of time. - accessPackageCatalogs: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' - description: A container of access packages. - accessPackageResourceEnvironments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceEnvironment' - description: A reference to the geolocation environment in which a resource is located. - accessPackageResourceRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRequest' - description: Represents a request to add or remove a resource to or from a catalog respectively. - accessPackageResourceRoleScopes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRoleScope' - description: 'A reference to both a scope within a resource, and a role in that resource for that scope.' - accessPackageResources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - description: A reference to a resource associated with an access package catalog. - accessPackages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - description: Represents access package objects. - connectedOrganizations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.connectedOrganization' - description: Represents references to a directory or domain of another organization whose users can request access. - settings: - $ref: '#/components/schemas/microsoft.graph.entitlementManagementSettings' - subjects: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' - additionalProperties: - type: object - microsoft.graph.approvalFilterByCurrentUserOptions: - title: approvalFilterByCurrentUserOptions - enum: - - target - - createdBy - - approver - - unknownFutureValue - type: string - microsoft.graph.accessPackageAssignmentPolicy: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageAssignmentPolicy - type: object - properties: - accessPackageId: - type: string - description: Identifier of the access package. - nullable: true - accessReviewSettings: - $ref: '#/components/schemas/microsoft.graph.assignmentReviewSettings' - canExtend: - type: boolean - description: Indicates whether a user can extend the access package assignment duration after approval. - nullable: true - createdBy: - type: string - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - description: - type: string - description: The description of the policy. - nullable: true - displayName: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleAssignments.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignmentRequests: + operationId: privilegedAccess.roleAssignments.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignments: + operationId: privilegedAccess.roleAssignments.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinitions: + operationId: privilegedAccess.roleAssignments.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleSettings: + operationId: privilegedAccess.roleAssignments.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get roleDefinition from privilegedAccess + description: Read-only. The role definition associated with the role assignment. + operationId: privilegedAccess.roleAssignments_GetRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: The display name of the policy. Supports $filter (eq). - nullable: true - durationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of days in which assignments from this policy last until they are expired. - format: int32 - nullable: true - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: 'The expiration date for assignments created in this policy. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - modifiedBy: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.roleAssignments.RoleDefinition.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleSetting: + operationId: privilegedAccess.roleAssignments.RoleDefinition.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Update the navigation property roleDefinition in privilegedAccess + operationId: privilegedAccess.roleAssignments_UpdateRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Delete navigation property roleDefinition for privilegedAccess + operationId: privilegedAccess.roleAssignments_DeleteRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.roleAssignments.roleDefinition_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - nullable: true - modifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - questions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageQuestion' - description: Questions that are posed to the requestor. - requestApprovalSettings: - $ref: '#/components/schemas/microsoft.graph.approvalSettings' - requestorSettings: - $ref: '#/components/schemas/microsoft.graph.requestorSettings' - accessPackage: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - accessPackageCatalog: - $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' - customExtensionHandlers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customExtensionHandler' - description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. - additionalProperties: - type: object - microsoft.graph.accessPackage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackage - type: object - properties: - catalogId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignmentRequests: + operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleAssignments: + operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinitions: + operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleSettings: + operationId: privilegedAccess.roleAssignments.roleDefinition.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.roleAssignments.roleDefinition_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: Identifier of the access package catalog referencing this access package. Read-only. - nullable: true - createdBy: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: The userPrincipalName of the user or identity of the subject who created this resource. Read-only. - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.roleAssignments.roleDefinition.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + roleDefinition: + operationId: privilegedAccess.roleAssignments.roleDefinition.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleAssignment-id: $request.path.governanceRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject': + get: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Get subject from privilegedAccess + description: Read-only. The subject associated with the role assignment. + operationId: privilegedAccess.roleAssignments_GetSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - email + - principalName + - type type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - description: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: The description of the access package. - nullable: true - displayName: - type: string - description: 'The display name of the access package. Supports $filter (eq, contains).' - nullable: true - isHidden: - type: boolean - description: Whether the access package is hidden from the requestor. - nullable: true - isRoleScopesVisible: - type: boolean - description: Indicates whether role scopes are visible. - nullable: true - modifiedBy: - type: string - description: The userPrincipalName of the user who last modified this resource. Read-only. - nullable: true - modifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - accessPackageAssignmentPolicies: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' - description: Read-only. Nullable. Supports $expand. - accessPackageCatalog: - $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' - accessPackageResourceRoleScopes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRoleScope' - accessPackagesIncompatibleWith: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - description: The access packages that are incompatible with this package. Read-only. - incompatibleAccessPackages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - description: The access packages whose assigned users are ineligible to be assigned this access package. - incompatibleGroups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.group' - description: The groups whose members are ineligible to be assigned this access package. - additionalProperties: - type: object - microsoft.graph.accessPackageCatalog: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageCatalog - type: object - properties: - catalogStatus: - type: string - description: Has the value Published if the access packages are available for management. - nullable: true - catalogType: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Update the navigation property subject in privilegedAccess + operationId: privilegedAccess.roleAssignments_UpdateSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleAssignment + summary: Delete navigation property subject for privilegedAccess + operationId: privilegedAccess.roleAssignments_DeleteSubject + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleAssignment-id + in: path + description: 'key: id of governanceRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleAssignments/microsoft.graph.export()': + get: + tags: + - privilegedAccess.Functions + summary: Invoke function export + operationId: privilegedAccess.roleAssignments_export + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of governanceRoleAssignment + type: object + properties: + value: + type: array + items: + type: string + nullable: true + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + '/privilegedAccess/{privilegedAccess-id}/roleDefinitions': + get: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Get roleDefinitions from privilegedAccess + description: A collection of role defintions for the provider. + operationId: privilegedAccess_ListRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - displayName + - displayName desc + - externalId + - externalId desc + - resourceId + - resourceId desc + - templateId + - templateId desc type: string - description: One of UserManaged or ServiceDefault. - nullable: true - createdBy: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: UPN of the user who created this resource. Read-only. - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - description: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.governanceRoleDefinitionCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Create new navigation property to roleDefinitions for privilegedAccess + operationId: privilegedAccess_CreateRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}': + get: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Get roleDefinitions from privilegedAccess + description: A collection of role defintions for the provider. + operationId: privilegedAccess_GetRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: The description of the access package catalog. - nullable: true - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: 'The display name of the access package catalog. Supports $filter (eq, contains).' - nullable: true - isExternallyVisible: - type: boolean - description: Whether the access packages in this catalog can be requested by users outside of the tenant. - nullable: true - modifiedBy: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.RoleDefinitions.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleSetting: + operationId: privilegedAccess.RoleDefinitions.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Update the navigation property roleDefinitions in privilegedAccess + operationId: privilegedAccess_UpdateRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Delete navigation property roleDefinitions for privilegedAccess + operationId: privilegedAccess_DeleteRoleDefinitions + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/resource': + get: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.roleDefinitions_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: The UPN of the user who last modified this resource. Read-only. - nullable: true - modifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - accessPackageResourceRoles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' - description: The roles in each resource in a catalog. Read-only. - accessPackageResources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - accessPackageResourceScopes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' - accessPackages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - description: The access packages in this catalog. Read-only. Nullable. Supports $expand. - customAccessPackageWorkflowExtensions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customAccessPackageWorkflowExtension' - additionalProperties: - type: object - microsoft.graph.customExtensionHandler: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: customExtensionHandler - type: object - properties: - stage: - $ref: '#/components/schemas/microsoft.graph.accessPackageCustomExtensionStage' - customExtension: - $ref: '#/components/schemas/microsoft.graph.customAccessPackageWorkflowExtension' - additionalProperties: - type: object - microsoft.graph.customAccessPackageWorkflowExtension: - allOf: - - $ref: '#/components/schemas/microsoft.graph.customCalloutExtension' - - title: customAccessPackageWorkflowExtension - type: object - properties: - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'Represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleDefinitions.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleAssignmentRequests: + operationId: privilegedAccess.roleDefinitions.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleAssignments: + operationId: privilegedAccess.roleDefinitions.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleDefinitions: + operationId: privilegedAccess.roleDefinitions.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleSettings: + operationId: privilegedAccess.roleDefinitions.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting': + get: + tags: + - privilegedAccess.governanceRoleDefinition + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.roleDefinitions_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleDefinition-id + in: path + description: 'key: id of governanceRoleDefinition' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleDefinition + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: 'Represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentRequest: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageAssignmentRequest - type: object - properties: - answers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAnswer' - description: Answers provided by the requestor to accessPackageQuestions asked of them at the time of request. - completedDate: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: 'The date of the end of processing, either successful or failure, of a request. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.roleDefinitions.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + roleDefinition: + operationId: privilegedAccess.roleDefinitions.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleDefinition-id: $request.path.governanceRoleDefinition-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleSettings': + get: + tags: + - privilegedAccess.governanceRoleSetting + summary: Get roleSettings from privilegedAccess + description: A collection of role settings for the provider. + operationId: privilegedAccess_ListRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - adminEligibleSettings + - adminEligibleSettings desc + - adminMemberSettings + - adminMemberSettings desc + - isDefault + - isDefault desc + - lastUpdatedBy + - lastUpdatedBy desc + - lastUpdatedDateTime + - lastUpdatedDateTime desc + - resourceId + - resourceId desc + - roleDefinitionId + - roleDefinitionId desc + - userEligibleSettings + - userEligibleSettings desc + - userMemberSettings + - userMemberSettings desc type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - customExtensionHandlerInstances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customExtensionHandlerInstance' - description: A collection of custom workflow extension instances being run on an assignment request. Read-only. - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - format: date-time - nullable: true - isValidationOnly: - type: boolean - description: True if the request is not to be processed for assignment. - nullable: true - justification: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: The requestor's supplied justification. - nullable: true - requestState: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.governanceRoleSettingCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedAccess.governanceRoleSetting + summary: Create new navigation property to roleSettings for privilegedAccess + operationId: privilegedAccess_CreateRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}': + get: + tags: + - privilegedAccess.governanceRoleSetting + summary: Get roleSettings from privilegedAccess + description: A collection of role settings for the provider. + operationId: privilegedAccess_GetRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: 'One of PendingApproval, Canceled, Denied, Delivering, Delivered, PartiallyDelivered, DeliveryFailed, Submitted or Scheduled. Read-only.' - nullable: true - requestStatus: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - description: More information on the request processing status. Read-only. - nullable: true - requestType: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.RoleSettings.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinition: + operationId: privilegedAccess.RoleSettings.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleSetting + summary: Update the navigation property roleSettings in privilegedAccess + operationId: privilegedAccess_UpdateRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleSetting + summary: Delete navigation property roleSettings for privilegedAccess + operationId: privilegedAccess_DeleteRoleSettings + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/resource': + get: + tags: + - privilegedAccess.governanceRoleSetting + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for this role setting. + operationId: privilegedAccess.roleSettings_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'One of UserAdd, UserRemove, AdminAdd, AdminRemove or SystemRemove. A request from the user themselves would have requestType of UserAdd or UserRemove. Read-only.' - nullable: true - schedule: - $ref: '#/components/schemas/microsoft.graph.requestSchedule' - accessPackage: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - accessPackageAssignment: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' - requestor: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' - additionalProperties: - type: object - microsoft.graph.accessPackageAssignment: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageAssignment - type: object - properties: - accessPackageId: - type: string - description: The identifier of the access package. Read-only. - nullable: true - assignmentPolicyId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: The identifier of the access package assignment policy. Read-only. - nullable: true - assignmentState: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleSettings.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignmentRequests: + operationId: privilegedAccess.roleSettings.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignments: + operationId: privilegedAccess.roleSettings.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinitions: + operationId: privilegedAccess.roleSettings.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleSettings: + operationId: privilegedAccess.roleSettings.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition': + get: + tags: + - privilegedAccess.governanceRoleSetting + summary: Get roleDefinition from privilegedAccess + description: Read-only. The role definition that is enforced with this role setting. + operationId: privilegedAccess.roleSettings_GetRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - resourceId + - templateId + - resource + - roleSetting type: string - description: 'The state of the access package assignment. Possible values are Delivering, Delivered, or Expired. Read-only. Supports $filter (eq).' - nullable: true - assignmentStatus: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleSetting type: string - description: 'More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.' - nullable: true - catalogId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + links: + resource: + operationId: privilegedAccess.roleSettings.RoleDefinition.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleSetting: + operationId: privilegedAccess.roleSettings.RoleDefinition.GetRoleSetting + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedAccess.governanceRoleSetting + summary: Update the navigation property roleDefinition in privilegedAccess + operationId: privilegedAccess.roleSettings_UpdateRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedAccess.governanceRoleSetting + summary: Delete navigation property roleDefinition for privilegedAccess + operationId: privilegedAccess.roleSettings_DeleteRoleDefinition + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource': + get: + tags: + - privilegedAccess.governanceRoleSetting + summary: Get resource from privilegedAccess + description: Read-only. The associated resource for the role definition. + operationId: privilegedAccess.roleSettings.roleDefinition_GetResource + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - displayName + - externalId + - registeredDateTime + - registeredRoot + - status + - type + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: The identifier of the catalog containing the access package. Read-only. - nullable: true - expiredDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - parent + - roleAssignmentRequests + - roleAssignments + - roleDefinitions + - roleSettings type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - isExtended: - type: boolean - description: Indicates whether the access package assignment is extended. Read-only. - nullable: true - schedule: - $ref: '#/components/schemas/microsoft.graph.requestSchedule' - targetId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + links: + parent: + operationId: privilegedAccess.roleSettings.roleDefinition.Resource.GetParent + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignmentRequests: + operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleAssignmentRequests + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleAssignments: + operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleAssignments + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinitions: + operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleDefinitions + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleSettings: + operationId: privilegedAccess.roleSettings.roleDefinition.Resource.ListRoleSettings + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting': + get: + tags: + - privilegedAccess.governanceRoleSetting + summary: Get roleSetting from privilegedAccess + description: The associated role setting for the role definition. + operationId: privilegedAccess.roleSettings.roleDefinition_GetRoleSetting + parameters: + - name: privilegedAccess-id + in: path + description: 'key: id of privilegedAccess' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedAccess + - name: governanceRoleSetting-id + in: path + description: 'key: id of governanceRoleSetting' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: governanceRoleSetting + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - adminEligibleSettings + - adminMemberSettings + - isDefault + - lastUpdatedBy + - lastUpdatedDateTime + - resourceId + - roleDefinitionId + - userEligibleSettings + - userMemberSettings + - resource + - roleDefinition type: string - description: The ID of the subject with the assignment. Read-only. - nullable: true - accessPackage: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - accessPackageAssignmentPolicy: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' - accessPackageAssignmentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequest' - accessPackageAssignmentResourceRoles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentResourceRole' - description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. - target: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' - additionalProperties: - type: object - microsoft.graph.accessPackageSubject: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageSubject - type: object - properties: - altSecId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - resource + - roleDefinition type: string - nullable: true - connectedOrganizationId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + links: + resource: + operationId: privilegedAccess.roleSettings.roleDefinition.RoleSetting.GetResource + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + roleDefinition: + operationId: privilegedAccess.roleSettings.roleDefinition.RoleSetting.GetRoleDefinition + parameters: + privilegedAccess-id: $request.path.privilegedAccess-id + governanceRoleSetting-id: $request.path.governanceRoleSetting-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /privilegedApproval: + get: + tags: + - privilegedApproval.privilegedApproval + summary: List privilegedApproval + description: 'Retrieve a list of privilegedapproval objects. To filter the results from the query, use the standard OData ``$filter`` expressions in the URIs.' + operationId: privilegedApproval.privilegedApproval_ListPrivilegedApproval + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - approvalDuration + - approvalDuration desc + - approvalState + - approvalState desc + - approvalType + - approvalType desc + - approverReason + - approverReason desc + - endDateTime + - endDateTime desc + - requestorReason + - requestorReason desc + - roleId + - roleId desc + - startDateTime + - startDateTime desc + - userId + - userId desc type: string - description: The identifier of the connected organization of the subject. - nullable: true - displayName: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - approvalDuration + - approvalState + - approvalType + - approverReason + - endDateTime + - requestorReason + - roleId + - startDateTime + - userId + - request + - roleInfo type: string - description: The display name of the subject. - nullable: true - email: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - request + - roleInfo type: string - description: The email address of the subject. - nullable: true - objectId: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedApprovalCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedApproval.privilegedApproval + summary: Create privilegedApproval + description: Use this API to create a new privilegedApproval. + operationId: privilegedApproval.privilegedApproval_CreatePrivilegedApproval + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}': + get: + tags: + - privilegedApproval.privilegedApproval + summary: Get privilegedApproval + description: Retrieve the properties and relationships of privilegedapproval object. + operationId: privilegedApproval.privilegedApproval_GetPrivilegedApproval + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - approvalDuration + - approvalState + - approvalType + - approverReason + - endDateTime + - requestorReason + - roleId + - startDateTime + - userId + - request + - roleInfo type: string - description: The object identifier of the subject. null if the subject is not yet a user in the tenant. - nullable: true - onPremisesSecurityIdentifier: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - request + - roleInfo type: string - description: 'A string representation of the principal''s security identifier, if known, or null if the subject does not have a security identifier.' - nullable: true - principalName: + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + links: + request: + operationId: privilegedApproval.GetRequest + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + roleInfo: + operationId: privilegedApproval.GetRoleInfo + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedApproval.privilegedApproval + summary: Update privilegedapproval + description: Update the properties of privilegedapproval object. + operationId: privilegedApproval.privilegedApproval_UpdatePrivilegedApproval + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedApproval.privilegedApproval + summary: Delete entity from privilegedApproval + operationId: privilegedApproval.privilegedApproval_DeletePrivilegedApproval + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}/request': + get: + tags: + - privilegedApproval.privilegedRoleAssignmentRequest + summary: Get request from privilegedApproval + description: Read-only. The role assignment request for this approval object + operationId: privilegedApproval_GetRequest + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - duration + - reason + - requestedDateTime + - roleId + - schedule + - status + - ticketNumber + - ticketSystem + - type + - userId + - roleInfo type: string - description: 'The principal name, if known, of the subject.' - nullable: true - subjectLifecycle: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubjectLifecycle' - type: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: The resource type of the subject. - nullable: true - connectedOrganization: - $ref: '#/components/schemas/microsoft.graph.connectedOrganization' - additionalProperties: - type: object - microsoft.graph.connectedOrganization: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: connectedOrganization - type: object - properties: - createdBy: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + links: + roleInfo: + operationId: privilegedApproval.Request.GetRoleInfo + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}/roleInfo': + get: + tags: + - privilegedApproval.privilegedRole + summary: Get roleInfo from privilegedApproval + operationId: privilegedApproval_GetRoleInfo + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - assignments + - settings + - summary type: string - description: UPN of the user who created this resource. Read-only. - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - assignments + - settings + - summary type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - description: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + links: + assignments: + operationId: privilegedApproval.RoleInfo.ListAssignments + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + settings: + operationId: privilegedApproval.RoleInfo.GetSettings + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + summary: + operationId: privilegedApproval.RoleInfo.GetSummary + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + selfActivate: + operationId: privilegedApproval.privilegedApproval.roleInfo.selfActivate + selfDeactivate: + operationId: privilegedApproval.privilegedApproval.roleInfo.selfDeactivate + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedApproval.privilegedRole + summary: Update the navigation property roleInfo in privilegedApproval + operationId: privilegedApproval_UpdateRoleInfo + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedApproval.privilegedRole + summary: Delete navigation property roleInfo for privilegedApproval + operationId: privilegedApproval_DeleteRoleInfo + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments': + get: + tags: + - privilegedApproval.privilegedRole + summary: Get assignments from privilegedApproval + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedApproval.roleInfo_ListAssignments + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - expirationDateTime + - expirationDateTime desc + - isElevated + - isElevated desc + - resultMessage + - resultMessage desc + - roleId + - roleId desc + - userId + - userId desc type: string - description: The description of the connected organization. - nullable: true - displayName: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: The display name of the connected organization. Supports $filter (eq). - nullable: true - identitySources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.identitySource' - description: 'The identity sources in this connected organization, one of azureActiveDirectoryTenant, crossCloudAzureActiveDirectoryTenant, domainIdentitySource or externalDomainFederation. Read-only. Nullable. Supports $select and $filter(eq). To filter by the derived types, you must declare the resource using its full OData cast, for example, $filter=identitySources/any(is:is/microsoft.graph.azureActiveDirectoryTenant/tenantId eq ''bcfdfff4-cbc3-43f2-9000-ba7b7515054f'').' - modifiedBy: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: UPN of the user who last modified this resource. Read-only. - nullable: true - modifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/{privilegedRoleAssignment-id}': + get: + tags: + - privilegedApproval.privilegedRole + summary: Get assignments from privilegedApproval + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedApproval.roleInfo_GetAssignments + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time - nullable: true - state: - $ref: '#/components/schemas/microsoft.graph.connectedOrganizationState' - externalSponsors: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - internalSponsors: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions: - title: accessPackageAssignmentRequestFilterByCurrentUserOptions - enum: - - target - - createdBy - - approver - - unknownFutureValue - type: string - microsoft.graph.accessPackageAssignmentResourceRole: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageAssignmentResourceRole - type: object - properties: - originId: - type: string - description: 'A unique identifier relative to the origin system, corresponding to the originId property of the accessPackageResourceRole.' - nullable: true - originSystem: - type: string - description: 'The system where the role assignment is to be created or has been created for an access package assignment, such as SharePointOnline, AadGroup or AadApplication, corresponding to the originSystem property of the accessPackageResourceRole.' - nullable: true - status: - type: string - description: 'The value is PendingFulfillment when the access package assignment has not yet been delivered to the origin system, and Fulfilled when the access package assignment has been delivered to the origin system.' - nullable: true - accessPackageAssignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' - description: The access package assignments resulting in this role assignment. Read-only. Nullable. - accessPackageResourceRole: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' - accessPackageResourceScope: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' - accessPackageSubject: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' - additionalProperties: - type: object - microsoft.graph.accessPackageResourceRole: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageResourceRole - type: object - properties: - description: - type: string - description: A description for the resource role. - nullable: true - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: The display name of the resource role such as the role defined by the application. - nullable: true - originId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + links: + roleInfo: + operationId: privilegedApproval.roleInfo.Assignments.GetRoleInfo + parameters: + privilegedApproval-id: $request.path.privilegedApproval-id + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}/roleInfo/microsoft.graph.selfActivate': + post: + tags: + - privilegedApproval.Actions + summary: Invoke action selfActivate + operationId: privilegedApproval.roleInfo_selfActivate + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + reason: + type: string + nullable: true + duration: + type: string + nullable: true + ticketNumber: + type: string + nullable: true + ticketSystem: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedApproval/{privilegedApproval-id}/roleInfo/microsoft.graph.selfDeactivate': + post: + tags: + - privilegedApproval.Actions + summary: Invoke action selfDeactivate + operationId: privilegedApproval.roleInfo_selfDeactivate + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedApproval/{privilegedApproval-id}/roleInfo/settings': + get: + tags: + - privilegedApproval.privilegedRole + summary: Get settings from privilegedApproval + description: The settings for this role. Read-only. Nullable. + operationId: privilegedApproval.roleInfo_GetSettings + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - approvalOnElevation + - approverIds + - elevationDuration + - isMfaOnElevationConfigurable + - lastGlobalAdmin + - maxElavationDuration + - mfaOnElevation + - minElevationDuration + - notificationToUserOnElevation + - ticketingInfoOnElevation type: string - description: 'The unique identifier of the resource role in the origin system. For a SharePoint Online site, the originId will be the sequence number of the role in the site.' - nullable: true - originSystem: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup.' - nullable: true - accessPackageResource: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - additionalProperties: - type: object - microsoft.graph.accessPackageResource: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageResource - type: object - properties: - addedBy: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedApproval.privilegedRole + summary: Update the navigation property settings in privilegedApproval + operationId: privilegedApproval.roleInfo_UpdateSettings + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedApproval.privilegedRole + summary: Delete navigation property settings for privilegedApproval + operationId: privilegedApproval.roleInfo_DeleteSettings + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedApproval/{privilegedApproval-id}/roleInfo/summary': + get: + tags: + - privilegedApproval.privilegedRole + summary: Get summary from privilegedApproval + description: The summary information for this role. Read-only. Nullable. + operationId: privilegedApproval.roleInfo_GetSummary + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - elevatedCount + - managedCount + - mfaEnabled + - status + - usersCount type: string - description: The name of the user or application that first added this resource. Read-only. - nullable: true - addedOn: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - attributes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttribute' - description: Contains information about the attributes to be collected from the requestor and sent to the resource application. - description: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedApproval.privilegedRole + summary: Update the navigation property summary in privilegedApproval + operationId: privilegedApproval.roleInfo_UpdateSummary + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedApproval.privilegedRole + summary: Delete navigation property summary for privilegedApproval + operationId: privilegedApproval.roleInfo_DeleteSummary + parameters: + - name: privilegedApproval-id + in: path + description: 'key: id of privilegedApproval' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedApproval + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /privilegedApproval/microsoft.graph.myRequests(): + get: + tags: + - privilegedApproval.Functions + summary: Invoke function myRequests + operationId: privilegedApproval_myRequests + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of privilegedApproval + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.privilegedApproval' + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + /privilegedOperationEvents: + get: + tags: + - privilegedOperationEvents.privilegedOperationEvent + summary: List privilegedOperationEvents + description: 'Retrieve a list of privilegedOperationEvent objects, which represent the audit events that are generated by Privileged Identity Management for the role operations. For the details about the audit event, refer privilegedOperationEvent. To filter the query results, use the standard OData ``$filter`` expression.' + operationId: privilegedOperationEvents.privilegedOperationEvent_ListPrivilegedOperationEvent + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - additionalInformation + - additionalInformation desc + - creationDateTime + - creationDateTime desc + - expirationDateTime + - expirationDateTime desc + - referenceKey + - referenceKey desc + - referenceSystem + - referenceSystem desc + - requestorId + - requestorId desc + - requestorName + - requestorName desc + - requestType + - requestType desc + - roleId + - roleId desc + - roleName + - roleName desc + - tenantId + - tenantId desc + - userId + - userId desc + - userMail + - userMail desc + - userName + - userName desc type: string - description: A description for the resource. - nullable: true - displayName: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - additionalInformation + - creationDateTime + - expirationDateTime + - referenceKey + - referenceSystem + - requestorId + - requestorName + - requestType + - roleId + - roleName + - tenantId + - userId + - userMail + - userName type: string - description: 'The display name of the resource, such as the application name, group name or site name.' - nullable: true - isPendingOnboarding: - type: boolean - description: True if the resource is not yet available for assignment. - nullable: true - originId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The unique identifier of the resource in the origin system. In the case of an Azure AD group, this is the identifier of the group.' - nullable: true - originSystem: - type: string - description: 'The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup.' - nullable: true - resourceType: - type: string - description: 'The type of the resource, such as Application if it is an Azure AD connected application, or SharePoint Online Site for a SharePoint Online site.' - nullable: true - url: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedOperationEventCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedOperationEvents.privilegedOperationEvent + summary: Add new entity to privilegedOperationEvents + operationId: privilegedOperationEvents.privilegedOperationEvent_CreatePrivilegedOperationEvent + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedOperationEvents/{privilegedOperationEvent-id}': + get: + tags: + - privilegedOperationEvents.privilegedOperationEvent + summary: Get entity from privilegedOperationEvents by key + operationId: privilegedOperationEvents.privilegedOperationEvent_GetPrivilegedOperationEvent + parameters: + - name: privilegedOperationEvent-id + in: path + description: 'key: id of privilegedOperationEvent' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedOperationEvent + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - additionalInformation + - creationDateTime + - expirationDateTime + - referenceKey + - referenceSystem + - requestorId + - requestorName + - requestType + - roleId + - roleName + - tenantId + - userId + - userMail + - userName type: string - description: 'A unique resource locator for the resource, such as the URL for signing a user into an application.' - nullable: true - accessPackageResourceEnvironment: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceEnvironment' - accessPackageResourceRoles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' - description: Read-only. Nullable. Supports $expand. - accessPackageResourceScopes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' - description: Read-only. Nullable. Supports $expand. - additionalProperties: - type: object - microsoft.graph.accessPackageResourceEnvironment: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageResourceEnvironment - type: object - properties: - connectionInfo: - $ref: '#/components/schemas/microsoft.graph.connectionInfo' - createdBy: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: The display name of the user that created this object. - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedOperationEvents.privilegedOperationEvent + summary: Update entity in privilegedOperationEvents + operationId: privilegedOperationEvents.privilegedOperationEvent_UpdatePrivilegedOperationEvent + parameters: + - name: privilegedOperationEvent-id + in: path + description: 'key: id of privilegedOperationEvent' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedOperationEvent + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedOperationEvents.privilegedOperationEvent + summary: Delete entity from privilegedOperationEvents + operationId: privilegedOperationEvents.privilegedOperationEvent_DeletePrivilegedOperationEvent + parameters: + - name: privilegedOperationEvent-id + in: path + description: 'key: id of privilegedOperationEvent' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedOperationEvent + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /privilegedRoleAssignmentRequests: + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest + summary: List privilegedRoleAssignmentRequests + description: Retrieve a collection of privilegedRoleAssignmentRequest. **Note:** This requester must have at least one role assignment on the resource. + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_ListPrivilegedRoleAssignmentRequest + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - assignmentState + - assignmentState desc + - duration + - duration desc + - reason + - reason desc + - requestedDateTime + - requestedDateTime desc + - roleId + - roleId desc + - schedule + - schedule desc + - status + - status desc + - ticketNumber + - ticketNumber desc + - ticketSystem + - ticketSystem desc + - type + - type desc + - userId + - userId desc type: string - description: 'The date and time that this object was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' - format: date-time - nullable: true - description: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - duration + - reason + - requestedDateTime + - roleId + - schedule + - status + - ticketNumber + - ticketSystem + - type + - userId + - roleInfo type: string - description: The description of this object. - nullable: true - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: The display name of this object. - nullable: true - isDefaultEnvironment: - type: boolean - description: 'Determines whether this is default environment or not. It is set to true for all static origin systems, such as Azure AD groups and Azure AD Applications.' - nullable: true - modifiedBy: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentRequestCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest + summary: Create privilegedRoleAssignmentRequest + description: Create a privilegedroleassignmentrequest object. + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_CreatePrivilegedRoleAssignmentRequest + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}': + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest + summary: Get entity from privilegedRoleAssignmentRequests by key + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_GetPrivilegedRoleAssignmentRequest + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - assignmentState + - duration + - reason + - requestedDateTime + - roleId + - schedule + - status + - ticketNumber + - ticketSystem + - type + - userId + - roleInfo type: string - description: The display name of the entity that last modified this object. - nullable: true - modifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: 'The date and time that this object was last modified. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' - format: date-time - nullable: true - originId: + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + links: + roleInfo: + operationId: privilegedRoleAssignmentRequests.GetRoleInfo + parameters: + privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id + cancel: + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest.cancel + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest + summary: Update entity in privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_UpdatePrivilegedRoleAssignmentRequest + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest + summary: Delete entity from privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest_DeletePrivilegedRoleAssignmentRequest + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/microsoft.graph.cancel': + post: + tags: + - privilegedRoleAssignmentRequests.Actions + summary: Invoke action cancel + operationId: privilegedRoleAssignmentRequests_cancel + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo': + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Get roleInfo from privilegedRoleAssignmentRequests + description: The roleInfo object of the role assignment request. + operationId: privilegedRoleAssignmentRequests_GetRoleInfo + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - assignments + - settings + - summary type: string - description: The unique identifier of this environment in the origin system. - originSystem: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - assignments + - settings + - summary type: string - description: 'The type of the resource in the origin system, that is, SharePointOnline. Requires $filter (eq).' - accessPackageResources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - description: Read-only. Required. - additionalProperties: - type: object - microsoft.graph.accessPackageResourceScope: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageResourceScope - type: object - properties: - description: - type: string - description: The description of the scope. - nullable: true - displayName: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + links: + assignments: + operationId: privilegedRoleAssignmentRequests.RoleInfo.ListAssignments + parameters: + privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id + settings: + operationId: privilegedRoleAssignmentRequests.RoleInfo.GetSettings + parameters: + privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id + summary: + operationId: privilegedRoleAssignmentRequests.RoleInfo.GetSummary + parameters: + privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id + selfActivate: + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest.roleInfo.selfActivate + selfDeactivate: + operationId: privilegedRoleAssignmentRequests.privilegedRoleAssignmentRequest.roleInfo.selfDeactivate + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Update the navigation property roleInfo in privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests_UpdateRoleInfo + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Delete navigation property roleInfo for privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests_DeleteRoleInfo + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments': + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Get assignments from privilegedRoleAssignmentRequests + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedRoleAssignmentRequests.roleInfo_ListAssignments + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - expirationDateTime + - expirationDateTime desc + - isElevated + - isElevated desc + - resultMessage + - resultMessage desc + - roleId + - roleId desc + - userId + - userId desc type: string - description: The display name of the scope. - nullable: true - isRootScope: - type: boolean - description: True if the scopes are arranged in a hierarchy and this is the top or root scope of the resource. - nullable: true - originId: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: The unique identifier for the scope in the resource as defined in the origin system. - nullable: true - originSystem: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: The origin system for the scope. - nullable: true - roleOriginId: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/{privilegedRoleAssignment-id}': + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Get assignments from privilegedRoleAssignmentRequests + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedRoleAssignmentRequests.roleInfo_GetAssignments + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: 'The origin system for the role, if different.' - nullable: true - url: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: A resource locator for the scope. - nullable: true - accessPackageResource: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - additionalProperties: - type: object - microsoft.graph.accessPackageResourceRoleScope: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageResourceRoleScope - type: object - properties: - createdBy: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + links: + roleInfo: + operationId: privilegedRoleAssignmentRequests.roleInfo.Assignments.GetRoleInfo + parameters: + privilegedRoleAssignmentRequest-id: $request.path.privilegedRoleAssignmentRequest-id + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/microsoft.graph.selfActivate': + post: + tags: + - privilegedRoleAssignmentRequests.Actions + summary: Invoke action selfActivate + operationId: privilegedRoleAssignmentRequests.roleInfo_selfActivate + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + reason: + type: string + nullable: true + duration: + type: string + nullable: true + ticketNumber: + type: string + nullable: true + ticketSystem: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/microsoft.graph.selfDeactivate': + post: + tags: + - privilegedRoleAssignmentRequests.Actions + summary: Invoke action selfDeactivate + operationId: privilegedRoleAssignmentRequests.roleInfo_selfDeactivate + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings': + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Get settings from privilegedRoleAssignmentRequests + description: The settings for this role. Read-only. Nullable. + operationId: privilegedRoleAssignmentRequests.roleInfo_GetSettings + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - approvalOnElevation + - approverIds + - elevationDuration + - isMfaOnElevationConfigurable + - lastGlobalAdmin + - maxElavationDuration + - mfaOnElevation + - minElevationDuration + - notificationToUserOnElevation + - ticketingInfoOnElevation type: string - nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - modifiedBy: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Update the navigation property settings in privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests.roleInfo_UpdateSettings + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Delete navigation property settings for privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests.roleInfo_DeleteSettings + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary': + get: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Get summary from privilegedRoleAssignmentRequests + description: The summary information for this role. Read-only. Nullable. + operationId: privilegedRoleAssignmentRequests.roleInfo_GetSummary + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - elevatedCount + - managedCount + - mfaEnabled + - status + - usersCount type: string - nullable: true - modifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - accessPackageResourceRole: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' - accessPackageResourceScope: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentRequestRequirements: - title: accessPackageAssignmentRequestRequirements - type: object - properties: - existingAnswers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAnswer' - description: Answers that have already been provided. - isApprovalRequired: - type: boolean - description: Indicates whether a request must be approved by an approver. - nullable: true - isApprovalRequiredForExtension: - type: boolean - description: Indicates whether approval is required when a user tries to extend their access. - nullable: true - isCustomAssignmentScheduleAllowed: - type: boolean - description: Indicates whether the requestor is allowed to set a custom schedule. - nullable: true - isRequestorJustificationRequired: - type: boolean - description: Indicates whether a requestor must supply justification when submitting an assignment request. - nullable: true - policyDescription: - type: string - description: The description of the policy that the user is trying to request access using. - nullable: true - policyDisplayName: - type: string - description: The display name of the policy that the user is trying to request access using. - nullable: true - policyId: - type: string - description: The identifier of the policy that these requirements are associated with. This identifier can be used when creating a new assignment request. - nullable: true - questions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageQuestion' - description: Questions that are configured on the policy. The questions can be required or optional; callers can determine whether a question is required or optional based on the isRequired property on accessPackageQuestion. - schedule: - $ref: '#/components/schemas/microsoft.graph.requestSchedule' - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions: - title: accessPackageAssignmentFilterByCurrentUserOptions - enum: - - target - - createdBy - - unknownFutureValue - type: string - microsoft.graph.accessPackageFilterByCurrentUserOptions: - title: accessPackageFilterByCurrentUserOptions - enum: - - allowedRequestor - - unknownFutureValue - type: string - microsoft.graph.accessPackageResourceRequest: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: accessPackageResourceRequest - type: object - properties: - catalogId: - type: string - description: The unique ID of the access package catalog. - nullable: true - executeImmediately: - type: boolean - nullable: true - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Update the navigation property summary in privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests.roleInfo_UpdateSummary + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignmentRequests.privilegedRole + summary: Delete navigation property summary for privilegedRoleAssignmentRequests + operationId: privilegedRoleAssignmentRequests.roleInfo_DeleteSummary + parameters: + - name: privilegedRoleAssignmentRequest-id + in: path + description: 'key: id of privilegedRoleAssignmentRequest' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignmentRequest + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /privilegedRoleAssignmentRequests/microsoft.graph.my(): + get: + tags: + - privilegedRoleAssignmentRequests.Functions + summary: Invoke function my + operationId: privilegedRoleAssignmentRequests_my + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of privilegedRoleAssignmentRequest + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + /privilegedRoleAssignments: + get: + tags: + - privilegedRoleAssignments.privilegedRoleAssignment + summary: List privilegedRoleAssignments + description: 'Retrieve a list of privilegedRoleAssignment objects, which correspond to all role assignments for the organization.' + operationId: privilegedRoleAssignments.privilegedRoleAssignment_ListPrivilegedRoleAssignment + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - expirationDateTime + - expirationDateTime desc + - isElevated + - isElevated desc + - resultMessage + - resultMessage desc + - roleId + - roleId desc + - userId + - userId desc type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - isValidationOnly: - type: boolean - description: 'If set, does not add the resource.' - nullable: true - justification: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: The requestor's justification for adding or removing the resource. - nullable: true - requestState: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: The outcome of whether the service was able to add the resource to the catalog. The value is Delivered if the resource was added or removed. Read-Only. - nullable: true - requestStatus: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedRoleAssignments.privilegedRoleAssignment + summary: Create privilegedRoleAssignment + description: Use this API to create a new privilegedRoleAssignment. + operationId: privilegedRoleAssignments.privilegedRoleAssignment_CreatePrivilegedRoleAssignment + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}': + get: + tags: + - privilegedRoleAssignments.privilegedRoleAssignment + summary: Get privilegedRoleAssignment + description: Retrieve the properties and relationships of privilegedRoleAssignment object. + operationId: privilegedRoleAssignments.privilegedRoleAssignment_GetPrivilegedRoleAssignment + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - nullable: true - requestType: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: 'Use AdminAdd to add a resource, if the caller is an administrator or resource owner, or AdminRemove to remove a resource.' - nullable: true - accessPackageResource: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - requestor: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' - additionalProperties: - type: object - microsoft.graph.directoryObject: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: directoryObject - type: object - properties: - deletedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + links: + roleInfo: + operationId: privilegedRoleAssignments.GetRoleInfo + parameters: + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + makeEligible: + operationId: privilegedRoleAssignments.privilegedRoleAssignment.makeEligible + makePermanent: + operationId: privilegedRoleAssignments.privilegedRoleAssignment.makePermanent + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignments.privilegedRoleAssignment + summary: Update entity in privilegedRoleAssignments + operationId: privilegedRoleAssignments.privilegedRoleAssignment_UpdatePrivilegedRoleAssignment + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignments.privilegedRoleAssignment + summary: Delete privilegedRoleAssignment + description: Delete privilegedRoleAssignment. + operationId: privilegedRoleAssignments.privilegedRoleAssignment_DeletePrivilegedRoleAssignment + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/microsoft.graph.makeEligible': + post: + tags: + - privilegedRoleAssignments.Actions + summary: Invoke action makeEligible + operationId: privilegedRoleAssignments_makeEligible + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/microsoft.graph.makePermanent': + post: + tags: + - privilegedRoleAssignments.Actions + summary: Invoke action makePermanent + operationId: privilegedRoleAssignments_makePermanent + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + reason: + type: string + nullable: true + ticketNumber: + type: string + nullable: true + ticketSystem: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo': + get: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Get roleInfo from privilegedRoleAssignments + description: Read-only. Nullable. The associated role information. + operationId: privilegedRoleAssignments_GetRoleInfo + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - assignments + - settings + - summary type: string - description: Date and time when this object was deleted. Always null when the object hasn't been deleted. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.entitlementManagementSettings: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: entitlementManagementSettings - type: object - properties: - daysUntilExternalUserDeletedAfterBlocked: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'If externalUserLifecycleAction is BlockSignInAndDelete, the number of days after an external user is blocked from sign in before their account is deleted.' - format: int32 - nullable: true - externalUserLifecycleAction: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - assignments + - settings + - summary type: string - description: 'One of None, BlockSignIn, or BlockSignInAndDelete.' - nullable: true - additionalProperties: - type: object - microsoft.graph.termsOfUseContainer: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: termsOfUseContainer - type: object - properties: - agreementAcceptances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - description: Represents the current status of a user's response to a company's customizable terms of use agreement. - agreements: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreement' - description: Represents a tenant's customizable terms of use agreement that's created and managed with Azure Active Directory (Azure AD). - additionalProperties: - type: object - microsoft.graph.privilegedAccess: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedAccess - type: object - properties: - displayName: - type: string - description: The display name of the provider managed by PIM. - nullable: true - resources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - description: A collection of resources for the provider. - roleAssignmentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' - description: A collection of role assignment requests for the provider. - roleAssignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' - description: A collection of role assignments for the provider. - roleDefinitions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - description: A collection of role defintions for the provider. - roleSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - description: A collection of role settings for the provider. - additionalProperties: - type: object - microsoft.graph.governanceResource: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceResource - type: object - properties: - displayName: - type: string - description: The display name of the resource. - nullable: true - externalId: - type: string - description: 'The external id of the resource, representing its original id in the external system. For example, a subscription resource''s external id can be ''/subscriptions/c14ae696-5e0c-4e5d-88cc-bef6637737ac''.' - nullable: true - registeredDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Represents the date time when the resource is registered in PIM. - format: date-time - nullable: true - registeredRoot: - type: string - description: 'The externalId of the resource''s root scope that is registered in PIM. The root scope can be the parent, grandparent, or higher ancestor resources.' - nullable: true - status: - type: string - description: 'The status of a given resource. For example, it could represent whether the resource is locked or not (values: Active/Locked). Note: This property may be extended in the future to support more scenarios.' - nullable: true - type: - type: string - description: 'Required. Resource type. For example, for Azure resources, the type could be ''Subscription'', ''ResourceGroup'', ''Microsoft.Sql/server'', etc.' - nullable: true - parent: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - roleAssignmentRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' - description: The collection of role assignment requests for the resource. - roleAssignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' - description: The collection of role assignments for the resource. - roleDefinitions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - description: The collection of role defintions for the resource. - roleSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - description: The collection of role settings for the resource. - additionalProperties: - type: object - microsoft.graph.governanceRoleAssignmentRequest: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceRoleAssignmentRequest - type: object - properties: - assignmentState: - type: string - description: 'Required. The state of the assignment. The possible values are: Eligible (for eligible assignment), Active (if it is directly assigned), Active (by administrators, or activated on an eligible assignment by the users).' - linkedEligibleRoleAssignmentId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + links: + assignments: + operationId: privilegedRoleAssignments.RoleInfo.ListAssignments + parameters: + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + settings: + operationId: privilegedRoleAssignments.RoleInfo.GetSettings + parameters: + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + summary: + operationId: privilegedRoleAssignments.RoleInfo.GetSummary + parameters: + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + selfActivate: + operationId: privilegedRoleAssignments.privilegedRoleAssignment.roleInfo.selfActivate + selfDeactivate: + operationId: privilegedRoleAssignments.privilegedRoleAssignment.roleInfo.selfDeactivate + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Update the navigation property roleInfo in privilegedRoleAssignments + operationId: privilegedRoleAssignments_UpdateRoleInfo + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Delete navigation property roleInfo for privilegedRoleAssignments + operationId: privilegedRoleAssignments_DeleteRoleInfo + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments': + get: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Get assignments from privilegedRoleAssignments + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedRoleAssignments.roleInfo_ListAssignments + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - expirationDateTime + - expirationDateTime desc + - isElevated + - isElevated desc + - resultMessage + - resultMessage desc + - roleId + - roleId desc + - userId + - userId desc type: string - description: 'If this is a request for role activation, it represents the id of the eligible assignment being referred; Otherwise, the value is null.' - nullable: true - reason: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: A message provided by users and administrators when create the request about why it is needed. - nullable: true - requestedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: 'Read-only. The request create time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - resourceId: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/{privilegedRoleAssignment-id1}': + get: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Get assignments from privilegedRoleAssignments + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedRoleAssignments.roleInfo_GetAssignments + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: privilegedRoleAssignment-id1 + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: 'Required. The unique identifier of the Azure resource that is associated with the role assignment request. Azure resources can include subscriptions, resource groups, virtual machines, and SQL databases.' - nullable: true - roleDefinitionId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: Required. The identifier of the Azure role definition that the role assignment request is associated with. - nullable: true - schedule: - $ref: '#/components/schemas/microsoft.graph.governanceSchedule' - status: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequestStatus' - subjectId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + links: + roleInfo: + operationId: privilegedRoleAssignments.roleInfo.Assignments.GetRoleInfo + parameters: + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + privilegedRoleAssignment-id1: $request.path.privilegedRoleAssignment-id1 + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/microsoft.graph.selfActivate': + post: + tags: + - privilegedRoleAssignments.Actions + summary: Invoke action selfActivate + operationId: privilegedRoleAssignments.roleInfo_selfActivate + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + reason: + type: string + nullable: true + duration: + type: string + nullable: true + ticketNumber: + type: string + nullable: true + ticketSystem: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/microsoft.graph.selfDeactivate': + post: + tags: + - privilegedRoleAssignments.Actions + summary: Invoke action selfDeactivate + operationId: privilegedRoleAssignments.roleInfo_selfDeactivate + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings': + get: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Get settings from privilegedRoleAssignments + description: The settings for this role. Read-only. Nullable. + operationId: privilegedRoleAssignments.roleInfo_GetSettings + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - approvalOnElevation + - approverIds + - elevationDuration + - isMfaOnElevationConfigurable + - lastGlobalAdmin + - maxElavationDuration + - mfaOnElevation + - minElevationDuration + - notificationToUserOnElevation + - ticketingInfoOnElevation type: string - description: 'Required. The unique identifier of the principal or subject that the role assignment request is associated with. Principals can be users, groups, or service principals.' - nullable: true - type: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'Required. Representing the type of the operation on the role assignment. The possible values are: AdminAdd , UserAdd , AdminUpdate , AdminRemove , UserRemove , UserExtend , AdminExtend , UserRenew , AdminRenew.' - resource: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - roleDefinition: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - subject: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' - additionalProperties: - type: object - microsoft.graph.governanceSchedule: - title: governanceSchedule - type: object - properties: - duration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: The duration of a role assignment. It is in format of a TimeSpan. - format: duration - nullable: true - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The end time of the role assignment. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Note: if the value is null, it indicates a permanent assignment.' - format: date-time - nullable: true - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The start time of the role assignment. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - type: - type: string - description: The role assignment schedule type. Only Once is supported for now. - nullable: true - additionalProperties: - type: object - microsoft.graph.governanceRoleDefinition: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceRoleDefinition - type: object - properties: - displayName: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Update the navigation property settings in privilegedRoleAssignments + operationId: privilegedRoleAssignments.roleInfo_UpdateSettings + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Delete navigation property settings for privilegedRoleAssignments + operationId: privilegedRoleAssignments.roleInfo_DeleteSettings + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary': + get: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Get summary from privilegedRoleAssignments + description: The summary information for this role. Read-only. Nullable. + operationId: privilegedRoleAssignments.roleInfo_GetSummary + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - elevatedCount + - managedCount + - mfaEnabled + - status + - usersCount type: string - description: The display name of the role definition. - nullable: true - externalId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: The external id of the role definition. - nullable: true - resourceId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Update the navigation property summary in privilegedRoleAssignments + operationId: privilegedRoleAssignments.roleInfo_UpdateSummary + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoleAssignments.privilegedRole + summary: Delete navigation property summary for privilegedRoleAssignments + operationId: privilegedRoleAssignments.roleInfo_DeleteSummary + parameters: + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /privilegedRoleAssignments/microsoft.graph.my(): + get: + tags: + - privilegedRoleAssignments.Functions + summary: Invoke function my + operationId: privilegedRoleAssignments_my + responses: + '200': + description: Success + content: + application/json: + schema: + title: Collection of privilegedRoleAssignment + type: object + properties: + value: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + additionalProperties: + type: object + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: function + /privilegedRoles: + get: + tags: + - privilegedRoles.privilegedRole + summary: List privilegedRoles + description: 'Retrieve a list of privilegedRole objects. To filter the results from the query, use the standard OData ``$filter`` expressions in the URIs.' + operationId: privilegedRoles.privilegedRole_ListPrivilegedRole + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - name + - name desc type: string - description: Required. The id of the resource associated with the role definition. - nullable: true - templateId: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - assignments + - settings + - summary type: string - nullable: true - resource: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - roleSetting: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - additionalProperties: - type: object - microsoft.graph.governanceRoleSetting: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceRoleSetting - type: object - properties: - adminEligibleSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' - description: The rule settings that are evaluated when an administrator tries to add an eligible role assignment. - adminMemberSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' - description: The rule settings that are evaluated when an administrator tries to add a direct member role assignment. - isDefault: - type: boolean - description: Read-only. Indicate if the roleSetting is a default roleSetting - nullable: true - lastUpdatedBy: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - assignments + - settings + - summary type: string - description: Read-only. The display name of the administrator who last updated the roleSetting. - nullable: true - lastUpdatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - privilegedRoles.privilegedRole + summary: Add new entity to privilegedRoles + operationId: privilegedRoles.privilegedRole_CreatePrivilegedRole + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoles/{privilegedRole-id}': + get: + tags: + - privilegedRoles.privilegedRole + summary: Get privilegedRole + description: 'Retrieve the properties and relationships of privilegedRole object. ' + operationId: privilegedRoles.privilegedRole_GetPrivilegedRole + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - name + - assignments + - settings + - summary type: string - description: 'Read-only. The time when the role setting was last updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - resourceId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - assignments + - settings + - summary type: string - description: Required. The id of the resource that the role setting is associated with. - nullable: true - roleDefinitionId: + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + links: + assignments: + operationId: privilegedRoles.ListAssignments + parameters: + privilegedRole-id: $request.path.privilegedRole-id + settings: + operationId: privilegedRoles.GetSettings + parameters: + privilegedRole-id: $request.path.privilegedRole-id + summary: + operationId: privilegedRoles.GetSummary + parameters: + privilegedRole-id: $request.path.privilegedRole-id + selfActivate: + operationId: privilegedRoles.privilegedRole.selfActivate + selfDeactivate: + operationId: privilegedRoles.privilegedRole.selfDeactivate + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoles.privilegedRole + summary: Update entity in privilegedRoles + operationId: privilegedRoles.privilegedRole_UpdatePrivilegedRole + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoles.privilegedRole + summary: Delete entity from privilegedRoles + operationId: privilegedRoles.privilegedRole_DeletePrivilegedRole + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoles/{privilegedRole-id}/assignments': + get: + tags: + - privilegedRoles.privilegedRoleAssignment + summary: Get assignments from privilegedRoles + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedRoles_ListAssignments + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - expirationDateTime + - expirationDateTime desc + - isElevated + - isElevated desc + - resultMessage + - resultMessage desc + - roleId + - roleId desc + - userId + - userId desc type: string - description: Required. The id of the role definition that the role setting is associated with. - nullable: true - userEligibleSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' - description: The rule settings that are evaluated when a user tries to add an eligible role assignment. The setting is not supported for now. - userMemberSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' - description: The rule settings that are evaluated when a user tries to activate his role assignment. - resource: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - roleDefinition: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - additionalProperties: - type: object - microsoft.graph.governanceSubject: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceSubject - type: object - properties: - displayName: - type: string - description: The display name of the subject. - nullable: true - email: - type: string - description: 'The email address of the user subject. If the subject is in other types, it is empty.' - nullable: true - principalName: - type: string - description: 'The principal name of the user subject. If the subject is in other types, it is empty.' - nullable: true - type: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: 'The type of the subject. The value can be User, Group, and ServicePrincipal.' - nullable: true - additionalProperties: - type: object - microsoft.graph.governanceRoleAssignment: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: governanceRoleAssignment - type: object - properties: - assignmentState: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: 'The state of the assignment. The value can be Eligible for eligible assignment or Active if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.' - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + $ref: '#/components/responses/microsoft.graph.privilegedRoleAssignmentCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + '/privilegedRoles/{privilegedRole-id}/assignments/{privilegedRoleAssignment-id}': + get: + tags: + - privilegedRoles.privilegedRoleAssignment + summary: Get assignments from privilegedRoles + description: The assignments for this role. Read-only. Nullable. + operationId: privilegedRoles_GetAssignments + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: privilegedRoleAssignment-id + in: path + description: 'key: id of privilegedRoleAssignment' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRoleAssignment + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - expirationDateTime + - isElevated + - resultMessage + - roleId + - userId + - roleInfo type: string - description: 'For a non-permanent role assignment, this is the time when the role assignment will be expired. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - externalId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - roleInfo type: string - description: The external ID the resource that is used to identify the role assignment in the provider. - nullable: true - linkedEligibleRoleAssignmentId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + links: + roleInfo: + operationId: privilegedRoles.Assignments.GetRoleInfo + parameters: + privilegedRole-id: $request.path.privilegedRole-id + privilegedRoleAssignment-id: $request.path.privilegedRoleAssignment-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoles/{privilegedRole-id}/microsoft.graph.selfActivate': + post: + tags: + - privilegedRoles.Actions + summary: Invoke action selfActivate + operationId: privilegedRoles_selfActivate + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + requestBody: + description: Action parameters + content: + application/json: + schema: + type: object + properties: + reason: + type: string + nullable: true + duration: + type: string + nullable: true + ticketNumber: + type: string + nullable: true + ticketSystem: + type: string + nullable: true + additionalProperties: + type: object + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoles/{privilegedRole-id}/microsoft.graph.selfDeactivate': + post: + tags: + - privilegedRoles.Actions + summary: Invoke action selfDeactivate + operationId: privilegedRoles_selfDeactivate + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: action + '/privilegedRoles/{privilegedRole-id}/settings': + get: + tags: + - privilegedRoles.privilegedRoleSettings + summary: Get settings from privilegedRoles + description: The settings for this role. Read-only. Nullable. + operationId: privilegedRoles_GetSettings + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - approvalOnElevation + - approverIds + - elevationDuration + - isMfaOnElevationConfigurable + - lastGlobalAdmin + - maxElavationDuration + - mfaOnElevation + - minElevationDuration + - notificationToUserOnElevation + - ticketingInfoOnElevation type: string - description: 'If this is an active assignment and created due to activation on an eligible assignment, it represents the ID of that eligible assignment; Otherwise, the value is null.' - nullable: true - memberType: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: 'The type of member. The value can be: Inherited (if the role assignment is inherited from a parent resource scope), Group (if the role assignment is not inherited, but comes from the membership of a group assignment), or User (if the role assignment is neither inherited nor from a group assignment).' - resourceId: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoles.privilegedRoleSettings + summary: Update the navigation property settings in privilegedRoles + operationId: privilegedRoles_UpdateSettings + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoles.privilegedRoleSettings + summary: Delete navigation property settings for privilegedRoles + operationId: privilegedRoles_DeleteSettings + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/privilegedRoles/{privilegedRole-id}/summary': + get: + tags: + - privilegedRoles.privilegedRoleSummary + summary: Get summary from privilegedRoles + description: The summary information for this role. Read-only. Nullable. + operationId: privilegedRoles_GetSummary + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - elevatedCount + - managedCount + - mfaEnabled + - status + - usersCount type: string - description: Required. The ID of the resource which the role assignment is associated with. - nullable: true - roleDefinitionId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: Required. The ID of the role definition which the role assignment is associated with. - nullable: true - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - privilegedRoles.privilegedRoleSummary + summary: Update the navigation property summary in privilegedRoles + operationId: privilegedRoles_UpdateSummary + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - privilegedRoles.privilegedRoleSummary + summary: Delete navigation property summary for privilegedRoles + operationId: privilegedRoles_DeleteSummary + parameters: + - name: privilegedRole-id + in: path + description: 'key: id of privilegedRole' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: privilegedRole + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /programControls: + get: + tags: + - programControls.programControl + summary: List programControls (deprecated) + description: 'In the Azure AD access reviews feature, list all the programControl objects, across all programs in the tenant.' + operationId: programControls.programControl_ListProgramControl + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - controlId + - controlId desc + - controlTypeId + - controlTypeId desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - owner + - owner desc + - programId + - programId desc + - resource + - resource desc + - status + - status desc type: string - description: 'The start time of the role assignment. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - status: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlId + - controlTypeId + - createdDateTime + - displayName + - owner + - programId + - resource + - status + - program type: string - subjectId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - program type: string - description: Required. The ID of the subject which the role assignment is associated with. - nullable: true - linkedEligibleRoleAssignment: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' - resource: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - roleDefinition: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - subject: - $ref: '#/components/schemas/microsoft.graph.governanceSubject' - additionalProperties: - type: object - microsoft.graph.privilegedApproval: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedApproval - type: object - properties: - approvalDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - format: duration - nullable: true - approvalState: - $ref: '#/components/schemas/microsoft.graph.approvalState' - approvalType: - type: string - nullable: true - approverReason: - type: string - nullable: true - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - requestorReason: - type: string - nullable: true - roleId: - type: string - nullable: true - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - nullable: true - userId: - type: string - nullable: true - request: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' - roleInfo: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' - additionalProperties: - type: object - microsoft.graph.privilegedRoleAssignmentRequest: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedRoleAssignmentRequest - type: object - properties: - assignmentState: - type: string - description: 'The state of the assignment. The value can be Eligible for eligible assignment Active - if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.' - nullable: true - duration: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.programControlCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - programControls.programControl + summary: Create programControl (deprecated) + description: 'In the Azure AD access reviews feature, create a new programControl object. This links an access review to a program. Prior to making this request, the caller must have previously' + operationId: programControls.programControl_CreateProgramControl + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programControls/{programControl-id}': + get: + tags: + - programControls.programControl + summary: Get entity from programControls by key + operationId: programControls.programControl_GetProgramControl + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlId + - controlTypeId + - createdDateTime + - displayName + - owner + - programId + - resource + - status + - program type: string - description: The duration of a role assignment. - nullable: true - reason: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - program type: string - description: The reason for the role assignment. - nullable: true - requestedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + links: + program: + operationId: programControls.GetProgram + parameters: + programControl-id: $request.path.programControl-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programControls.programControl + summary: Update entity in programControls + operationId: programControls.programControl_UpdateProgramControl + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programControls.programControl + summary: Delete programControl (deprecated) + description: 'In the Azure AD access reviews feature, delete a programControl object. This unlinks an access review from a program.' + operationId: programControls.programControl_DeleteProgramControl + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programControls/{programControl-id}/program': + get: + tags: + - programControls.program + summary: Get program from programControls + description: The program this control is part of. + operationId: programControls_GetProgram + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - description + - displayName + - controls type: string - description: 'Read-only. The request create time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' - format: date-time - nullable: true - roleId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - controls type: string - description: The id of the role. - nullable: true - schedule: - $ref: '#/components/schemas/microsoft.graph.governanceSchedule' - status: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + links: + controls: + operationId: programControls.Program.ListControls + parameters: + programControl-id: $request.path.programControl-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programControls.program + summary: Update the navigation property program in programControls + operationId: programControls_UpdateProgram + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programControls.program + summary: Delete navigation property program for programControls + operationId: programControls_DeleteProgram + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programControls/{programControl-id}/program/controls': + get: + tags: + - programControls.program + summary: Get controls from programControls + description: Controls associated with the program. + operationId: programControls.program_ListControls + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - controlId + - controlId desc + - controlTypeId + - controlTypeId desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - owner + - owner desc + - programId + - programId desc + - resource + - resource desc + - status + - status desc type: string - description: 'Read-only.The status of the role assignment request. The value can be NotStarted,Completed,RequestedApproval,Scheduled,Approved,ApprovalDenied,ApprovalAborted,Cancelling,Cancelled,Revoked,RequestExpired.' - nullable: true - ticketNumber: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlId + - controlTypeId + - createdDateTime + - displayName + - owner + - programId + - resource + - status + - program type: string - description: The ticketNumber for the role assignment. - nullable: true - ticketSystem: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - program type: string - description: The ticketSystem for the role assignment. - nullable: true - type: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.programControlCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - programControls.program + summary: Create new navigation property to controls for programControls + operationId: programControls.program_CreateControls + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programControls/{programControl-id}/program/controls/{programControl-id1}': + get: + tags: + - programControls.program + summary: Get controls from programControls + description: Controls associated with the program. + operationId: programControls.program_GetControls + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: programControl-id1 + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlId + - controlTypeId + - createdDateTime + - displayName + - owner + - programId + - resource + - status + - program type: string - description: 'Representing the type of the operation on the role assignment. The value can be AdminAdd: Administrators add users to roles;UserAdd: Users add role assignments.' - nullable: true - userId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - program type: string - description: The id of the user. - nullable: true - roleInfo: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' - additionalProperties: - type: object - microsoft.graph.privilegedRole: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedRole - type: object - properties: - name: - type: string - description: Role name. - nullable: true - assignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - description: The assignments for this role. Read-only. Nullable. - settings: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' - summary: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' - additionalProperties: - type: object - microsoft.graph.privilegedRoleAssignment: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedRoleAssignment - type: object - properties: - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The UTC DateTime when the temporary privileged role assignment will be expired. For permanent role assignment, the value is null.' - format: date-time - nullable: true - isElevated: - type: boolean - description: true if the role assignment is activated. false if the role assignment is deactivated. - nullable: true - resultMessage: - type: string - description: Result message set by the service. - nullable: true - roleId: - type: string - description: Role identifier. In GUID string format. - userId: - type: string - description: User identifier. In GUID string format. - roleInfo: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' - additionalProperties: - type: object - microsoft.graph.privilegedRoleSettings: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedRoleSettings - type: object - properties: - approvalOnElevation: - type: boolean - description: true if the approval is required when activate the role. false if the approval is not required when activate the role. - nullable: true - approverIds: - type: array - items: - type: string - nullable: true - description: 'List of Approval ids, if approval is required for activation.' - elevationDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: The duration when the role is activated. - format: duration - nullable: true - isMfaOnElevationConfigurable: - type: boolean - description: true if mfaOnElevation is configurable. false if mfaOnElevation is not configurable. - nullable: true - lastGlobalAdmin: - type: boolean - description: Internal used only. - nullable: true - maxElavationDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: Maximal duration for the activated role. - format: duration - nullable: true - mfaOnElevation: - type: boolean - description: true if MFA is required to activate the role. false if MFA is not required to activate the role. - nullable: true - minElevationDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: Minimal duration for the activated role. - format: duration - nullable: true - notificationToUserOnElevation: - type: boolean - description: true if send notification to the end user when the role is activated. false if do not send notification when the role is activated. - nullable: true - ticketingInfoOnElevation: - type: boolean - description: true if the ticketing information is required when activate the role. false if the ticketing information is not required when activate the role. - nullable: true - additionalProperties: - type: object - microsoft.graph.privilegedRoleSummary: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedRoleSummary - type: object - properties: - elevatedCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of users that have the role assigned and the role is activated. - format: int32 - nullable: true - managedCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of users that have the role assigned but the role is deactivated. - format: int32 - nullable: true - mfaEnabled: - type: boolean - description: true if the role activation requires MFA. false if the role activation doesn't require MFA. - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.roleSummaryStatus' - usersCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of users that are assigned with the role. - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.privilegedOperationEvent: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: privilegedOperationEvent - type: object - properties: - additionalInformation: - type: string - description: Detailed human readable information for the event. - nullable: true - creationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Indicates the time when the event is created. - format: date-time - nullable: true - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'This is only used when the requestType is Activate, and it indicates the expiration time for the role activation.' - format: date-time - nullable: true - referenceKey: - type: string - description: Incident/Request ticket number during role activation. The value is presented only if the ticket number is provided during role activation. - nullable: true - referenceSystem: + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + links: + program: + operationId: programControls.program.Controls.GetProgram + parameters: + programControl-id: $request.path.programControl-id + programControl-id1: $request.path.programControl-id1 + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programControls.program + summary: Update the navigation property controls in programControls + operationId: programControls.program_UpdateControls + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: programControl-id1 + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programControls.program + summary: Delete navigation property controls for programControls + operationId: programControls.program_DeleteControls + parameters: + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: programControl-id1 + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /programControlTypes: + get: + tags: + - programControlTypes.programControlType + summary: List programControlTypes (deprecated) + description: 'In the Azure AD access reviews feature, list all the programControlType objects.' + operationId: programControlTypes.programControlType_ListProgramControlType + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - controlTypeGroupId + - controlTypeGroupId desc + - displayName + - displayName desc type: string - description: Incident/Request ticketing system provided during tole activation. The value is presented only if the ticket system is provided during role activation. - nullable: true - requestorId: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlTypeGroupId + - displayName type: string - description: The user id of the requestor who initiates the operation. - nullable: true - requestorName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: The user name of the requestor who initiates the operation. - nullable: true - requestType: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.programControlTypeCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - programControlTypes.programControlType + summary: Add new entity to programControlTypes + operationId: programControlTypes.programControlType_CreateProgramControlType + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControlType' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControlType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programControlTypes/{programControlType-id}': + get: + tags: + - programControlTypes.programControlType + summary: Get entity from programControlTypes by key + operationId: programControlTypes.programControlType_GetProgramControlType + parameters: + - name: programControlType-id + in: path + description: 'key: id of programControlType' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControlType + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlTypeGroupId + - displayName type: string - description: 'The request operation type. The requestType value can be: Assign (role assignment), Activate (role activation), Unassign (remove role assignment), Deactivate (role deactivation), ScanAlertsNow (scan security alerts), DismissAlert (dismiss security alert), FixAlertItem (fix a security alert issue), AccessReview_Review (review an Access Review), AccessReview_Create (create an Access Review) , AccessReview_Update (update an Access Review), AccessReview_Delete (delete an Access Review).' - nullable: true - roleId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' type: string - description: The id of the role that is associated with the operation. - nullable: true - roleName: + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControlType' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programControlTypes.programControlType + summary: Update entity in programControlTypes + operationId: programControlTypes.programControlType_UpdateProgramControlType + parameters: + - name: programControlType-id + in: path + description: 'key: id of programControlType' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControlType + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControlType' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programControlTypes.programControlType + summary: Delete entity from programControlTypes + operationId: programControlTypes.programControlType_DeleteProgramControlType + parameters: + - name: programControlType-id + in: path + description: 'key: id of programControlType' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControlType + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + /programs: + get: + tags: + - programs.program + summary: List programs (deprecated) + description: 'In the Azure AD access reviews feature, list all the program objects.' + operationId: programs.program_ListProgram + parameters: + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - description + - description desc + - displayName + - displayName desc type: string - description: The name of the role. - nullable: true - tenantId: + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - description + - displayName + - controls type: string - description: The tenant (organization) id. - nullable: true - userId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - controls type: string - description: The id of the user that is associated with the operation. - nullable: true - userMail: - type: string - description: The user's email. - nullable: true - userName: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.programCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - programs.program + summary: Create program (deprecated) + description: 'In the Azure AD access reviews feature, create a new program object.' + operationId: programs.program_CreateProgram + requestBody: + description: New entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + required: true + responses: + '201': + description: Created entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programs/{program-id}': + get: + tags: + - programs.program + summary: Get entity from programs by key + operationId: programs.program_GetProgram + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - description + - displayName + - controls type: string - description: The user's display name. - nullable: true - additionalProperties: - type: object - microsoft.graph.programControl: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: programControl - type: object - properties: - controlId: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - controls type: string - description: 'The controlId of the control, in particular the identifier of an access review. Required on create.' - controlTypeId: + responses: + '200': + description: Retrieved entity + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + links: + controls: + operationId: programs.ListControls + parameters: + program-id: $request.path.program-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programs.program + summary: Update program (deprecated) + description: 'In the Azure AD access reviews feature, update an existing program object.' + operationId: programs.program_UpdateProgram + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + requestBody: + description: New property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programs.program + summary: Delete program (deprecated) + description: 'In the Azure AD access reviews feature, delete a program object. Do not delete a program which still has `programControl` linked to it, those access reviews should first be deleted or unlinked from the program and linked to a different program. Also, please note that the built-in default program cannot be deleted.' + operationId: programs.program_DeleteProgram + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programs/{program-id}/controls': + get: + tags: + - programs.programControl + summary: Get controls from programs + description: Controls associated with the program. + operationId: programs_ListControls + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - controlId + - controlId desc + - controlTypeId + - controlTypeId desc + - createdDateTime + - createdDateTime desc + - displayName + - displayName desc + - owner + - owner desc + - programId + - programId desc + - resource + - resource desc + - status + - status desc type: string - description: 'The programControlType identifies the type of program control - for example, a control linking to guest access reviews. Required on create.' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlId + - controlTypeId + - createdDateTime + - displayName + - owner + - programId + - resource + - status + - program type: string - description: The creation date and time of the program control. - format: date-time - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - program type: string - description: The name of the control. - nullable: true - owner: - $ref: '#/components/schemas/microsoft.graph.userIdentity' - programId: + responses: + '200': + $ref: '#/components/responses/microsoft.graph.programControlCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + post: + tags: + - programs.programControl + summary: Create new navigation property to controls for programs + operationId: programs_CreateControls + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + requestBody: + description: New navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + required: true + responses: + '201': + description: Created navigation property. + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programs/{program-id}/controls/{programControl-id}': + get: + tags: + - programs.programControl + summary: Get controls from programs + description: Controls associated with the program. + operationId: programs_GetControls + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - controlId + - controlTypeId + - createdDateTime + - displayName + - owner + - programId + - resource + - status + - program type: string - description: The programId of the program this control is a part of. Required on create. - resource: - $ref: '#/components/schemas/microsoft.graph.programResource' - status: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - program type: string - description: The life cycle status of the control. - nullable: true + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + links: program: - $ref: '#/components/schemas/microsoft.graph.program' - additionalProperties: - type: object - microsoft.graph.program: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: program - type: object - properties: - description: + operationId: programs.Controls.GetProgram + parameters: + program-id: $request.path.program-id + programControl-id: $request.path.programControl-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programs.programControl + summary: Update the navigation property controls in programs + operationId: programs_UpdateControls + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.programControl' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programs.programControl + summary: Delete navigation property controls for programs + operationId: programs_DeleteControls + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/programs/{program-id}/controls/{programControl-id}/program': + get: + tags: + - programs.programControl + summary: Get program from programs + description: The program this control is part of. + operationId: programs.controls_GetProgram + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - description + - displayName + - controls type: string - description: The description of the program. - displayName: + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + - controls type: string - description: The name of the program. Required on create. + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + links: controls: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.programControl' - description: Controls associated with the program. - additionalProperties: - type: object - microsoft.graph.programControlType: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: programControlType - type: object - properties: - controlTypeGroupId: - type: string - nullable: true - displayName: - type: string - description: The name of the program control type - nullable: true - additionalProperties: - type: object - microsoft.graph.entity: - title: entity - type: object - properties: - id: - type: string - additionalProperties: - type: object - microsoft.graph.userIdentity: + operationId: programs.controls.Program.ListControls + parameters: + program-id: $request.path.program-id + programControl-id: $request.path.programControl-id + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + patch: + tags: + - programs.programControl + summary: Update the navigation property program in programs + operationId: programs.controls_UpdateProgram + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + requestBody: + description: New navigation property values + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.program' + required: true + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + delete: + tags: + - programs.programControl + summary: Delete navigation property program for programs + operationId: programs.controls_DeleteProgram + parameters: + - name: program-id + in: path + description: 'key: id of program' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: program + - name: programControl-id + in: path + description: 'key: id of programControl' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: programControl + - name: If-Match + in: header + description: ETag + style: simple + schema: + type: string + responses: + '204': + description: Success + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation + '/users/{user-id}/agreementAcceptances': + get: + tags: + - users.agreementAcceptance + summary: Get agreementAcceptances from users + description: The user's terms of use acceptance statuses. Read-only. Nullable. + operationId: users_ListAgreementAcceptances + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: user + - $ref: '#/components/parameters/top' + - $ref: '#/components/parameters/skip' + - $ref: '#/components/parameters/search' + - $ref: '#/components/parameters/filter' + - $ref: '#/components/parameters/count' + - name: $orderby + in: query + description: Order items by property values + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - id desc + - agreementFileId + - agreementFileId desc + - agreementId + - agreementId desc + - deviceDisplayName + - deviceDisplayName desc + - deviceId + - deviceId desc + - deviceOSType + - deviceOSType desc + - deviceOSVersion + - deviceOSVersion desc + - expirationDateTime + - expirationDateTime desc + - recordedDateTime + - recordedDateTime desc + - state + - state desc + - userDisplayName + - userDisplayName desc + - userEmail + - userEmail desc + - userId + - userId desc + - userPrincipalName + - userPrincipalName desc + type: string + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - agreementFileId + - agreementId + - deviceDisplayName + - deviceId + - deviceOSType + - deviceOSVersion + - expirationDateTime + - recordedDateTime + - state + - userDisplayName + - userEmail + - userId + - userPrincipalName + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + $ref: '#/components/responses/microsoft.graph.agreementAcceptanceCollectionResponse' + default: + $ref: '#/components/responses/error' + x-ms-pageable: + nextLinkName: '@odata.nextLink' + operationName: listMore + x-ms-docs-operation-type: operation + '/users/{user-id}/agreementAcceptances/{agreementAcceptance-id}': + get: + tags: + - users.agreementAcceptance + summary: Get agreementAcceptances from users + description: The user's terms of use acceptance statuses. Read-only. Nullable. + operationId: users_GetAgreementAcceptances + parameters: + - name: user-id + in: path + description: 'key: id of user' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: user + - name: agreementAcceptance-id + in: path + description: 'key: id of agreementAcceptance' + required: true + style: simple + schema: + type: string + x-ms-docs-key-type: agreementAcceptance + - name: $select + in: query + description: Select properties to be returned + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - id + - agreementFileId + - agreementId + - deviceDisplayName + - deviceId + - deviceOSType + - deviceOSVersion + - expirationDateTime + - recordedDateTime + - state + - userDisplayName + - userEmail + - userId + - userPrincipalName + type: string + - name: $expand + in: query + description: Expand related entities + style: form + explode: false + schema: + uniqueItems: true + type: array + items: + enum: + - '*' + type: string + responses: + '200': + description: Retrieved navigation property + content: + application/json: + schema: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + default: + $ref: '#/components/responses/error' + x-ms-docs-operation-type: operation +components: + schemas: + microsoft.graph.accessReview: allOf: - - $ref: '#/components/schemas/microsoft.graph.identity' - - title: userIdentity + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReview type: object properties: - ipAddress: + businessFlowTemplateId: type: string - description: Indicates the client IP address used by user performing the activity (audit log only). + description: The business flow template identifier. Required on create. This value is case sensitive. + createdBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + description: + type: string + description: 'The description provided by the access review creator, to show to the reviewers.' nullable: true - userPrincipalName: + displayName: type: string - description: The userPrincipalName attribute of the user. + description: The access review name. Required on create. + endDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The DateTime when the review is scheduled to end. This must be at least one day later than the start date. Required on create. + format: date-time + reviewedEntity: + $ref: '#/components/schemas/microsoft.graph.identity' + reviewerType: + type: string + description: 'The relationship type of reviewer to the target object, one of self, delegated or entityOwners. Required on create.' + nullable: true + settings: + $ref: '#/components/schemas/microsoft.graph.accessReviewSettings' + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The DateTime when the review is scheduled to be start. This could be a date in the future. Required on create. + format: date-time + status: + type: string + description: 'This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting,InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.' nullable: true + decisions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' + description: The collection of decisions for this access review. + instances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReview' + description: 'The collection of access reviews instances past, present and future, if this object is a recurring access review.' + myDecisions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' + description: 'The collection of decisions for the caller, if the caller is a reviewer.' + reviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' + description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' additionalProperties: type: object - microsoft.graph.identity: - title: identity - type: object - properties: - displayName: - type: string - description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.' - nullable: true - id: - type: string - description: Unique identifier for the identity. - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewSettings: - title: accessReviewSettings - type: object - properties: - accessRecommendationsEnabled: - type: boolean - description: Indicates whether showing recommendations to reviewers is enabled. - activityDurationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of days of user activities to show to reviewers. - format: int32 - autoApplyReviewResultsEnabled: - type: boolean - description: 'Indicates whether the auto-apply capability, to automatically change the target object access resource, is enabled. If not enabled, a user must, after the review completes, apply the access review.' - autoReviewEnabled: - type: boolean - description: 'Indicates whether a decision should be set if the reviewer did not supply one. For use when auto-apply is enabled. If you don''t want to have a review decision recorded unless the reviewer makes an explicit choice, set it to false.' - autoReviewSettings: - $ref: '#/components/schemas/microsoft.graph.autoReviewSettings' - justificationRequiredOnApproval: - type: boolean - description: Indicates whether reviewers are required to provide a justification when reviewing access. - mailNotificationsEnabled: - type: boolean - description: Indicates whether sending mails to reviewers and the review creator is enabled. - recurrenceSettings: - $ref: '#/components/schemas/microsoft.graph.accessReviewRecurrenceSettings' - remindersEnabled: - type: boolean - description: Indicates whether sending reminder emails to reviewers is enabled. - additionalProperties: - type: object - microsoft.graph.termsExpiration: - title: termsExpiration - type: object - properties: - frequency: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: 'Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month.' - format: duration - nullable: true - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.agreementAcceptanceState: - title: agreementAcceptanceState - enum: - - accepted - - declined - - unknownFutureValue - type: string - microsoft.graph.agreementFileProperties: + microsoft.graph.accessReviewDecision: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: agreementFileProperties + - title: accessReviewDecision type: object properties: - createdDateTime: + accessRecommendation: + type: string + description: 'The feature- generated recommendation shown to the reviewer, one of Approve, Deny or NotAvailable.' + nullable: true + accessReviewId: + type: string + description: The feature-generated id of the access review. + nullable: true + appliedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + appliedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date time representing when the file was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + description: The date and time when the review decision was applied. format: date-time nullable: true - displayName: + applyResult: type: string - description: Localized display name of the policy file of an agreement. The localized display name is shown to end users who view the agreement. + description: 'The outcome of applying the decision, one of NotApplied, Success, Failed, NotFound or NotSupported.' nullable: true - fileData: - $ref: '#/components/schemas/microsoft.graph.agreementFileData' - fileName: + justification: type: string - description: 'Name of the agreement file (for example, TOU.pdf). Read-only.' - nullable: true - isDefault: - type: boolean - description: 'If none of the languages matches the client preference, indicates whether this is the default agreement file . If none of the files are marked as default, the first one is treated as the default. Read-only.' + description: 'The reviewer''s business justification, if supplied.' nullable: true - isMajorVersion: - type: boolean - description: Indicates whether the agreement file is a major version update. Major version updates invalidate the agreement's acceptances on the corresponding language. + reviewedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + reviewedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time nullable: true - language: + reviewResult: type: string - description: 'The language of the agreement file in the format ''languagecode2-country/regioncode2''. ''languagecode2'' is a lowercase two-letter code derived from ISO 639-1, while ''country/regioncode2'' is derived from ISO 3166 and usually consists of two uppercase letters, or a BCP-47 language tag. For example, U.S. English is en-US. Read-only.' + description: 'The result of the review, one of NotReviewed, Deny, DontKnow or Approve.' nullable: true additionalProperties: type: object - microsoft.graph.decisionItemPrincipalResourceMembership: - title: decisionItemPrincipalResourceMembership - type: object - properties: - membershipType: - $ref: '#/components/schemas/microsoft.graph.decisionItemPrincipalResourceMembershipType' - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceDecisionItemResource: - title: accessReviewInstanceDecisionItemResource - type: object - properties: - displayName: - type: string - description: Display name of the resource - nullable: true - id: - type: string - description: Resource ID - nullable: true - type: - type: string - description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.' - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceDecisionItemTarget: - title: accessReviewInstanceDecisionItemTarget - type: object - additionalProperties: - type: object - microsoft.graph.accessReviewError: + microsoft.graph.accessReviewReviewer: allOf: - - $ref: '#/components/schemas/microsoft.graph.genericError' - - title: accessReviewError + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewReviewer type: object + properties: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The date when the reviewer was added for the access review. + format: date-time + nullable: true + displayName: + type: string + description: Name of reviewer. + nullable: true + userPrincipalName: + type: string + description: User principal name of the user. + nullable: true additionalProperties: type: object - microsoft.graph.accessReviewReviewerScope: + microsoft.graph.agreement: allOf: - - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' - - title: accessReviewReviewerScope + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: agreement type: object properties: - query: + displayName: type: string - description: The query specifying who will be the reviewer. See table for examples. + description: Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement. Supports $filter (eq). nullable: true - queryRoot: - type: string - description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query, for example, ./manager, is specified. Possible value: decisions.' + isPerDeviceAcceptanceRequired: + type: boolean + description: 'This setting enables you to require end users to accept this agreement on every device that they are accessing it from. The end user will be required to register their device in Azure AD, if they haven''t already done so. Supports $filter (eq).' nullable: true - queryType: + isViewingBeforeAcceptanceRequired: + type: boolean + description: Indicates whether the user has to expand the agreement before accepting. Supports $filter (eq). + nullable: true + termsExpiration: + $ref: '#/components/schemas/microsoft.graph.termsExpiration' + userReacceptRequiredFrequency: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The type of query. Examples include MicrosoftGraph and ARM. + description: The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations. + format: duration nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewScope: - title: accessReviewScope - type: object - additionalProperties: - type: object - microsoft.graph.accessReviewNotificationRecipientItem: - title: accessReviewNotificationRecipientItem - type: object - properties: - notificationRecipientScope: - $ref: '#/components/schemas/microsoft.graph.accessReviewNotificationRecipientScope' - notificationTemplateType: - type: string - description: Indicates the type of access review email to be sent. Supported template type is CompletedAdditionalRecipients which sends review completion notifications to the recipients. - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewScheduleSettings: - title: accessReviewScheduleSettings - type: object - properties: - applyActions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewApplyAction' - description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction.' - autoApplyDecisionsEnabled: - type: boolean - description: 'Indicates whether decisions are automatically applied. When set to false, an admin must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' - decisionHistoriesForReviewersEnabled: - type: boolean - description: 'Indicates whether decisions on previous access review stages are available for reviewers on an accessReviewInstance with multiple subsequent stages. If not provided, the default is disabled (false).' - nullable: true - defaultDecision: - type: string - description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' - nullable: true - defaultDecisionEnabled: - type: boolean - description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. - instanceDurationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Duration of each recurrence of review (accessReviewInstance) in number of days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its durationInDays setting will be used instead of the value of this property.' - format: int32 - justificationRequiredOnApproval: - type: boolean - description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. - mailNotificationsEnabled: - type: boolean - description: Indicates whether emails are enabled or disabled. Default value is false. - recommendationInsightSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewRecommendationInsightSetting' - description: 'Optional. Describes the types of insights that aid reviewers to make access review decisions. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationInsightSettings setting will be used instead of the value of this property.' - recommendationLookBackDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: 'Optional field. Indicates the period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look-back duration. For reviews of groups and Azure AD roles, any duration is accepted. For reviews of applications, 30 days is the maximum duration. If not specified, the duration is 30 days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationLookBackDuration setting will be used instead of the value of this property.' - format: duration - nullable: true - recommendationsEnabled: - type: boolean - description: 'Indicates whether decision recommendations are enabled or disabled. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationsEnabled setting will be used instead of the value of this property.' - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - reminderNotificationsEnabled: - type: boolean - description: Indicates whether reminders are enabled or disabled. Default value is false. - additionalProperties: - type: object - microsoft.graph.accessReviewStageSettings: - title: accessReviewStageSettings - type: object - properties: - decisionsThatWillMoveToNextStage: - type: array - items: - type: string - nullable: true - description: 'Indicate which decisions will go to the next stage. Can be a sub-set of Approve, Deny, Recommendation, or NotReviewed. If not provided, all decisions will go to the next stage. Optional.' - dependsOn: - type: array - items: - type: string - description: 'Defines the sequential or parallel order of the stages and depends on the stageId. Only sequential stages are currently supported. For example, if stageId is 2, then dependsOn must be 1. If stageId is 1, do not specify dependsOn. Required if stageId is not 1.' - durationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'The duration of the stage. Required. NOTE: The cumulative value of this property across all stages 1. Will override the instanceDurationInDays setting on the accessReviewScheduleDefinition object. 2. Cannot exceed the length of one recurrence. That is, if the review recurs weekly, the cumulative durationInDays cannot exceed 7.' - format: int32 - fallbackReviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'If provided, the fallback reviewers are asked to complete a review if the primary reviewers do not exist. For example, if managers are selected as reviewers and a principal under review does not have a manager in Azure AD, the fallback reviewers are asked to review that principal. NOTE: The value of this property will override the corresponding setting on the accessReviewScheduleDefinition object.' - recommendationInsightSettings: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewRecommendationInsightSetting' - recommendationLookBackDuration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: 'Optional field. Indicates the time period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look back duration. For reviews of groups and Azure AD roles, any duration is accepted. For reviews of applications, 30 days is the maximum duration. If not specified, the duration is 30 days. NOTE: The value of this property will override the corresponding setting on the accessReviewScheduleDefinition object.' - format: duration - nullable: true - recommendationsEnabled: - type: boolean - description: 'Indicates whether showing recommendations to reviewers is enabled. Required. NOTE: The value of this property will override override the corresponding setting on the accessReviewScheduleDefinition object.' - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' - description: 'Defines who the reviewers are. If none are specified, the review is a self-review (users review their own access). For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API. NOTE: The value of this property will override the corresponding setting on the accessReviewScheduleDefinition.' - stageId: - type: string - description: Unique identifier of the accessReviewStageSettings. The stageId will be used in dependsOn property to indicate the stage relationship. Required. - additionalProperties: - type: object - microsoft.graph.accessReviewHistoryDecisionFilter: - title: accessReviewHistoryDecisionFilter - enum: - - approve - - deny - - notReviewed - - dontKnow - - notNotified - - unknownFutureValue - type: string - microsoft.graph.accessReviewHistoryScheduleSettings: - title: accessReviewHistoryScheduleSettings - type: object - properties: - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - reportRange: - type: string - description: 'A duration string in ISO 8601 duration format specifying the lookback period of the generated review history data. For example, if a history definition is scheduled to run on the 1st of every month, the reportRange is P1M. In this case, on the first of every month, access review history data will be collected containing only the previous month''s review data. Note: Only years, months, and days ISO 8601 properties are supported. Required.' - additionalProperties: - type: object - microsoft.graph.accessReviewHistoryStatus: - title: accessReviewHistoryStatus - enum: - - done - - inprogress - - error - - requested - - unknownFutureValue - type: string - microsoft.graph.appConsentRequestScope: - title: appConsentRequestScope - type: object - properties: - displayName: - type: string - description: The name of the scope. - nullable: true - additionalProperties: - type: object - microsoft.graph.request: + acceptances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + description: Read-only. Information about acceptances of this agreement. + file: + $ref: '#/components/schemas/microsoft.graph.agreementFile' + files: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' + additionalProperties: + type: object + microsoft.graph.agreementAcceptance: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: request + - title: agreementAcceptance type: object properties: - approvalId: + agreementFileId: type: string - description: The identifier of the approval of the request. + description: ID of the agreement file accepted by the user. nullable: true - completedDateTime: + agreementId: + type: string + description: ID of the agreement. + nullable: true + deviceDisplayName: + type: string + description: The display name of the device used for accepting the agreement. + nullable: true + deviceId: + type: string + description: The unique identifier of the device used for accepting the agreement. + nullable: true + deviceOSType: + type: string + description: The operating system used for accepting the agreement. + nullable: true + deviceOSVersion: + type: string + description: The operating system version of the device used for accepting the agreement. + nullable: true + expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The request completion date time. + description: 'The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' format: date-time nullable: true - createdBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - createdDateTime: + recordedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The request creation date time. + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' format: date-time nullable: true - customData: + state: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptanceState' + userDisplayName: type: string - description: Free text field to define any custom data for the request. Not used. + description: Display name of the user when the acceptance was recorded. nullable: true - status: + userEmail: type: string - description: 'The status of the request. Not nullable. The possible values are: Canceled, Denied, Failed, Granted, PendingAdminDecision, PendingApproval, PendingProvisioning, PendingScheduleCreation, Provisioned, Revoked, and ScheduleCreated. Not nullable.' + description: Email of the user when the acceptance was recorded. + nullable: true + userId: + type: string + description: ID of the user who accepted the agreement. + nullable: true + userPrincipalName: + type: string + description: UPN of the user when the acceptance was recorded. + nullable: true additionalProperties: type: object - microsoft.graph.assignmentReviewSettings: - title: assignmentReviewSettings - type: object - properties: - accessReviewTimeoutBehavior: - $ref: '#/components/schemas/microsoft.graph.accessReviewTimeoutBehavior' - durationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of days within which reviewers should provide input. - format: int32 - nullable: true - isAccessRecommendationEnabled: - type: boolean - description: Specifies whether to display recommendations to the reviewer. The default value is true - nullable: true - isApprovalJustificationRequired: - type: boolean - description: Specifies whether the reviewer must provide justification for the approval. The default value is true. - nullable: true - isEnabled: - type: boolean - description: 'If true, access reviews are required for assignments from this policy.' - nullable: true - recurrenceType: - type: string - description: 'The interval for recurrence, such as monthly or quarterly.' - nullable: true - reviewers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.userSet' - description: 'If the reviewerType is Reviewers, this collection specifies the users who will be reviewers, either by ID or as members of a group, using a collection of singleUser and groupMembers.' - reviewerType: - type: string - description: 'Who should be asked to do the review, either Self or Reviewers.' - nullable: true - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: When the first review should start. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.accessPackageQuestion: - title: accessPackageQuestion - type: object - properties: - id: - type: string - description: ID of the question. - nullable: true - isAnswerEditable: - type: boolean - description: Specifies whether the requestor is allowed to edit answers to questions. - nullable: true - isRequired: - type: boolean - description: Whether the requestor is required to supply an answer or not. - nullable: true - sequence: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Relative position of this question when displaying a list of questions to the requestor. - format: int32 - nullable: true - text: - $ref: '#/components/schemas/microsoft.graph.accessPackageLocalizedContent' - additionalProperties: - type: object - microsoft.graph.approvalSettings: - title: approvalSettings - type: object - properties: - approvalMode: - type: string - description: 'One of SingleStage, Serial, Parallel, NoApproval (default). NoApproval is used when isApprovalRequired is false.' - nullable: true - approvalStages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.approvalStage' - description: 'If approval is required, the one or two elements of this collection define each of the stages of approval. An empty array if no approval is required.' - isApprovalRequired: - type: boolean - description: Indicates whether approval is required for requests in this policy. - nullable: true - isApprovalRequiredForExtension: - type: boolean - description: Indicates whether approval is required for a user to extend their assignment. - nullable: true - isRequestorJustificationRequired: - type: boolean - description: Indicates whether the requestor is required to supply a justification in their request. - nullable: true - additionalProperties: - type: object - microsoft.graph.requestorSettings: - title: requestorSettings + microsoft.graph.agreementFile: + allOf: + - $ref: '#/components/schemas/microsoft.graph.agreementFileProperties' + - title: agreementFile + type: object + properties: + localizations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' + description: The localized version of the terms of use agreement files attached to the agreement. + additionalProperties: + type: object + microsoft.graph.agreementFileLocalization: + allOf: + - $ref: '#/components/schemas/microsoft.graph.agreementFileProperties' + - title: agreementFileLocalization + type: object + properties: + versions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' + description: Read-only. Customized versions of the terms of use agreement in the Azure AD tenant. + additionalProperties: + type: object + microsoft.graph.agreementFileVersion: + allOf: + - $ref: '#/components/schemas/microsoft.graph.agreementFileProperties' + - title: agreementFileVersion + type: object + additionalProperties: + type: object + microsoft.graph.businessFlowTemplate: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: businessFlowTemplate + type: object + properties: + displayName: + type: string + description: The name of the business flow template + nullable: true + additionalProperties: + type: object + microsoft.graph.identityGovernance: + title: identityGovernance type: object properties: - acceptRequests: - type: boolean - description: Indicates whether new requests are accepted on this policy. - nullable: true - allowedRequestors: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.userSet' - description: 'The users who are allowed to request on this policy, which can be singleUser, groupMembers, and connectedOrganizationMembers.' - scopeType: - type: string - description: 'Who can request. One of NoSubjects, SpecificDirectorySubjects, SpecificConnectedOrganizationSubjects, AllConfiguredConnectedOrganizationSubjects, AllExistingConnectedOrganizationSubjects, AllExistingDirectoryMemberUsers, AllExistingDirectorySubjects or AllExternalSubjects.' - nullable: true + lifecycleWorkflows: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowsContainer' + accessReviews: + $ref: '#/components/schemas/microsoft.graph.accessReviewSet' + appConsent: + $ref: '#/components/schemas/microsoft.graph.appConsentApprovalRoute' + termsOfUse: + $ref: '#/components/schemas/microsoft.graph.termsOfUseContainer' + entitlementManagement: + $ref: '#/components/schemas/microsoft.graph.entitlementManagement' additionalProperties: type: object - microsoft.graph.group: + microsoft.graph.accessReviewSet: allOf: - - $ref: '#/components/schemas/microsoft.graph.directoryObject' - - title: group + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewSet type: object properties: - assignedLabels: + decisions: type: array items: - $ref: '#/components/schemas/microsoft.graph.assignedLabel' - description: 'The list of sensitivity label pairs (label ID, label name) associated with a Microsoft 365 group. Returned only on $select.' - assignedLicenses: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + description: Represents an Azure AD access review decision on an instance of a review. + definitions: type: array items: - $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq). Read-only. - classification: - type: string - description: 'Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith).' - nullable: true - createdByAppId: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' + description: Represents the template and scheduling for an access review. + historyDefinitions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDefinition' + description: Represents a collection of access review history data and the scopes used to collect that data. + policy: + $ref: '#/components/schemas/microsoft.graph.accessReviewPolicy' + additionalProperties: + type: object + microsoft.graph.accessReviewInstanceDecisionItem: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstanceDecisionItem + type: object + properties: + accessReviewId: type: string - description: 'App ID of the app used to create the group. Can be null for some groups. Returned by default. Read-only. Supports $filter (eq, ne, not, in, startsWith).' - nullable: true - createdDateTime: + description: The identifier of the accessReviewInstance parent. Supports $select. Read-only. + appliedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + appliedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.' + description: 'The timestamp when the approval decision was applied. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.' format: date-time nullable: true - description: + applyResult: type: string - description: 'An optional description for the group. Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith) and $search.' + description: 'The result of applying the decision. Possible values: New, AppliedSuccessfully, AppliedWithUnknownFailure, AppliedSuccessfullyButObjectNotFound and ApplyNotSupported. Supports $select, $orderby, and $filter (eq only). Read-only.' nullable: true - displayName: + decision: type: string - description: 'The display name for the group. Required. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderBy.' + description: 'Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow. Supports $select, $orderby, and $filter (eq only).' nullable: true - expirationDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + justification: type: string - description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.' - format: date-time - nullable: true - groupTypes: - type: array - items: - type: string - description: 'Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it''s either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, not).' - hasMembersWithLicenseErrors: - type: boolean - description: 'Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq).' - nullable: true - infoCatalogs: - type: array - items: - type: string - description: 'Identifies the info segments assigned to the group. Returned by default. Supports $filter (eq, not, ge, le, startsWith).' - isAssignableToRole: - type: boolean - description: 'Indicates whether this group can be assigned to an Azure Active Directory role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, not).' - nullable: true - isManagementRestricted: - type: boolean + description: Justification left by the reviewer when they made the decision. nullable: true - licenseProcessingState: - $ref: '#/components/schemas/microsoft.graph.licenseProcessingState' - mail: + principal: + $ref: '#/components/schemas/microsoft.graph.identity' + principalLink: type: string - description: 'The SMTP address for the group, for example, ''serviceadmins@contoso.onmicrosoft.com''. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' - nullable: true - mailEnabled: - type: boolean - description: 'Specifies whether the group is mail-enabled. Required. Returned by default. Supports $filter (eq, ne, not, and eq on null values).' + description: 'Link to the principal object. For example: https://graph.microsoft.com/v1.0/users/a6c7aecb-cbfd-4763-87ef-e91b4bd509d9. Read-only.' nullable: true - mailNickname: + principalResourceMembership: + $ref: '#/components/schemas/microsoft.graph.decisionItemPrincipalResourceMembership' + recommendation: type: string - description: 'The mail alias for the group, unique for Microsoft 365 groups in the organization. Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () / [] '' ; : . <> , SPACE. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith).' + description: 'A system-generated recommendation for the approval decision based off last interactive sign-in to tenant. Recommend approve if sign-in is within thirty days of start of review. Recommend deny if sign-in is greater than thirty days of start of review. Recommendation not available otherwise. Possible values: Approve, Deny, or NoInfoAvailable. Supports $select, $orderby, and $filter (eq only). Read-only.' nullable: true - membershipRule: + resource: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemResource' + resourceLink: type: string - description: 'The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith).' + description: 'A link to the resource. For example, https://graph.microsoft.com/v1.0/servicePrincipals/c86300f3-8695-4320-9f6e-32a2555f5ff8. Supports $select. Read-only.' nullable: true - membershipRuleProcessingState: + reviewedBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + reviewedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, not, in).' - nullable: true - onPremisesDomainName: - type: string - description: 'Contains the on-premises domain FQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Read-only.' - nullable: true - onPremisesLastSyncDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'Indicates the last time at which the group was synced with the on-premises directory.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in).' + description: The timestamp when the review decision occurred. Supports $select. Read-only. format: date-time nullable: true - onPremisesNetBiosName: - type: string - description: Contains the on-premises netBios name synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Read-only. - nullable: true - onPremisesProvisioningErrors: + target: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItemTarget' + insights: type: array items: - $ref: '#/components/schemas/microsoft.graph.onPremisesProvisioningError' - description: 'Errors when using Microsoft synchronization product during provisioning. Returned by default. Supports $filter (eq, not).' - onPremisesSamAccountName: - type: string - description: 'Contains the on-premises SAM account name synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith). Read-only.' - nullable: true - onPremisesSecurityIdentifier: - type: string - description: Contains the on-premises security identifier (SID) for the group that was synchronized from on-premises to the cloud. Returned by default. Supports $filter (eq including on null values). Read-only. - nullable: true - onPremisesSyncEnabled: - type: boolean - description: 'true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values).' - nullable: true - organizationId: - type: string - nullable: true - preferredDataLocation: - type: string - description: 'The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator''s preferred data location. To set this property, the calling user must be assigned one of the following Azure AD roles: Global Administrator User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default.' - nullable: true - preferredLanguage: + $ref: '#/components/schemas/microsoft.graph.governanceInsight' + description: Insights are recommendations to reviewers on whether to approve or deny a decision. There can be multiple insights associated with an accessReviewInstanceDecisionItem. + instance: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + additionalProperties: + type: object + microsoft.graph.governanceInsight: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: governanceInsight + type: object + properties: + insightCreatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example en-US. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: Indicates when the insight was created. + format: date-time nullable: true - proxyAddresses: - type: array - items: - type: string - description: 'Email addresses for the group that direct to the same group mailbox. For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The any operator is required for filter expressions on multi-valued properties. Returned by default. Read-only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, and counting empty collections).' - renewedDateTime: + additionalProperties: + type: object + microsoft.graph.accessReviewInstance: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewInstance + type: object + properties: + endDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.' + description: 'DateTime when review instance is scheduled to end.The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.' format: date-time nullable: true - resourceBehaviorOptions: + errors: type: array items: - type: string - description: 'Specifies the group behaviors that can be set for a Microsoft 365 group during creation. This can be set only as part of creation (POST). Possible values are AllowOnlyMembersToPost, HideGroupInOutlook, SubscribeNewGroupMembers, WelcomeEmailDisabled. For more information, see Set Microsoft 365 group behaviors and provisioning options.' - resourceProvisioningOptions: + $ref: '#/components/schemas/microsoft.graph.accessReviewError' + description: Collection of errors in an access review instance lifecycle. Read-only. + fallbackReviewers: type: array items: - type: string - description: 'Specifies the group resources that are provisioned as part of Microsoft 365 group creation, that are not normally part of default group creation. Possible value is Team. For more information, see Set Microsoft 365 group behaviors and provisioning options. Returned by default. Supports $filter (eq, not, startsWith.' - securityEnabled: - type: boolean - description: 'Specifies whether the group is a security group. Required.Returned by default. Supports $filter (eq, ne, not, in).' - nullable: true - securityIdentifier: - type: string - description: 'Security identifier of the group, used in Windows scenarios. Returned by default.' - nullable: true - theme: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. Supports $select.' + reviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of access review scopes is used to define who the reviewers are. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' + scope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Specifies a Microsoft 365 group''s color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default.' + description: 'DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.' + format: date-time nullable: true - visibility: + status: type: string - description: 'Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or HiddenMembership. HiddenMembership can be set only for Microsoft 365 groups, when the groups are created. It can''t be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. Groups assignable to roles are always Private. See group visibility options to learn more. Returned by default. Nullable.' - nullable: true - writebackConfiguration: - $ref: '#/components/schemas/microsoft.graph.groupWritebackConfiguration' - accessType: - $ref: '#/components/schemas/microsoft.graph.groupAccessType' - allowExternalSenders: - type: boolean - description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' - nullable: true - autoSubscribeNewMembers: - type: boolean - description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' - nullable: true - hideFromAddressLists: - type: boolean - description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' - nullable: true - hideFromOutlookClients: - type: boolean - description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' - nullable: true - isFavorite: - type: boolean - nullable: true - isSubscribedByMail: - type: boolean - description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' - nullable: true - unseenConversationsCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Count of conversations that have been delivered one or more new posts since the signed-in user's last visit to the group. This property is the same as unseenCount. Returned only on $select. - format: int32 - nullable: true - unseenCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' - format: int32 - nullable: true - unseenMessagesCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Count of new posts that have been delivered to the group's conversations since the signed-in user's last visit to the group. Returned only on $select. - format: int32 - nullable: true - membershipRuleProcessingStatus: - $ref: '#/components/schemas/microsoft.graph.membershipRuleProcessingStatus' - isArchived: - type: boolean - description: 'When a group is associated with a team, this property determines whether the team is in read-only mode. To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs.' + description: 'Specifies the status of an accessReview. Possible values: Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only). Read-only.' nullable: true - appRoleAssignments: + contactedReviewers: type: array items: - $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' - description: Represents the app roles a group has been granted for an application. Supports $expand. - createdOnBehalfOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - endpoints: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' + description: 'Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.' + decisions: type: array items: - $ref: '#/components/schemas/microsoft.graph.endpoint' - description: Endpoints for the group. Read-only. Nullable. - memberOf: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + description: 'Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.' + definition: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' + stages: type: array items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand.' - members: + $ref: '#/components/schemas/microsoft.graph.accessReviewStage' + description: 'If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition.' + additionalProperties: + type: object + microsoft.graph.accessReviewInstanceDecisionItemFilterByCurrentUserOptions: + title: accessReviewInstanceDecisionItemFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewScheduleDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewScheduleDefinition + type: object + properties: + additionalNotificationRecipients: type: array items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: 'Direct members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName).' - membersWithLicenseErrors: + $ref: '#/components/schemas/microsoft.graph.accessReviewNotificationRecipientItem' + description: Defines the list of additional users or group members to be notified of the access review progress. + backupReviewers: type: array items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: A list of group members with license errors from this group-based license assignment. Read-only. - owners: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + createdBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the access review series was created. Supports $select. Read-only. + format: date-time + nullable: true + descriptionForAdmins: + type: string + description: Description provided by review creators to provide more context of the review to admins. Supports $select. + nullable: true + descriptionForReviewers: + type: string + description: Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Email notifications support up to 256 characters. Supports $select. + nullable: true + displayName: + type: string + description: Name of the access review series. Supports $select and $orderBy. Required on create. + nullable: true + fallbackReviewers: type: array items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: 'The owners of the group who can be users or service principals. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName).' - permissionGrants: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist. See accessReviewReviewerScope. Replaces backupReviewers. Supports $select. NOTE: The value of this property will be ignored if fallback reviewers are assigned through the stageSettings property.' + instanceEnumerationScope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the access review series was last modified. Supports $select. Read-only. + format: date-time + nullable: true + reviewers: type: array items: - $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' - description: The permissions that have been granted for a group to a specific application. Supports $expand. + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of access review scopes is used to define who are the reviewers. The reviewers property is only updatable if individual users are assigned as reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API. NOTE: The value of this property will be ignored if reviewers are assigned through the stageSettings property.' + scope: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' settings: + $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleSettings' + stageSettings: type: array items: - $ref: '#/components/schemas/microsoft.graph.directorySetting' - description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' - transitiveMemberOf: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: 'The groups that a group is a member of, either directly and through nested membership. Nullable.' - transitiveMembers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: The direct and transitive members of a group. Nullable. - acceptedSenders: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. - calendar: - $ref: '#/components/schemas/microsoft.graph.calendar' - calendarView: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.event' - description: The calendar view for the calendar. Read-only. - conversations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.conversation' - description: The group's conversations. - events: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.event' - description: The group's events. - rejectedSenders: + $ref: '#/components/schemas/microsoft.graph.accessReviewStageSettings' + description: 'Required only for a multi-stage access review to define the stages and their settings. You can break down each review instance into up to three sequential stages, where each stage can have a different set of reviewers, fallback reviewers, and settings. Stages will be created sequentially based on the dependsOn property. Optional. When this property is defined, its settings are used instead of the corresponding settings in the accessReviewScheduleDefinition object and its settings, reviewers, and fallbackReviewers properties.' + status: + type: string + description: 'This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only). Read-only.' + nullable: true + instances: type: array items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable - threads: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + description: 'Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.' + additionalProperties: + type: object + microsoft.graph.accessReviewStage: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewStage + type: object + properties: + endDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'DateTime when review stage is scheduled to end. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. This property is the cumulative total of the durationInDays for all stages. Read-only.' + format: date-time + nullable: true + fallbackReviewers: type: array items: - $ref: '#/components/schemas/microsoft.graph.conversationThread' - description: The group's conversation threads. Nullable. - drive: - $ref: '#/components/schemas/microsoft.graph.drive' - drives: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user''s manager does not exist.' + reviewers: type: array items: - $ref: '#/components/schemas/microsoft.graph.drive' - description: The group's drives. Read-only. - sites: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'This collection of access review scopes is used to define who the reviewers are. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.' + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'DateTime when review stage is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + status: + type: string + description: 'Specifies the status of an accessReviewStage. Possible values: Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $orderby, and $filter (eq only). Read-only.' + nullable: true + decisions: type: array items: - $ref: '#/components/schemas/microsoft.graph.site' - description: The list of SharePoint sites in this group. Access the default site with /sites/root. - extensions: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' + description: 'Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.' + additionalProperties: + type: object + microsoft.graph.accessReviewStageFilterByCurrentUserOptions: + title: accessReviewStageFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewInstanceFilterByCurrentUserOptions: + title: accessReviewInstanceFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewScheduleDefinitionFilterByCurrentUserOptions: + title: accessReviewScheduleDefinitionFilterByCurrentUserOptions + enum: + - reviewer + - unknownFutureValue + type: string + microsoft.graph.accessReviewHistoryDefinition: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewHistoryDefinition + type: object + properties: + createdBy: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the access review definition was created. + format: date-time + decisions: type: array items: - $ref: '#/components/schemas/microsoft.graph.extension' - description: The collection of open extensions defined for the group. Read-only. Nullable. - groupLifecyclePolicies: + $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDecisionFilter' + description: 'Determines which review decisions will be included in the fetched review history data if specified. Optional on create. All decisions will be included by default if no decisions are provided on create. Possible values are: approve, deny, dontKnow, notReviewed, and notNotified.' + displayName: + type: string + description: Name for the access review history data collection. Required. + downloadUri: + type: string + nullable: true + fulfilledDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + reviewHistoryPeriodEndDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: A timestamp. Reviews ending on or before this date will be included in the fetched history data. Only required if scheduleSettings is not defined. + format: date-time + reviewHistoryPeriodStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: A timestamp. Reviews starting on or before this date will be included in the fetched history data. Only required if scheduleSettings is not defined. + format: date-time + scheduleSettings: + $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryScheduleSettings' + scopes: type: array items: - $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' - description: The collection of lifecycle policies for this group. Read-only. Nullable. - planner: - $ref: '#/components/schemas/microsoft.graph.plannerGroup' - onenote: - $ref: '#/components/schemas/microsoft.graph.onenote' - photo: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - photos: + $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + description: Used to scope what reviews are included in the fetched history data. Fetches reviews whose scope matches with this provided scope. Required. + status: + $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryStatus' + instances: type: array items: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - description: The profile photos owned by the group. Read-only. Nullable. - team: - $ref: '#/components/schemas/microsoft.graph.team' + $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryInstance' + description: 'If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that does not recur will have exactly one instance.' additionalProperties: type: object - microsoft.graph.accessPackageCustomExtensionStage: - title: accessPackageCustomExtensionStage - enum: - - assignmentRequestCreated - - assignmentRequestApproved - - assignmentRequestGranted - - assignmentRequestRemoved - - assignmentFourteenDaysBeforeExpiration - - assignmentOneDayBeforeExpiration - - unknownFutureValue - type: string - microsoft.graph.customCalloutExtension: + microsoft.graph.accessReviewHistoryInstance: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: customCalloutExtension + - title: accessReviewHistoryInstance + type: object + properties: + downloadUri: + type: string + description: Uri which can be used to retrieve review history data. This URI will be active for 24 hours after being generated. Required. + nullable: true + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when this instance and associated data expires and the history is deleted. Required. + format: date-time + fulfilledDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when all of the available data for this instance was collected. This will be set after this instance's status is set to done. Required. + format: date-time + nullable: true + reviewHistoryPeriodEndDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Timestamp, reviews ending on or before this date will be included in the fetched history data.' + format: date-time + nullable: true + reviewHistoryPeriodStartDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Timestamp, reviews starting on or after this date will be included in the fetched history data.' + format: date-time + nullable: true + runDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Timestamp when the instance's history data is scheduled to be generated. + format: date-time + status: + $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryStatus' + additionalProperties: + type: object + microsoft.graph.accessReviewPolicy: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessReviewPolicy type: object properties: - authenticationConfiguration: - $ref: '#/components/schemas/microsoft.graph.customExtensionAuthenticationConfiguration' - clientConfiguration: - $ref: '#/components/schemas/microsoft.graph.customExtensionClientConfiguration' description: type: string - description: Description for the customCalloutExtension object. + description: Description for this policy. Read-only. nullable: true displayName: type: string - description: Display name for the customCalloutExtension object. - nullable: true - endpointConfiguration: - $ref: '#/components/schemas/microsoft.graph.customExtensionEndpointConfiguration' + description: Display name for this policy. Read-only. + isGroupOwnerManagementEnabled: + type: boolean + description: 'If true, group owners can create and manage access reviews on groups they own.' additionalProperties: type: object - microsoft.graph.accessPackageAnswer: - title: accessPackageAnswer - type: object - properties: - answeredQuestion: - $ref: '#/components/schemas/microsoft.graph.accessPackageQuestion' - displayValue: - type: string - description: The display value of the answer. Required. - nullable: true - additionalProperties: - type: object - microsoft.graph.customExtensionHandlerInstance: - title: customExtensionHandlerInstance - type: object - properties: - customExtensionId: - type: string - description: Identifier of the customAccessPackageWorkflowExtension triggered at this instance. - nullable: true - externalCorrelationId: - type: string - description: The unique run ID for the logic app. - nullable: true - stage: - $ref: '#/components/schemas/microsoft.graph.accessPackageCustomExtensionStage' - status: - $ref: '#/components/schemas/microsoft.graph.accessPackageCustomExtensionHandlerStatus' - additionalProperties: - type: object - microsoft.graph.requestSchedule: - title: requestSchedule - type: object - properties: - expiration: - $ref: '#/components/schemas/microsoft.graph.expirationPattern' - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. In PIM, when the eligible or active assignment becomes active.' - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.accessPackageSubjectLifecycle: - title: accessPackageSubjectLifecycle + microsoft.graph.appConsentApprovalRoute: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: appConsentApprovalRoute + type: object + properties: + appConsentRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.appConsentRequest' + description: A collection of userConsentRequest objects for a specific application. + additionalProperties: + type: object + microsoft.graph.appConsentRequest: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: appConsentRequest + type: object + properties: + appDisplayName: + type: string + description: The display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby. + nullable: true + appId: + type: string + description: The identifier of the application. Required. Supports $filter (eq only) and $orderby. + consentType: + type: string + description: 'The consent type of the request. Possible values are: Static and Dynamic. These represent static and dynamic permissions, respectively, requested in the consent workflow. Supports $filter (eq only) and $orderby. Required.' + nullable: true + pendingScopes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.appConsentRequestScope' + description: A list of pending scopes waiting for approval. This is empty if the consentType is Static. Required. + userConsentRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userConsentRequest' + description: A list of pending user consent requests. Supports $filter (eq). + additionalProperties: + type: object + microsoft.graph.userConsentRequest: + allOf: + - $ref: '#/components/schemas/microsoft.graph.request' + - title: userConsentRequest + type: object + properties: + reason: + type: string + description: The user's justification for requiring access to the app. Supports $filter (eq only) and $orderby. + nullable: true + approval: + $ref: '#/components/schemas/microsoft.graph.approval' + additionalProperties: + type: object + microsoft.graph.approval: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: approval + type: object + properties: + steps: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.approvalStep' + additionalProperties: + type: object + microsoft.graph.approvalStep: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: approvalStep + type: object + properties: + assignedToMe: + type: boolean + description: Indicates whether the step is assigned to the calling user to review. Read-only. + nullable: true + displayName: + type: string + description: The label provided by the policy creator to identify an approval step. Read-only. + nullable: true + justification: + type: string + description: The justification associated with the approval step decision. + nullable: true + reviewedBy: + $ref: '#/components/schemas/microsoft.graph.identity' + reviewedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + reviewResult: + type: string + description: 'The result of this approval record. Possible values include: NotReviewed, Approved, Denied.' + nullable: true + status: + type: string + description: 'The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.' + nullable: true + additionalProperties: + type: object + microsoft.graph.consentRequestFilterByCurrentUserOptions: + title: consentRequestFilterByCurrentUserOptions enum: - - notDefined - - notGoverned - - governed + - reviewer - unknownFutureValue type: string - microsoft.graph.identitySource: - title: identitySource - type: object - additionalProperties: - type: object - microsoft.graph.connectedOrganizationState: - title: connectedOrganizationState + microsoft.graph.entitlementManagement: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: entitlementManagement + type: object + properties: + accessPackageAssignmentApprovals: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.approval' + accessPackageAssignmentPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' + description: Represents the policy that governs which subjects can request or be assigned an access package via an access package assignment. + accessPackageAssignmentRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequest' + description: Represents access package assignment requests created by or on behalf of a user. + accessPackageAssignmentResourceRoles: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentResourceRole' + description: Represents the resource-specific role which a subject has been assigned through an access package assignment. + accessPackageAssignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' + description: The assignment of an access package to a subject for a period of time. + accessPackageCatalogs: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' + description: A container of access packages. + accessPackageResourceEnvironments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceEnvironment' + description: A reference to the geolocation environment in which a resource is located. + accessPackageResourceRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRequest' + description: Represents a request to add or remove a resource to or from a catalog respectively. + accessPackageResourceRoleScopes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRoleScope' + description: 'A reference to both a scope within a resource, and a role in that resource for that scope.' + accessPackageResources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResource' + description: A reference to a resource associated with an access package catalog. + accessPackages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + description: Represents access package objects. + connectedOrganizations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.connectedOrganization' + description: Represents references to a directory or domain of another organization whose users can request access. + settings: + $ref: '#/components/schemas/microsoft.graph.entitlementManagementSettings' + subjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' + additionalProperties: + type: object + microsoft.graph.approvalFilterByCurrentUserOptions: + title: approvalFilterByCurrentUserOptions enum: - - configured - - proposed + - target + - createdBy + - approver - unknownFutureValue type: string - microsoft.graph.accessPackageResourceAttribute: - title: accessPackageResourceAttribute - type: object - properties: - attributeDestination: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttributeDestination' - attributeName: - type: string - description: 'The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension_2b676109c7c74ae2b41549205f1947ed_personalTitle.' - nullable: true - attributeSource: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttributeSource' - id: - type: string - description: Unique identifier for the attribute on the access package resource. Read-only. - nullable: true - isEditable: - type: boolean - description: Specifies whether or not an existing attribute value can be edited by the requester. - nullable: true - isPersistedOnAssignmentRemoval: - type: boolean - description: Specifies whether the attribute will remain in the end system after an assignment ends. - nullable: true - additionalProperties: - type: object - microsoft.graph.connectionInfo: - title: connectionInfo - type: object - properties: - url: - type: string - description: The endpoint that is used by Entitlement Management to communicate with the access package resource. - nullable: true - additionalProperties: - type: object - microsoft.graph.governanceRoleAssignmentRequestStatus: - title: governanceRoleAssignmentRequestStatus - type: object - properties: - status: - type: string - description: The status of the role assignment request. The value can be InProgress or Closed. - nullable: true - statusDetails: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.keyValue' - description: The details of the status of the role assignment request. It represents the evaluation results of different rules. - subStatus: - type: string - description: 'The sub status of the role assignment request. The values can be Accepted, PendingEvaluation, Granted, Denied, PendingProvisioning, Provisioned, PendingRevocation, Revoked, Canceled, Failed, PendingApprovalProvisioning, PendingApproval, FailedAsResourceIsLocked, PendingAdminDecision, AdminApproved, AdminDenied, TimedOut, and ProvisioningStarted.' - nullable: true - additionalProperties: - type: object - microsoft.graph.governanceRuleSetting: - title: governanceRuleSetting - type: object - properties: - ruleIdentifier: - type: string - description: 'The id of the rule. For example, ExpirationRule and MfaRule.' - nullable: true - setting: - type: string - description: 'The settings of the rule. The value is a JSON string with a list of pairs in the format of Parameter_Name:Parameter_Value. For example, {''permanentAssignment'':false,''maximumGrantPeriodInMinutes'':129600}' - nullable: true - additionalProperties: - type: object - microsoft.graph.approvalState: - title: approvalState - enum: - - pending - - approved - - denied - - aborted - - canceled - type: string - microsoft.graph.roleSummaryStatus: - title: roleSummaryStatus - enum: - - ok - - bad - type: string - microsoft.graph.programResource: + microsoft.graph.accessPackageAssignmentPolicy: allOf: - - $ref: '#/components/schemas/microsoft.graph.identity' - - title: programResource + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageAssignmentPolicy type: object properties: - type: + accessPackageId: type: string - description: 'Type of the resource, indicating whether it is a group or an app.' + description: Identifier of the access package. + nullable: true + accessReviewSettings: + $ref: '#/components/schemas/microsoft.graph.assignmentReviewSettings' + canExtend: + type: boolean + description: Indicates whether a user can extend the access package assignment duration after approval. + nullable: true + createdBy: + type: string + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + description: + type: string + description: The description of the policy. + nullable: true + displayName: + type: string + description: The display name of the policy. Supports $filter (eq). + nullable: true + durationInDays: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of days in which assignments from this policy last until they are expired. + format: int32 + nullable: true + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The expiration date for assignments created in this policy. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + modifiedBy: + type: string + nullable: true + modifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time nullable: true + questions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageQuestion' + description: Questions that are posed to the requestor. + requestApprovalSettings: + $ref: '#/components/schemas/microsoft.graph.approvalSettings' + requestorSettings: + $ref: '#/components/schemas/microsoft.graph.requestorSettings' + accessPackage: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + accessPackageCatalog: + $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' + customExtensionHandlers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.customExtensionHandler' + description: The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand. additionalProperties: type: object - microsoft.graph.accessReviewCollectionResponse: - title: Collection of accessReview - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReview' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.ODataErrors.ODataError: - required: - - error - type: object - properties: - error: - $ref: '#/components/schemas/microsoft.graph.ODataErrors.MainError' - additionalProperties: - type: object - microsoft.graph.accessReviewDecisionCollectionResponse: - title: Collection of accessReviewDecision - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewReviewerCollectionResponse: - title: Collection of accessReviewReviewer - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.agreementCollectionResponse: - title: Collection of agreement - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreement' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.agreementAcceptanceCollectionResponse: - title: Collection of agreementAcceptance - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.agreementFileLocalizationCollectionResponse: - title: Collection of agreementFileLocalization - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.agreementFileVersionCollectionResponse: - title: Collection of agreementFileVersion - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.businessFlowTemplateCollectionResponse: - title: Collection of businessFlowTemplate - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.businessFlowTemplate' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceDecisionItemCollectionResponse: - title: Collection of accessReviewInstanceDecisionItem - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.governanceInsightCollectionResponse: - title: Collection of governanceInsight - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceInsight' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewStageCollectionResponse: - title: Collection of accessReviewStage - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewStage' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewScheduleDefinitionCollectionResponse: - title: Collection of accessReviewScheduleDefinition - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewInstanceCollectionResponse: - title: Collection of accessReviewInstance - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewHistoryDefinitionCollectionResponse: - title: Collection of accessReviewHistoryDefinition - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryDefinition' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessReviewHistoryInstanceCollectionResponse: - title: Collection of accessReviewHistoryInstance - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewHistoryInstance' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.appConsentRequestCollectionResponse: - title: Collection of appConsentRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.appConsentRequest' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.userConsentRequestCollectionResponse: - title: Collection of userConsentRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.userConsentRequest' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.approvalStepCollectionResponse: - title: Collection of approvalStep - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.approvalStep' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.approvalCollectionResponse: - title: Collection of approval - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.approval' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentPolicyCollectionResponse: - title: Collection of accessPackageAssignmentPolicy - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.customExtensionHandlerCollectionResponse: - title: Collection of customExtensionHandler - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customExtensionHandler' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentRequestCollectionResponse: - title: Collection of accessPackageAssignmentRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequest' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentResourceRoleCollectionResponse: - title: Collection of accessPackageAssignmentResourceRole - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentResourceRole' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageAssignmentCollectionResponse: - title: Collection of accessPackageAssignment - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageResourceRoleCollectionResponse: - title: Collection of accessPackageResourceRole - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageResourceScopeCollectionResponse: - title: Collection of accessPackageResourceScope - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageResourceRoleScopeCollectionResponse: - title: Collection of accessPackageResourceRoleScope - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRoleScope' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageCollectionResponse: - title: Collection of accessPackage - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackage' - '@odata.nextLink': - type: string - additionalProperties: - type: object - StringCollectionResponse: - title: Collection of string - type: object - properties: - value: - type: array - items: - type: string - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.groupCollectionResponse: - title: Collection of group - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.group' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageCatalogCollectionResponse: - title: Collection of accessPackageCatalog - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageResourceCollectionResponse: - title: Collection of accessPackageResource - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResource' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.customAccessPackageWorkflowExtensionCollectionResponse: - title: Collection of customAccessPackageWorkflowExtension - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.customAccessPackageWorkflowExtension' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageResourceEnvironmentCollectionResponse: - title: Collection of accessPackageResourceEnvironment - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceEnvironment' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageResourceRequestCollectionResponse: - title: Collection of accessPackageResourceRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRequest' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.connectedOrganizationCollectionResponse: - title: Collection of connectedOrganization - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.connectedOrganization' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.directoryObjectCollectionResponse: - title: Collection of directoryObject - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.accessPackageSubjectCollectionResponse: - title: Collection of accessPackageSubject - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.privilegedAccessCollectionResponse: - title: Collection of privilegedAccess - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedAccess' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.governanceResourceCollectionResponse: - title: Collection of governanceResource - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceResource' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.governanceRoleAssignmentRequestCollectionResponse: - title: Collection of governanceRoleAssignmentRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.governanceRoleAssignmentCollectionResponse: - title: Collection of governanceRoleAssignment - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.governanceRoleDefinitionCollectionResponse: - title: Collection of governanceRoleDefinition - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.governanceRoleSettingCollectionResponse: - title: Collection of governanceRoleSetting - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.privilegedApprovalCollectionResponse: - title: Collection of privilegedApproval - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedApproval' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.privilegedRoleAssignmentCollectionResponse: - title: Collection of privilegedRoleAssignment - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.privilegedOperationEventCollectionResponse: - title: Collection of privilegedOperationEvent - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedOperationEvent' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.privilegedRoleAssignmentRequestCollectionResponse: - title: Collection of privilegedRoleAssignmentRequest - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.privilegedRoleCollectionResponse: - title: Collection of privilegedRole - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.privilegedRole' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.programControlCollectionResponse: - title: Collection of programControl - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.programControl' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.programControlTypeCollectionResponse: - title: Collection of programControlType - type: object - properties: - value: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.programControlType' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.programCollectionResponse: - title: Collection of program + microsoft.graph.accessPackage: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackage + type: object + properties: + catalogId: + type: string + description: Identifier of the access package catalog referencing this access package. Read-only. + nullable: true + createdBy: + type: string + description: The userPrincipalName of the user or identity of the subject who created this resource. Read-only. + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + description: + type: string + description: The description of the access package. + nullable: true + displayName: + type: string + description: 'The display name of the access package. Supports $filter (eq, contains).' + nullable: true + isHidden: + type: boolean + description: Whether the access package is hidden from the requestor. + nullable: true + isRoleScopesVisible: + type: boolean + description: Indicates whether role scopes are visible. + nullable: true + modifiedBy: + type: string + description: The userPrincipalName of the user who last modified this resource. Read-only. + nullable: true + modifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + accessPackageAssignmentPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' + description: Read-only. Nullable. Supports $expand. + accessPackageCatalog: + $ref: '#/components/schemas/microsoft.graph.accessPackageCatalog' + accessPackageResourceRoleScopes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRoleScope' + accessPackagesIncompatibleWith: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + description: The access packages that are incompatible with this package. Read-only. + incompatibleAccessPackages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + description: The access packages whose assigned users are ineligible to be assigned this access package. + incompatibleGroups: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.group' + description: The groups whose members are ineligible to be assigned this access package. + additionalProperties: + type: object + microsoft.graph.accessPackageCatalog: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageCatalog + type: object + properties: + catalogStatus: + type: string + description: Has the value Published if the access packages are available for management. + nullable: true + catalogType: + type: string + description: One of UserManaged or ServiceDefault. + nullable: true + createdBy: + type: string + description: UPN of the user who created this resource. Read-only. + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + description: + type: string + description: The description of the access package catalog. + nullable: true + displayName: + type: string + description: 'The display name of the access package catalog. Supports $filter (eq, contains).' + nullable: true + isExternallyVisible: + type: boolean + description: Whether the access packages in this catalog can be requested by users outside of the tenant. + nullable: true + modifiedBy: + type: string + description: The UPN of the user who last modified this resource. Read-only. + nullable: true + modifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + accessPackageResourceRoles: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' + description: The roles in each resource in a catalog. Read-only. + accessPackageResources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResource' + accessPackageResourceScopes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' + accessPackages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + description: The access packages in this catalog. Read-only. Nullable. Supports $expand. + customAccessPackageWorkflowExtensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.customAccessPackageWorkflowExtension' + additionalProperties: + type: object + microsoft.graph.customExtensionHandler: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: customExtensionHandler + type: object + properties: + stage: + $ref: '#/components/schemas/microsoft.graph.accessPackageCustomExtensionStage' + customExtension: + $ref: '#/components/schemas/microsoft.graph.customAccessPackageWorkflowExtension' + additionalProperties: + type: object + microsoft.graph.customAccessPackageWorkflowExtension: + allOf: + - $ref: '#/components/schemas/microsoft.graph.customCalloutExtension' + - title: customAccessPackageWorkflowExtension + type: object + properties: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + additionalProperties: + type: object + microsoft.graph.accessPackageAssignmentRequest: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageAssignmentRequest + type: object + properties: + answers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAnswer' + description: Answers provided by the requestor to accessPackageQuestions asked of them at the time of request. + completedDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date of the end of processing, either successful or failure, of a request. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + customExtensionHandlerInstances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.customExtensionHandlerInstance' + description: A collection of custom workflow extension instances being run on an assignment request. Read-only. + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + isValidationOnly: + type: boolean + description: True if the request is not to be processed for assignment. + nullable: true + justification: + type: string + description: The requestor's supplied justification. + nullable: true + requestState: + type: string + description: 'One of PendingApproval, Canceled, Denied, Delivering, Delivered, PartiallyDelivered, DeliveryFailed, Submitted or Scheduled. Read-only.' + nullable: true + requestStatus: + type: string + description: More information on the request processing status. Read-only. + nullable: true + requestType: + type: string + description: 'One of UserAdd, UserExtend, UserUpdate, UserRemove, AdminAdd, AdminRemove or SystemRemove. A request from the user themselves would have requestType of UserAdd, UserUpdate or UserRemove. Read-only.' + nullable: true + schedule: + $ref: '#/components/schemas/microsoft.graph.requestSchedule' + accessPackage: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + accessPackageAssignment: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' + requestor: + $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' + additionalProperties: + type: object + microsoft.graph.accessPackageAssignment: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageAssignment + type: object + properties: + accessPackageId: + type: string + description: The identifier of the access package. Read-only. + nullable: true + assignmentPolicyId: + type: string + description: The identifier of the access package assignment policy. Read-only. + nullable: true + assignmentState: + type: string + description: 'The state of the access package assignment. Possible values are Delivering, Delivered, or Expired. Read-only. Supports $filter (eq).' + nullable: true + assignmentStatus: + type: string + description: 'More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.' + nullable: true + catalogId: + type: string + description: The identifier of the catalog containing the access package. Read-only. + nullable: true + expiredDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + isExtended: + type: boolean + description: Indicates whether the access package assignment is extended. Read-only. + nullable: true + schedule: + $ref: '#/components/schemas/microsoft.graph.requestSchedule' + targetId: + type: string + description: The ID of the subject with the assignment. Read-only. + nullable: true + accessPackage: + $ref: '#/components/schemas/microsoft.graph.accessPackage' + accessPackageAssignmentPolicy: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy' + accessPackageAssignmentRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentRequest' + accessPackageAssignmentResourceRoles: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignmentResourceRole' + description: The resource roles delivered to the target user for this assignment. Read-only. Nullable. + target: + $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' + additionalProperties: + type: object + microsoft.graph.accessPackageSubject: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageSubject + type: object + properties: + altSecId: + type: string + nullable: true + connectedOrganizationId: + type: string + description: The identifier of the connected organization of the subject. + nullable: true + displayName: + type: string + description: The display name of the subject. + nullable: true + email: + type: string + description: The email address of the subject. + nullable: true + objectId: + type: string + description: The object identifier of the subject. null if the subject is not yet a user in the tenant. + nullable: true + onPremisesSecurityIdentifier: + type: string + nullable: true + principalName: + type: string + description: 'The principal name, if known, of the subject.' + nullable: true + subjectLifecycle: + $ref: '#/components/schemas/microsoft.graph.accessPackageSubjectLifecycle' + type: + type: string + description: The resource type of the subject. + nullable: true + connectedOrganization: + $ref: '#/components/schemas/microsoft.graph.connectedOrganization' + additionalProperties: + type: object + microsoft.graph.connectedOrganization: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: connectedOrganization + type: object + properties: + createdBy: + type: string + description: UPN of the user who created this resource. Read-only. + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + description: + type: string + description: The description of the connected organization. + nullable: true + displayName: + type: string + description: The display name of the connected organization. Supports $filter (eq). + nullable: true + identitySources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identitySource' + description: 'The identity sources in this connected organization, one of azureActiveDirectoryTenant, crossCloudAzureActiveDirectoryTenant, domainIdentitySource or externalDomainFederation. Read-only. Nullable. Supports $select and $filter(eq). To filter by the derived types, you must declare the resource using its full OData cast, for example, $filter=identitySources/any(is:is/microsoft.graph.azureActiveDirectoryTenant/tenantId eq ''bcfdfff4-cbc3-43f2-9000-ba7b7515054f'').' + modifiedBy: + type: string + description: UPN of the user who last modified this resource. Read-only. + nullable: true + modifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time + nullable: true + state: + $ref: '#/components/schemas/microsoft.graph.connectedOrganizationState' + externalSponsors: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + internalSponsors: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + additionalProperties: + type: object + microsoft.graph.accessPackageAssignmentRequestFilterByCurrentUserOptions: + title: accessPackageAssignmentRequestFilterByCurrentUserOptions + enum: + - target + - createdBy + - approver + - unknownFutureValue + type: string + microsoft.graph.accessPackageAssignmentResourceRole: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageAssignmentResourceRole + type: object + properties: + originId: + type: string + description: 'A unique identifier relative to the origin system, corresponding to the originId property of the accessPackageResourceRole.' + nullable: true + originSystem: + type: string + description: 'The system where the role assignment is to be created or has been created for an access package assignment, such as SharePointOnline, AadGroup or AadApplication, corresponding to the originSystem property of the accessPackageResourceRole.' + nullable: true + status: + type: string + description: 'The value is PendingFulfillment when the access package assignment has not yet been delivered to the origin system, and Fulfilled when the access package assignment has been delivered to the origin system.' + nullable: true + accessPackageAssignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageAssignment' + description: The access package assignments resulting in this role assignment. Read-only. Nullable. + accessPackageResourceRole: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' + accessPackageResourceScope: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' + accessPackageSubject: + $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' + additionalProperties: + type: object + microsoft.graph.accessPackageResourceRole: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageResourceRole + type: object + properties: + description: + type: string + description: A description for the resource role. + nullable: true + displayName: + type: string + description: The display name of the resource role such as the role defined by the application. + nullable: true + originId: + type: string + description: 'The unique identifier of the resource role in the origin system. For a SharePoint Online site, the originId will be the sequence number of the role in the site.' + nullable: true + originSystem: + type: string + description: 'The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup.' + nullable: true + accessPackageResource: + $ref: '#/components/schemas/microsoft.graph.accessPackageResource' + additionalProperties: + type: object + microsoft.graph.accessPackageResource: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageResource + type: object + properties: + addedBy: + type: string + description: The name of the user or application that first added this resource. Read-only. + nullable: true + addedOn: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + attributes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttribute' + description: Contains information about the attributes to be collected from the requestor and sent to the resource application. + description: + type: string + description: A description for the resource. + nullable: true + displayName: + type: string + description: 'The display name of the resource, such as the application name, group name or site name.' + nullable: true + isPendingOnboarding: + type: boolean + description: True if the resource is not yet available for assignment. + nullable: true + originId: + type: string + description: 'The unique identifier of the resource in the origin system. In the case of an Azure AD group, this is the identifier of the group.' + nullable: true + originSystem: + type: string + description: 'The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup.' + nullable: true + resourceType: + type: string + description: 'The type of the resource, such as Application if it is an Azure AD connected application, or SharePoint Online Site for a SharePoint Online site.' + nullable: true + url: + type: string + description: 'A unique resource locator for the resource, such as the URL for signing a user into an application.' + nullable: true + accessPackageResourceEnvironment: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceEnvironment' + accessPackageResourceRoles: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' + description: Read-only. Nullable. Supports $expand. + accessPackageResourceScopes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' + description: Read-only. Nullable. Supports $expand. + additionalProperties: + type: object + microsoft.graph.accessPackageResourceEnvironment: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageResourceEnvironment + type: object + properties: + connectionInfo: + $ref: '#/components/schemas/microsoft.graph.connectionInfo' + createdBy: + type: string + description: The display name of the user that created this object. + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time that this object was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + format: date-time + nullable: true + description: + type: string + description: The description of this object. + nullable: true + displayName: + type: string + description: The display name of this object. + nullable: true + isDefaultEnvironment: + type: boolean + description: 'Determines whether this is default environment or not. It is set to true for all static origin systems, such as Azure AD groups and Azure AD Applications.' + nullable: true + modifiedBy: + type: string + description: The display name of the entity that last modified this object. + nullable: true + modifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time that this object was last modified. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + format: date-time + nullable: true + originId: + type: string + description: The unique identifier of this environment in the origin system. + originSystem: + type: string + description: 'The type of the resource in the origin system, that is, SharePointOnline. Requires $filter (eq).' + accessPackageResources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageResource' + description: Read-only. Required. + additionalProperties: + type: object + microsoft.graph.accessPackageResourceScope: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageResourceScope + type: object + properties: + description: + type: string + description: The description of the scope. + nullable: true + displayName: + type: string + description: The display name of the scope. + nullable: true + isRootScope: + type: boolean + description: True if the scopes are arranged in a hierarchy and this is the top or root scope of the resource. + nullable: true + originId: + type: string + description: The unique identifier for the scope in the resource as defined in the origin system. + nullable: true + originSystem: + type: string + description: The origin system for the scope. + nullable: true + roleOriginId: + type: string + description: 'The origin system for the role, if different.' + nullable: true + url: + type: string + description: A resource locator for the scope. + nullable: true + accessPackageResource: + $ref: '#/components/schemas/microsoft.graph.accessPackageResource' + additionalProperties: + type: object + microsoft.graph.accessPackageResourceRoleScope: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageResourceRoleScope + type: object + properties: + createdBy: + type: string + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + modifiedBy: + type: string + nullable: true + modifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + accessPackageResourceRole: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceRole' + accessPackageResourceScope: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceScope' + additionalProperties: + type: object + microsoft.graph.accessPackageAssignmentRequestRequirements: + title: accessPackageAssignmentRequestRequirements type: object properties: - value: + existingAnswers: type: array items: - $ref: '#/components/schemas/microsoft.graph.program' - '@odata.nextLink': - type: string - additionalProperties: - type: object - microsoft.graph.autoReviewSettings: - title: autoReviewSettings - type: object - properties: - notReviewedResult: - type: string - description: 'Possible values: Approve, Deny, or Recommendation. If Recommendation, then accessRecommendationsEnabled in the accessReviewSettings resource should also be set to true. If you want to have the system provide a decision even if the reviewer does not make a choice, set the autoReviewEnabled property in the accessReviewSettings resource to true and include an autoReviewSettings object with the notReviewedResult property. Then, when a review completes, based on the notReviewedResult property, the decision is recorded as either Approve or Deny.' - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewRecurrenceSettings: - title: accessReviewRecurrenceSettings - type: object - properties: - durationInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The duration in days for recurrence. - format: int32 - recurrenceCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'The count of recurrences, if the value of recurrenceEndType is occurrences, or 0 otherwise.' - format: int32 - recurrenceEndType: - type: string - description: 'How the recurrence ends. Possible values: never, endBy, occurrences, or recurrenceCount. If it is never, then there is no explicit end of the recurrence series. If it is endBy, then the recurrence ends at a certain date. If it is occurrences, then the series ends after recurrenceCount instances of the review have completed.' - nullable: true - recurrenceType: - type: string - description: 'The recurrence interval. Possible vaules: onetime, weekly, monthly, quarterly, halfyearly or annual.' - nullable: true - additionalProperties: - type: object - microsoft.graph.agreementFileData: - title: agreementFileData - type: object - properties: - data: - type: string - description: 'Data that represents the terms of use PDF document. Read-only. Note: You can use the .NET Convert.ToBase64String method to convert your file to binary data for uploading using the Create agreements API. A sample syntax using this method in PowerShell is [convert]::ToBase64String((Get-Content -path ''your_file_path'' -Encoding byte)).' - format: base64url - nullable: true - additionalProperties: - type: object - microsoft.graph.decisionItemPrincipalResourceMembershipType: - title: decisionItemPrincipalResourceMembershipType - enum: - - direct - - indirect - - unknownFutureValue - type: string - microsoft.graph.genericError: - title: genericError - type: object - properties: - code: - type: string - description: The error code. - nullable: true - message: - type: string - description: The error message. - nullable: true - additionalProperties: - type: object - microsoft.graph.accessReviewNotificationRecipientScope: - title: accessReviewNotificationRecipientScope - type: object - additionalProperties: - type: object - microsoft.graph.accessReviewApplyAction: - title: accessReviewApplyAction - type: object - additionalProperties: - type: object - microsoft.graph.accessReviewRecommendationInsightSetting: - title: accessReviewRecommendationInsightSetting - type: object - additionalProperties: - type: object - microsoft.graph.patternedRecurrence: - title: patternedRecurrence - type: object - properties: - pattern: - $ref: '#/components/schemas/microsoft.graph.recurrencePattern' - range: - $ref: '#/components/schemas/microsoft.graph.recurrenceRange' - additionalProperties: - type: object - microsoft.graph.identitySet: - title: identitySet - type: object - properties: - application: - $ref: '#/components/schemas/microsoft.graph.identity' - device: - $ref: '#/components/schemas/microsoft.graph.identity' - user: - $ref: '#/components/schemas/microsoft.graph.identity' - additionalProperties: - type: object - microsoft.graph.accessReviewTimeoutBehavior: - title: accessReviewTimeoutBehavior - enum: - - keepAccess - - removeAccess - - acceptAccessRecommendation - - unknownFutureValue - type: string - microsoft.graph.userSet: - title: userSet - type: object - properties: - isBackup: + $ref: '#/components/schemas/microsoft.graph.accessPackageAnswer' + description: Answers that have already been provided. + isApprovalRequired: type: boolean - description: 'For a user in an approval stage, this property indicates whether the user is a backup fallback approver.' - nullable: true - additionalProperties: - type: object - microsoft.graph.accessPackageLocalizedContent: - title: accessPackageLocalizedContent - type: object - properties: - defaultText: - type: string - description: 'The fallback string, which is used when a requested localization is not available. Required.' - nullable: true - localizedTexts: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessPackageLocalizedText' - description: Content represented in a format for a specific locale. - additionalProperties: - type: object - microsoft.graph.approvalStage: - title: approvalStage - type: object - properties: - approvalStageTimeOutInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of days that a request can be pending a response before it is automatically denied. - format: int32 - nullable: true - escalationApprovers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.userSet' - description: 'If escalation is enabled and the primary approvers do not respond before the escalation time, the escalationApprovers are the users who will be asked to approve requests. This can be a collection of singleUser, groupMembers, requestorManager, internalSponsors and externalSponsors. When creating or updating a policy, if there are no escalation approvers, or escalation approvers are not required for the stage, the value of this property should be an empty collection.' - escalationTimeInMinutes: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'If escalation is required, the time a request can be pending a response from a primary approver.' - format: int32 + description: Indicates whether a request must be approved by an approver. nullable: true - isApproverJustificationRequired: + isApprovalRequiredForExtension: type: boolean - description: Indicates whether the approver is required to provide a justification for approving a request. + description: Indicates whether approval is required when a user tries to extend their access. nullable: true - isEscalationEnabled: + isCustomAssignmentScheduleAllowed: type: boolean - description: 'If true, then one or more escalation approvers are configured in this approval stage.' - nullable: true - primaryApprovers: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.userSet' - description: 'The users who will be asked to approve requests. A collection of singleUser, groupMembers, requestorManager, internalSponsors and externalSponsors. When creating or updating a policy, include at least one userSet in this collection.' - additionalProperties: - type: object - microsoft.graph.assignedLabel: - title: assignedLabel - type: object - properties: - displayName: - type: string - description: The display name of the label. Read-only. - nullable: true - labelId: - type: string - description: The unique identifier of the label. - nullable: true - additionalProperties: - type: object - microsoft.graph.assignedLicense: - title: assignedLicense - type: object - properties: - disabledPlans: - type: array - items: - pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' - type: string - format: uuid - description: A collection of the unique identifiers for plans that have been disabled. - skuId: - pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' - type: string - description: The unique identifier for the SKU. - format: uuid - nullable: true - additionalProperties: - type: object - microsoft.graph.licenseProcessingState: - title: licenseProcessingState - type: object - properties: - state: - type: string + description: Indicates whether the requestor is allowed to set a custom schedule. nullable: true - additionalProperties: - type: object - microsoft.graph.onPremisesProvisioningError: - title: onPremisesProvisioningError - type: object - properties: - category: - type: string - description: 'Category of the provisioning error. Note: Currently, there is only one possible value. Possible value: PropertyConflict - indicates a property value is not unique. Other objects contain the same value for the property.' + isRequestorJustificationRequired: + type: boolean + description: Indicates whether a requestor must supply justification when submitting an assignment request. nullable: true - occurredDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + policyDescription: type: string - description: The date and time at which the error occurred. - format: date-time + description: The description of the policy that the user is trying to request access using. nullable: true - propertyCausingError: + policyDisplayName: type: string - description: 'Name of the directory property causing the error. Current possible values: UserPrincipalName or ProxyAddress' + description: The display name of the policy that the user is trying to request access using. nullable: true - value: + policyId: type: string - description: Value of the property causing the error. + description: The identifier of the policy that these requirements are associated with. This identifier can be used when creating a new assignment request. nullable: true + questions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessPackageQuestion' + description: Questions that are configured on the policy. The questions can be required or optional; callers can determine whether a question is required or optional based on the isRequired property on accessPackageQuestion. + schedule: + $ref: '#/components/schemas/microsoft.graph.requestSchedule' additionalProperties: type: object - microsoft.graph.groupWritebackConfiguration: + microsoft.graph.accessPackageAssignmentFilterByCurrentUserOptions: + title: accessPackageAssignmentFilterByCurrentUserOptions + enum: + - target + - createdBy + - unknownFutureValue + type: string + microsoft.graph.accessPackageFilterByCurrentUserOptions: + title: accessPackageFilterByCurrentUserOptions + enum: + - allowedRequestor + - unknownFutureValue + type: string + microsoft.graph.accessPackageResourceRequest: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: accessPackageResourceRequest + type: object + properties: + catalogId: + type: string + description: The unique ID of the access package catalog. + nullable: true + executeImmediately: + type: boolean + nullable: true + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + isValidationOnly: + type: boolean + description: 'If set, does not add the resource.' + nullable: true + justification: + type: string + description: The requestor's justification for adding or removing the resource. + nullable: true + requestState: + type: string + description: The outcome of whether the service was able to add the resource to the catalog. The value is Delivered if the resource was added or removed. Read-Only. + nullable: true + requestStatus: + type: string + nullable: true + requestType: + type: string + description: 'Use AdminAdd to add a resource, if the caller is an administrator or resource owner, or AdminRemove to remove a resource.' + nullable: true + accessPackageResource: + $ref: '#/components/schemas/microsoft.graph.accessPackageResource' + requestor: + $ref: '#/components/schemas/microsoft.graph.accessPackageSubject' + additionalProperties: + type: object + microsoft.graph.directoryObject: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: directoryObject + type: object + properties: + deletedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Date and time when this object was deleted. Always null when the object hasn't been deleted. + format: date-time + nullable: true + additionalProperties: + type: object + microsoft.graph.entitlementManagementSettings: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: entitlementManagementSettings + type: object + properties: + daysUntilExternalUserDeletedAfterBlocked: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'If externalUserLifecycleAction is BlockSignInAndDelete, the number of days after an external user is blocked from sign in before their account is deleted.' + format: int32 + nullable: true + externalUserLifecycleAction: + type: string + description: 'One of None, BlockSignIn, or BlockSignInAndDelete.' + nullable: true + additionalProperties: + type: object + microsoft.graph.identityGovernance.lifecycleWorkflowsContainer: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: lifecycleWorkflowsContainer + type: object + properties: + customTaskExtensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtension' + description: The customTaskExtension instance. + deletedItems: + $ref: '#/components/schemas/microsoft.graph.deletedItemContainer' + settings: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleManagementSettings' + taskDefinitions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' + description: The definition of tasks within the lifecycle workflows instance. + workflows: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + description: The workflows in the lifecycle workflows instance. + workflowTemplates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowTemplate' + description: The workflow templates in the lifecycle workflow instance. + additionalProperties: + type: object + microsoft.graph.identityGovernance.customTaskExtension: + allOf: + - $ref: '#/components/schemas/microsoft.graph.customCalloutExtension' + - title: customTaskExtension + type: object + properties: + callbackConfiguration: + $ref: '#/components/schemas/microsoft.graph.customExtensionCallbackConfiguration' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: When the custom task extension was created. + format: date-time + nullable: true + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: When the custom extension was last modified. + format: date-time + nullable: true + createdBy: + $ref: '#/components/schemas/microsoft.graph.user' + lastModifiedBy: + $ref: '#/components/schemas/microsoft.graph.user' + additionalProperties: + type: object + microsoft.graph.user: + allOf: + - $ref: '#/components/schemas/microsoft.graph.directoryObject' + - title: user + type: object + properties: + signInActivity: + $ref: '#/components/schemas/microsoft.graph.signInActivity' + accountEnabled: + type: boolean + description: 'true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter (eq, ne, not, and in).' + nullable: true + ageGroup: + type: string + description: 'Sets the age group of the user. Allowed values: null, Minor, NotAdult and Adult. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, not, and in).' + nullable: true + assignedLicenses: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.assignedLicense' + description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter (eq, not, and counting empty collections).' + assignedPlans: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.assignedPlan' + description: The plans that are assigned to the user. Read-only. Not nullable.Supports $filter (eq and not). + authorizationInfo: + $ref: '#/components/schemas/microsoft.graph.authorizationInfo' + businessPhones: + type: array + items: + type: string + description: 'The telephone numbers for the user. Only one number can be set for this property. Read-only for users synced from on-premises directory. Supports $filter (eq, not, ge, le, startsWith).' + city: + type: string + description: 'The city in which the user is located. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + companyName: + type: string + description: 'The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length is 64 characters.Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + consentProvidedForMinor: + type: string + description: 'Sets whether consent has been obtained for minors. Allowed values: null, Granted, Denied and NotRequired. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, not, and in).' + nullable: true + country: + type: string + description: 'The country/region in which the user is located; for example, US or UK. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Read-only. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true + creationType: + type: string + description: 'Indicates whether the user account was created through one of the following methods: As a regular school or work account (null). As an external account (Invitation). As a local account for an Azure Active Directory B2C tenant (LocalAccount). Through self-service sign-up by an internal user using email verification (EmailVerified). Through self-service sign-up by an external user signing up through a link that is part of a user flow (SelfServiceSignUp). Read-only.Supports $filter (eq, ne, not, and in).' + nullable: true + customSecurityAttributes: + $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeValue' + department: + type: string + description: 'The name for the department in which the user works. Maximum length is 64 characters.Supports $filter (eq, ne, not , ge, le, in, and eq on null values).' + nullable: true + deviceKeys: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceKey' + displayName: + type: string + description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderBy, and $search.' + nullable: true + employeeHireDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user was hired or will start work in case of a future hire. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true + employeeId: + type: string + description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + nullable: true + employeeLeaveDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time when the user left or will leave the organization. Read: Requires User-LifeCycleInfo.Read.All. For delegated scenarios, the admin needs one of the following Azure AD roles: Lifecycle Workflows Administrator, Global Reader, or Global Admin. Write: Requires User-LifeCycleInfo.ReadWrite.All. For delegated scenarios, the admin needs the Global Administrator Azure AD role. Supports $filter (eq, ne, not , ge, le, in).' + format: date-time + nullable: true + employeeOrgData: + $ref: '#/components/schemas/microsoft.graph.employeeOrgData' + employeeType: + type: string + description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Supports $filter (eq, ne, not , ge, le, in, startsWith).' + nullable: true + externalUserState: + type: string + description: 'For an external user invited to the tenant using the invitation API, this property represents the invited user''s invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Supports $filter (eq, ne, not , in).' + nullable: true + externalUserStateChangeDateTime: + type: string + description: 'Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, not , in).' + nullable: true + faxNumber: + type: string + description: 'The fax number of the user. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + nullable: true + givenName: + type: string + description: 'The given name (first name) of the user. Maximum length is 64 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + nullable: true + identities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.objectIdentity' + description: 'Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) including on null values, only where the signInType is not userPrincipalName.' + imAddresses: + type: array + items: + type: string + nullable: true + description: 'The instant message voice over IP (VOIP) session initiation protocol (SIP) addresses for the user. Read-only. Supports $filter (eq, not, ge, le, startsWith).' + infoCatalogs: + type: array + items: + type: string + description: 'Identifies the info segments assigned to the user. Supports $filter (eq, not, ge, le, startsWith).' + isManagementRestricted: + type: boolean + nullable: true + isResourceAccount: + type: boolean + description: Do not use – reserved for future use. + nullable: true + jobTitle: + type: string + description: 'The user''s job title. Maximum length is 128 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + nullable: true + lastPasswordChangeDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The time when this Azure AD user last changed their password or when their password was created, , whichever date the latest action was performed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Returned only on $select.' + format: date-time + nullable: true + legalAgeGroupClassification: + type: string + description: 'Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult and Adult. Refer to the legal age group property definitions for further information. Returned only on $select.' + nullable: true + licenseAssignmentStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.licenseAssignmentState' + description: State of license assignments for this user. Read-only. Returned only on $select. + mail: + type: string + description: 'The SMTP address for the user, for example, admin@contoso.com. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. This property cannot contain accent characters. NOTE: We do not recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values).' + nullable: true + mailNickname: + type: string + description: 'The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + mobilePhone: + type: string + description: 'The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + officeLocation: + type: string + description: 'The office location in the user''s place of business. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + onPremisesDistinguishedName: + type: string + description: Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. + nullable: true + onPremisesDomainName: + type: string + description: 'Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only.' + nullable: true + onPremisesExtensionAttributes: + $ref: '#/components/schemas/microsoft.graph.onPremisesExtensionAttributes' + onPremisesImmutableId: + type: string + description: 'This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user''s userPrincipalName (UPN) property. Note: The $ and _ characters cannot be used when specifying this property. Supports $filter (eq, ne, not, ge, le, in).' + nullable: true + onPremisesLastSyncDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, in).' + format: date-time + nullable: true + onPremisesProvisioningErrors: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onPremisesProvisioningError' + description: 'Errors when using Microsoft synchronization product during provisioning. Supports $filter (eq, not, ge, le).' + onPremisesSamAccountName: + type: string + description: 'Contains the on-premises sAMAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith).' + nullable: true + onPremisesSecurityIdentifier: + type: string + description: Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Supports $filter (eq including on null values). + nullable: true + onPremisesSyncEnabled: + type: boolean + description: 'true if this user object is currently being synced from an on-premises Active Directory (AD); otherwise the user isn''t being synced and can be managed in Azure Active Directory (Azure AD). Read-only. Supports $filter (eq, ne, not, in, and eq on null values).' + nullable: true + onPremisesUserPrincipalName: + type: string + description: 'Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith).' + nullable: true + otherMails: + type: array + items: + type: string + description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: This property cannot contain accent characters.Supports $filter (eq, not, ge, le, in, startsWith, endsWith, and counting empty collections).' + passwordPolicies: + type: string + description: 'Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. For more information on the default password policies, see Azure AD pasword policies. Supports $filter (ne, not, and eq on null values).' + nullable: true + passwordProfile: + $ref: '#/components/schemas/microsoft.graph.passwordProfile' + postalCode: + type: string + description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + preferredDataLocation: + type: string + description: 'The preferred data location for the user. For more information, see OneDrive Online Multi-Geo.' + nullable: true + preferredLanguage: + type: string + description: 'The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + provisionedPlans: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.provisionedPlan' + description: 'The plans that are provisioned for the user. Read-only. Not nullable. Supports $filter (eq, not, ge, le).' + proxyAddresses: + type: array + items: + type: string + description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. Changes to the mail property will also update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, and counting empty collections).' + refreshTokensValidFromDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use invalidateAllRefreshTokens to reset.' + format: date-time + nullable: true + securityIdentifier: + type: string + description: 'Security identifier (SID) of the user, used in Windows scenarios. Read-only. Returned by default. Supports $select and $filter (eq, not, ge, le, startsWith).' + nullable: true + showInAddressList: + type: boolean + description: Do not use in Microsoft Graph. Manage this property through the Microsoft 365 admin center instead. Represents whether the user should be included in the Outlook global address list. See Known issue. + nullable: true + signInSessionsValidFromDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use revokeSignInSessions to reset.' + format: date-time + nullable: true + state: + type: string + description: 'The state or province in the user''s address. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + streetAddress: + type: string + description: 'The street address of the user''s place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + surname: + type: string + description: 'The user''s surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + usageLocation: + type: string + description: 'A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + userPrincipalName: + type: string + description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + nullable: true + userType: + type: string + description: 'A String value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for member and guest users, see What are the default user permissions in Azure Active Directory?' + nullable: true + mailboxSettings: + $ref: '#/components/schemas/microsoft.graph.mailboxSettings' + deviceEnrollmentLimit: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The limit on the maximum number of devices that the user is permitted to enroll. Allowed values are 5 or 1000. + format: int32 + print: + $ref: '#/components/schemas/microsoft.graph.userPrint' + aboutMe: + type: string + description: A freeform text entry field for the user to describe themselves. Returned only on $select. + nullable: true + birthday: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The birthday of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Returned only on $select.' + format: date-time + hireDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The hire date of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.' + format: date-time + interests: + type: array + items: + type: string + nullable: true + description: A list for the user to describe their interests. Returned only on $select. + mySite: + type: string + description: The URL for the user's personal site. Returned only on $select. + nullable: true + pastProjects: + type: array + items: + type: string + nullable: true + description: A list for the user to enumerate their past projects. Returned only on $select. + preferredName: + type: string + description: The preferred name for the user. Not Supported. This attribute returns an empty string.Returned only on $select. + nullable: true + responsibilities: + type: array + items: + type: string + nullable: true + description: A list for the user to enumerate their responsibilities. Returned only on $select. + schools: + type: array + items: + type: string + nullable: true + description: A list for the user to enumerate the schools they have attended. Returned only on $select. + skills: + type: array + items: + type: string + nullable: true + description: A list for the user to enumerate their skills. Returned only on $select. + analytics: + $ref: '#/components/schemas/microsoft.graph.userAnalytics' + cloudPCs: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPC' + usageRights: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.usageRight' + description: Represents the usage rights a user has been granted. + informationProtection: + $ref: '#/components/schemas/microsoft.graph.informationProtection' + appRoleAssignedResources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.servicePrincipal' + appRoleAssignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' + description: Represents the app roles a user has been granted for an application. Supports $expand. + createdObjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Directory objects that were created by the user. Read-only. Nullable. + directReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. Supports $expand. + licenseDetails: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.licenseDetails' + manager: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + memberOf: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable. Supports $expand.' + oauth2PermissionGrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant' + ownedDevices: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Devices that are owned by the user. Read-only. Nullable. Supports $expand. + ownedObjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Directory objects that are owned by the user. Read-only. Nullable. Supports $expand. + registeredDevices: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Devices that are registered for the user. Read-only. Nullable. Supports $expand. + scopedRoleMemberOf: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' + description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. + transitiveMemberOf: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'The groups, including nested groups, and directory roles that a user is a member of. Nullable.' + transitiveReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: The transitive reports for a user. Read-only. + calendar: + $ref: '#/components/schemas/microsoft.graph.calendar' + calendarGroups: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.calendarGroup' + description: The user's calendar groups. Read-only. Nullable. + calendars: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.calendar' + description: The user's calendars. Read-only. Nullable. + calendarView: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.event' + description: The calendar view for the calendar. Read-only. Nullable. + contactFolders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contactFolder' + description: The user's contacts folders. Read-only. Nullable. + contacts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contact' + description: The user's contacts. Read-only. Nullable. + events: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.event' + description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. + inferenceClassification: + $ref: '#/components/schemas/microsoft.graph.inferenceClassification' + joinedGroups: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.group' + mailFolders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mailFolder' + description: The user's mail folders. Read-only. Nullable. + messages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.message' + description: The messages in a mailbox or folder. Read-only. Nullable. + outlook: + $ref: '#/components/schemas/microsoft.graph.outlookUser' + people: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.person' + description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' + drive: + $ref: '#/components/schemas/microsoft.graph.drive' + drives: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.drive' + description: A collection of drives available for this user. Read-only. + followedSites: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.site' + extensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.extension' + description: The collection of open extensions defined for the user. Supports $expand. Nullable. + appConsentRequestsForApproval: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.appConsentRequest' + approvals: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.approval' + pendingAccessReviewInstances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' + description: Navigation property to get list of access reviews pending approval by reviewer. + agreementAcceptances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + description: The user's terms of use acceptance statuses. Read-only. Nullable. + security: + $ref: '#/components/schemas/microsoft.graph.security.security' + deviceEnrollmentConfigurations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration' + description: Get enrollment configurations targeted to the user + managedDevices: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.managedDevice' + description: The managed devices associated with the user. + managedAppRegistrations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' + description: Zero or more managed app registrations that belong to the user. + windowsInformationProtectionDeviceRegistrations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' + description: Zero or more WIP device registrations that belong to the user. + deviceManagementTroubleshootingEvents: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent' + description: The list of troubleshooting events for this user. + mobileAppIntentAndStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mobileAppIntentAndState' + description: The list of troubleshooting events for this user. + mobileAppTroubleshootingEvents: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mobileAppTroubleshootingEvent' + description: The list of mobile app troubleshooting events for this user. + notifications: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.notification' + planner: + $ref: '#/components/schemas/microsoft.graph.plannerUser' + insights: + $ref: '#/components/schemas/microsoft.graph.itemInsights' + settings: + $ref: '#/components/schemas/microsoft.graph.userSettings' + onenote: + $ref: '#/components/schemas/microsoft.graph.onenote' + photo: + $ref: '#/components/schemas/microsoft.graph.profilePhoto' + photos: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.profilePhoto' + profile: + $ref: '#/components/schemas/microsoft.graph.profile' + activities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userActivity' + devices: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.device' + onlineMeetings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onlineMeeting' + presence: + $ref: '#/components/schemas/microsoft.graph.presence' + authentication: + $ref: '#/components/schemas/microsoft.graph.authentication' + tasks: + $ref: '#/components/schemas/microsoft.graph.tasks' + chats: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chat' + joinedTeams: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.team' + description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. + teamwork: + $ref: '#/components/schemas/microsoft.graph.userTeamwork' + todo: + $ref: '#/components/schemas/microsoft.graph.todo' + additionalProperties: + type: object + microsoft.graph.deletedItemContainer: allOf: - - $ref: '#/components/schemas/microsoft.graph.writebackConfiguration' - - title: groupWritebackConfiguration + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deletedItemContainer type: object properties: - onPremisesGroupType: - type: string - description: 'Indicates the target on-premise group type the cloud object will be written back as. Nullable. The possible values are: universalDistributionGroup, universalSecurityGroup, universalMailEnabledSecurityGroup.If the cloud group is a unified (Microsoft 365) group, this property can be one of the following: universalDistributionGroup, universalSecurityGroup, universalMailEnabledSecurityGroup. Azure AD security groups can be written back as universalSecurityGroup. If isEnabled or the NewUnifiedGroupWritebackDefault group setting is true but this property is not explicitly configured: Microsoft 365 groups will be written back as universalDistributionGroup by defaultSecurity groups will be written back as universalSecurityGroup by default' - nullable: true + workflows: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflow' + description: Deleted workflows that end up in the deletedItemsContainer. additionalProperties: type: object - microsoft.graph.groupAccessType: - title: groupAccessType - enum: - - none - - private - - secret - - public - type: string - microsoft.graph.membershipRuleProcessingStatus: - title: membershipRuleProcessingStatus - type: object - properties: - errorMessage: - type: string - description: Detailed error message if dynamic group processing ran into an error. Optional. Read-only. - nullable: true - lastMembershipUpdated: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Most recent date and time when membership of a dynamic group was updated. Optional. Read-only. - format: date-time - nullable: true - status: - $ref: '#/components/schemas/microsoft.graph.MembershipRuleProcessingStatusDetails' - additionalProperties: - type: object - microsoft.graph.appRoleAssignment: + microsoft.graph.identityGovernance.workflow: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: appRoleAssignment + - $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowBase' + - title: workflow type: object properties: - appRoleId: - pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' - type: string - description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.' - format: uuid - creationTimestamp: + deletedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The time when the app role assignment was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + description: 'The time and date a workflow is deleted. Supports $filter(lt,gt) and $orderby.' format: date-time nullable: true - principalDisplayName: + id: type: string - description: 'The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith).' - nullable: true - principalId: - pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + description: Identifier used for individually addressing a specific workflow. Supports $filter(eq). + isEnabled: + type: boolean + description: 'If true, the workflow engine creates and processes taskProcessingResults on the users scoped to the workflow. Supports $filter(eq,ne) and orderby.' + isSchedulingEnabled: + type: boolean + description: 'If true, the workflow engine executes the workflow on the schedule defined by tenant settings.' + nextScheduleRunDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The unique identifier (id) for the user, group, or service principal being granted the app role. Required on create.' - format: uuid + description: 'The date time when the workflow is expected to run next based on the schedule interval, if there are any users matching the execution conditions. Supports $filter(lt,gt) and $orderby.' + format: date-time nullable: true - principalType: + version: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The current version number of the workflow. Value is 1 when the workflow is first created. Supports $filter(eq). + format: int32 + nullable: true + executionScope: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.user' + description: The unique identifier of the Azure AD identity that last modified the workflow object.. + runs: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.run' + taskReports: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskReport' + description: Represents the aggregation of task execution data for tasks within a workflow object. + userProcessingResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' + versions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowVersion' + description: The workflow versions that are available. + additionalProperties: + type: object + microsoft.graph.identityGovernance.run: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: run + type: object + properties: + completedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The type of the assigned principal. This can either be User, Group, or ServicePrincipal. Read-only.' + description: The date time that the run completed. Value is null if the workflow hasn't completed. Optional. + format: date-time nullable: true - resourceDisplayName: + failedTasksCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of tasks that failed in the run execution. Required. + format: int32 + failedUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of users that failed in the run execution. Required. + format: int32 + lastUpdatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The display name of the resource app's service principal to which the assignment is made. + description: The datetime that the run was last updated. Optional. + format: date-time nullable: true - resourceId: - pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + processingStatus: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus' + scheduledDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - format: uuid + description: The date time that the run is scheduled to be executed for a workflow. Required. + format: date-time + startedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The date time that the run execution started. Optional. + format: date-time nullable: true + successfulUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of successfully completed users in the run. Required. + format: int32 + totalTasksCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + totalUnprocessedTasksCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of unprocessed tasks in the run execution. Required. + format: int32 + totalUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of users in the workflow execution. Required. + format: int32 + workflowExecutionType: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowExecutionType' + taskProcessingResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + description: The related taskProcessingResults. + userProcessingResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.userProcessingResult' + description: The associated individual user execution. additionalProperties: type: object - microsoft.graph.endpoint: + microsoft.graph.identityGovernance.taskProcessingResult: allOf: - - $ref: '#/components/schemas/microsoft.graph.directoryObject' - - title: endpoint + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: taskProcessingResult type: object properties: - capability: + completedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Describes the capability that is associated with this resource. (e.g. Messages, Conversations, etc.) Not nullable. Read-only.' - providerId: + description: The date time when taskProcessingResult execution ended. Value is null if task execution is still in progress. + format: date-time + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Application id of the publishing underlying service. Not nullable. Read-only. + description: 'The date time when the taskProcessingResult was created. Supports $filter(lt, gt) and orderBy.' + format: date-time + failureReason: + type: string + description: Describes why the taskProcessingResult has failed. nullable: true - providerName: + processingStatus: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus' + startedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Name of the publishing underlying service. Read-only. + description: 'The date time when taskProcessingResult execution started. Value is null if task execution has not yet started. Supports $filter(lt, gt) and orderBy.' + format: date-time nullable: true - providerResourceId: + subject: + $ref: '#/components/schemas/microsoft.graph.user' + task: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + additionalProperties: + type: object + microsoft.graph.identityGovernance.customTaskExtensionCallbackData: + allOf: + - $ref: '#/components/schemas/microsoft.graph.customExtensionData' + - title: customTaskExtensionCallbackData + type: object + properties: + operationStatus: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtensionOperationStatus' + additionalProperties: + type: object + microsoft.graph.identityGovernance.task: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: task + type: object + properties: + arguments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: Arguments included within the task. + category: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleTaskCategory' + continueOnError: + type: boolean + description: A boolean value that determines if the failure of this task stops the subsequent workflows from running. + description: type: string - description: 'For Microsoft 365 groups, this is set to a well-known name for the resource (e.g. Yammer.FeedURL etc.). Not nullable. Read-only.' + description: A string that describes the purpose of the task for administrative use. nullable: true - uri: + displayName: type: string - description: URL of the published resource. Not nullable. Read-only. + description: A unique string that identifies the task. Supports $filter(eq) and orderBy. + executionSequence: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: An integer that states in what order the task will run in a workflow. + format: int32 + isEnabled: + type: boolean + description: 'A boolean value that denotes whether the task is set to run or not. Supports $filter(eq, ne) and orderBy.' + taskDefinitionId: + type: string + description: 'A unique template identifier for the task. For more information about the tasks that Lifecycle Workflows currently supports and their unique identifiers, see supported tasks' + taskProcessingResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + description: The result of processing the task. additionalProperties: type: object - microsoft.graph.resourceSpecificPermissionGrant: + microsoft.graph.identityGovernance.userProcessingResult: allOf: - - $ref: '#/components/schemas/microsoft.graph.directoryObject' - - title: resourceSpecificPermissionGrant + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: userProcessingResult type: object properties: - clientAppId: + completedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: ID of the service principal of the Azure AD app that has been granted access. Read-only. + description: 'The date time that the workflow execution for a user completed. Value is null if the workflow hasn''t completed. Supports $filter(lt, gt) and $orderby.' + format: date-time nullable: true - clientId: + failedTasksCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of tasks that failed in the workflow execution. + format: int32 + processingStatus: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus' + scheduledDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: ID of the Azure AD app that has been granted access. Read-only. + description: The date time that the workflow is scheduled to be executed for a user. + format: date-time + startedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date time that the workflow execution started. Value is null if the workflow execution has not started. Supports $filter(lt, gt) and $orderby.' + format: date-time nullable: true - permission: + totalTasksCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of tasks that in the workflow execution. + format: int32 + totalUnprocessedTasksCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of unprocessed tasks for the workflow. + format: int32 + workflowExecutionType: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowExecutionType' + workflowVersion: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The version of the workflow that was executed. + format: int32 + subject: + $ref: '#/components/schemas/microsoft.graph.user' + taskProcessingResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + description: The associated individual task execution. + additionalProperties: + type: object + microsoft.graph.identityGovernance.userSummary: + title: userSummary + type: object + properties: + failedTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of failed tasks for users in a user summary. + format: int32 + failedUsers: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of failed users in a user summary. + format: int32 + successfulUsers: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of successful users in a user summary. + format: int32 + totalTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total tasks of users in a user summary. + format: int32 + totalUsers: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of users in a user summary + format: int32 + additionalProperties: + type: object + microsoft.graph.identityGovernance.runSummary: + title: runSummary + type: object + properties: + failedRuns: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of failed workflow runs. + format: int32 + failedTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of failed tasks of a workflow. + format: int32 + successfulRuns: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of successful workflow runs. + format: int32 + totalRuns: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of runs for a workflow. + format: int32 + totalTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + totalUsers: + maximum: 2147483647 + minimum: -2147483648 + type: integer + format: int32 + additionalProperties: + type: object + microsoft.graph.identityGovernance.taskReport: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: taskReport + type: object + properties: + completedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The name of the resource-specific permission. Read-only. + description: The date time that the associated run completed. Value is null if the run has not completed. + format: date-time nullable: true - permissionType: + failedUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of users in the run execution for which the associated task failed. + format: int32 + lastUpdatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The type of permission. Possible values are: Application, Delegated. Read-only.' + description: The date and time that the task report was last updated. + format: date-time + processingStatus: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus' + runId: + type: string + description: The unique identifier of the associated run. nullable: true - resourceAppId: + startedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: ID of the Azure AD app that is hosting the resource. Read-only. + description: The date time that the associated run started. Value is null if the run has not started. + format: date-time nullable: true + successfulUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of users in the run execution for which the associated task succeeded. + format: int32 + totalUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of users in the run execution for which the associated task was scheduled to execute. + format: int32 + unprocessedUsersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'The number of users in the run execution for which the associated task is queued, in progress, or canceled.' + format: int32 + task: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + taskDefinition: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskDefinition' + taskProcessingResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.taskProcessingResult' + description: The related lifecycle workflow taskProcessingResults. additionalProperties: type: object - microsoft.graph.directorySetting: + microsoft.graph.identityGovernance.taskDefinition: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: directorySetting + - title: taskDefinition type: object properties: - displayName: + category: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleTaskCategory' + continueOnError: + type: boolean + description: type: string - description: 'Display name of this group of settings, which comes from the associated template. Read-only.' + description: The description of the taskDefinition. nullable: true - templateId: + displayName: type: string - description: Unique identifier for the template used to create this group of settings. Read-only. - nullable: true - values: + description: The display name of the taskDefinition. + parameters: type: array items: - $ref: '#/components/schemas/microsoft.graph.settingValue' - description: Collection of name-value pairs corresponding to the name and defaultValue properties in the referenced directorySettingTemplates object. + $ref: '#/components/schemas/microsoft.graph.identityGovernance.parameter' + description: The parameters that must be supplied when creating a task. + version: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The version number of the taskDefinition. New records are pushed when we add support for new parameters. + format: int32 additionalProperties: type: object - microsoft.graph.calendar: + microsoft.graph.identityGovernance.taskReportSummary: + title: taskReportSummary + type: object + properties: + failedTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of failed tasks in a report. + format: int32 + successfulTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of successful tasks in a report. + format: int32 + totalTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The total number of tasks in a report. + format: int32 + unprocessedTasks: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of unprocessed tasks in a report. + format: int32 + additionalProperties: + type: object + microsoft.graph.identityGovernance.workflowVersion: + allOf: + - $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowBase' + - title: workflowVersion + type: object + properties: + versionNumber: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The version of the workflow. + format: int32 + additionalProperties: + type: object + microsoft.graph.identityGovernance.lifecycleManagementSettings: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: calendar + - title: lifecycleManagementSettings type: object properties: - allowedOnlineMeetingProviders: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType' - description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.' - calendarGroupId: - type: string - description: 'The calendarGroup in which to create the calendar. If the user has never explicitly set a group for the calendar, this property is null.' - nullable: true - canEdit: - type: boolean - description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.' - nullable: true - canShare: - type: boolean - description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.' - nullable: true - canViewPrivateItems: - type: boolean - description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.' - nullable: true - changeKey: + workflowScheduleIntervalInHours: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The interval in hours at which all workflows running in the tenant should be scheduled for execution. This interval has a minimum value of 1 and a maximum value of 24. + format: int32 + additionalProperties: + type: object + microsoft.graph.identityGovernance.workflowTemplate: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: workflowTemplate + type: object + properties: + category: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.lifecycleWorkflowCategory' + description: type: string - description: 'Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' + description: The description of the workflowTemplate. nullable: true - color: - $ref: '#/components/schemas/microsoft.graph.calendarColor' - defaultOnlineMeetingProvider: - $ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType' - hexColor: + displayName: type: string - description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.' - nullable: true - isDefaultCalendar: - type: boolean - description: 'true if this is the default calendar where new events are created by default, false otherwise.' - nullable: true - isRemovable: - type: boolean - description: Indicates whether this user calendar can be deleted from the user mailbox. - nullable: true - isShared: - type: boolean - description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.' - nullable: true - isSharedWithMe: - type: boolean - description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.' - nullable: true - isTallyingResponses: - type: boolean - description: Indicates whether this user calendar supports tracking of meeting responses. Only meeting invites sent from users' primary calendars support tracking of meeting responses. - nullable: true - name: + description: The display name of the workflowTemplate. Supports orderby. + executionConditions: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.workflowExecutionConditions' + tasks: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.identityGovernance.task' + description: Represents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default. + additionalProperties: + type: object + microsoft.graph.termsOfUseContainer: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: termsOfUseContainer + type: object + properties: + agreementAcceptances: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' + description: Represents the current status of a user's response to a company's customizable terms of use agreement. + agreements: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.agreement' + description: Represents a tenant's customizable terms of use agreement that's created and managed with Azure Active Directory (Azure AD). + additionalProperties: + type: object + microsoft.graph.privilegedAccess: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: privilegedAccess + type: object + properties: + displayName: type: string - description: The calendar name. + description: The display name of the provider managed by PIM. nullable: true - owner: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - calendarPermissions: + resources: type: array items: - $ref: '#/components/schemas/microsoft.graph.calendarPermission' - description: The permissions of the users with whom the calendar is shared. - calendarView: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + description: A collection of resources for the provider. + roleAssignmentRequests: type: array items: - $ref: '#/components/schemas/microsoft.graph.event' - description: The calendar view for the calendar. Navigation property. Read-only. - events: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + description: A collection of role assignment requests for the provider. + roleAssignments: type: array items: - $ref: '#/components/schemas/microsoft.graph.event' - description: The events in the calendar. Navigation property. Read-only. - multiValueExtendedProperties: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + description: A collection of role assignments for the provider. + roleDefinitions: type: array items: - $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' - description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. - singleValueExtendedProperties: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + description: A collection of role defintions for the provider. + roleSettings: type: array items: - $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' - description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + description: A collection of role settings for the provider. additionalProperties: type: object - microsoft.graph.event: + microsoft.graph.governanceResource: allOf: - - $ref: '#/components/schemas/microsoft.graph.outlookItem' - - title: event + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: governanceResource type: object properties: - allowNewTimeProposals: - type: boolean - description: true if the meeting organizer allows invitees to propose a new time when responding; otherwise false. Optional. Default is true. - nullable: true - attendees: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attendee' - description: The collection of attendees for the event. - body: - $ref: '#/components/schemas/microsoft.graph.itemBody' - bodyPreview: + displayName: type: string - description: The preview of the message associated with the event. It is in text format. - nullable: true - cancelledOccurrences: - type: array - items: - type: string - nullable: true - description: 'Contains occurrenceId property values of cancelled instances in a recurring series, if the event is the series master. Instances in a recurring series that are cancelled are called cancelledOccurences.Returned only on $select in a Get operation which specifies the id of a series master event (that is, the seriesMasterId property value).' - end: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - hasAttachments: - type: boolean - description: Set to true if the event has attachments. - nullable: true - hideAttendees: - type: boolean - description: 'When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. Default is false.' - nullable: true - importance: - $ref: '#/components/schemas/microsoft.graph.importance' - isAllDay: - type: boolean + description: The display name of the resource. nullable: true - isCancelled: - type: boolean + externalId: + type: string + description: 'The external id of the resource, representing its original id in the external system. For example, a subscription resource''s external id can be ''/subscriptions/c14ae696-5e0c-4e5d-88cc-bef6637737ac''.' nullable: true - isDraft: - type: boolean + registeredDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Represents the date time when the resource is registered in PIM. + format: date-time nullable: true - isOnlineMeeting: - type: boolean + registeredRoot: + type: string + description: 'The externalId of the resource''s root scope that is registered in PIM. The root scope can be the parent, grandparent, or higher ancestor resources.' nullable: true - isOrganizer: - type: boolean + status: + type: string + description: 'The status of a given resource. For example, it could represent whether the resource is locked or not (values: Active/Locked). Note: This property may be extended in the future to support more scenarios.' nullable: true - isReminderOn: - type: boolean + type: + type: string + description: 'Required. Resource type. For example, for Azure resources, the type could be ''Subscription'', ''ResourceGroup'', ''Microsoft.Sql/server'', etc.' nullable: true - location: - $ref: '#/components/schemas/microsoft.graph.location' - locations: + parent: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + roleAssignmentRequests: type: array items: - $ref: '#/components/schemas/microsoft.graph.location' - occurrenceId: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequest' + description: The collection of role assignment requests for the resource. + roleAssignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + description: The collection of role assignments for the resource. + roleDefinitions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + description: The collection of role defintions for the resource. + roleSettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' + description: The collection of role settings for the resource. + additionalProperties: + type: object + microsoft.graph.governanceRoleAssignmentRequest: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: governanceRoleAssignmentRequest + type: object + properties: + assignmentState: type: string - nullable: true - onlineMeeting: - $ref: '#/components/schemas/microsoft.graph.onlineMeetingInfo' - onlineMeetingProvider: - $ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType' - onlineMeetingUrl: + description: 'Required. The state of the assignment. The possible values are: Eligible (for eligible assignment), Active (if it is directly assigned), Active (by administrators, or activated on an eligible assignment by the users).' + linkedEligibleRoleAssignmentId: type: string + description: 'If this is a request for role activation, it represents the id of the eligible assignment being referred; Otherwise, the value is null.' nullable: true - organizer: - $ref: '#/components/schemas/microsoft.graph.recipient' - originalEndTimeZone: + reason: type: string + description: A message provided by users and administrators when create the request about why it is needed. nullable: true - originalStart: + requestedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string + description: 'Read-only. The request create time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' format: date-time nullable: true - originalStartTimeZone: - type: string - nullable: true - recurrence: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - reminderMinutesBeforeStart: - maximum: 2147483647 - minimum: -2147483648 - type: integer - format: int32 - nullable: true - responseRequested: - type: boolean - nullable: true - responseStatus: - $ref: '#/components/schemas/microsoft.graph.responseStatus' - sensitivity: - $ref: '#/components/schemas/microsoft.graph.sensitivity' - seriesMasterId: + resourceId: type: string + description: 'Required. The unique identifier of the Azure resource that is associated with the role assignment request. Azure resources can include subscriptions, resource groups, virtual machines, and SQL databases.' nullable: true - showAs: - $ref: '#/components/schemas/microsoft.graph.freeBusyStatus' - start: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - subject: + roleDefinitionId: type: string + description: Required. The identifier of the Azure role definition that the role assignment request is associated with. nullable: true - transactionId: + schedule: + $ref: '#/components/schemas/microsoft.graph.governanceSchedule' + status: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignmentRequestStatus' + subjectId: type: string + description: 'Required. The unique identifier of the principal or subject that the role assignment request is associated with. Principals can be users, groups, or service principals.' nullable: true type: - $ref: '#/components/schemas/microsoft.graph.eventType' - uid: type: string - nullable: true - webLink: - type: string - nullable: true - attachments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attachment' - description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' - calendar: - $ref: '#/components/schemas/microsoft.graph.calendar' - exceptionOccurrences: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.event' - extensions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.extension' - description: The collection of open extensions defined for the event. Nullable. - instances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.event' - description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' - multiValueExtendedProperties: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' - description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. - singleValueExtendedProperties: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' - description: The collection of single-value extended properties defined for the event. Read-only. Nullable. + description: 'Required. Representing the type of the operation on the role assignment. The possible values are: AdminAdd , UserAdd , AdminUpdate , AdminRemove , UserRemove , UserExtend , AdminExtend , UserRenew , AdminRenew.' + resource: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + roleDefinition: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + subject: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' additionalProperties: type: object - microsoft.graph.conversation: + microsoft.graph.governanceSchedule: + title: governanceSchedule + type: object + properties: + duration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + description: The duration of a role assignment. It is in format of a TimeSpan. + format: duration + nullable: true + endDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The end time of the role assignment. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Note: if the value is null, it indicates a permanent assignment.' + format: date-time + nullable: true + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The start time of the role assignment. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + type: + type: string + description: The role assignment schedule type. Only Once is supported for now. + nullable: true + additionalProperties: + type: object + microsoft.graph.governanceRoleDefinition: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversation + - title: governanceRoleDefinition type: object properties: - hasAttachments: - type: boolean - description: 'Indicates whether any of the posts within this Conversation has at least one attachment. Supports $filter (eq, ne) and $search.' - lastDeliveredDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + displayName: type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $filter (eq, ne, le, ge).' - format: date-time - preview: + description: The display name of the role definition. + nullable: true + externalId: type: string - description: A short summary from the body of the latest post in this conversation. - topic: + description: The external id of the role definition. + nullable: true + resourceId: type: string - description: 'The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated.' - uniqueSenders: - type: array - items: - type: string - description: All the users that sent a message to this Conversation. - threads: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.conversationThread' - description: A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. + description: Required. The id of the resource associated with the role definition. + nullable: true + templateId: + type: string + nullable: true + resource: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + roleSetting: + $ref: '#/components/schemas/microsoft.graph.governanceRoleSetting' additionalProperties: type: object - microsoft.graph.conversationThread: + microsoft.graph.governanceRoleSetting: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationThread + - title: governanceRoleSetting type: object properties: - ccRecipients: + adminEligibleSettings: type: array items: - $ref: '#/components/schemas/microsoft.graph.recipient' - description: 'The Cc: recipients for the thread. Returned only on $select.' - hasAttachments: - type: boolean - description: Indicates whether any of the posts within this thread has at least one attachment. Returned by default. - isLocked: + $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' + description: The rule settings that are evaluated when an administrator tries to add an eligible role assignment. + adminMemberSettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' + description: The rule settings that are evaluated when an administrator tries to add a direct member role assignment. + isDefault: type: boolean - description: Indicates if the thread is locked. Returned by default. - lastDeliveredDateTime: + description: Read-only. Indicate if the roleSetting is a default roleSetting + nullable: true + lastUpdatedBy: + type: string + description: Read-only. The display name of the administrator who last updated the roleSetting. + nullable: true + lastUpdatedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default.' + description: 'Read-only. The time when the role setting was last updated. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' format: date-time - preview: + nullable: true + resourceId: type: string - description: A short summary from the body of the latest post in this conversation. Returned by default. - topic: + description: Required. The id of the resource that the role setting is associated with. + nullable: true + roleDefinitionId: type: string - description: 'The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. Returned by default.' - toRecipients: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.recipient' - description: 'The To: recipients for the thread. Returned only on $select.' - uniqueSenders: + description: Required. The id of the role definition that the role setting is associated with. + nullable: true + userEligibleSettings: type: array items: - type: string - description: All the users that sent a message to this thread. Returned by default. - posts: + $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' + description: The rule settings that are evaluated when a user tries to add an eligible role assignment. The setting is not supported for now. + userMemberSettings: type: array items: - $ref: '#/components/schemas/microsoft.graph.post' + $ref: '#/components/schemas/microsoft.graph.governanceRuleSetting' + description: The rule settings that are evaluated when a user tries to activate his role assignment. + resource: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + roleDefinition: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' additionalProperties: type: object - microsoft.graph.drive: + microsoft.graph.governanceSubject: allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItem' - - title: drive + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: governanceSubject type: object properties: - driveType: + displayName: type: string - description: Describes the type of drive represented by this resource. OneDrive personal drives will return personal. OneDrive for Business will return business. SharePoint document libraries will return documentLibrary. Read-only. + description: The display name of the subject. + nullable: true + email: + type: string + description: 'The email address of the user subject. If the subject is in other types, it is empty.' + nullable: true + principalName: + type: string + description: 'The principal name of the user subject. If the subject is in other types, it is empty.' + nullable: true + type: + type: string + description: 'The type of the subject. The value can be User, Group, and ServicePrincipal.' nullable: true - owner: - $ref: '#/components/schemas/microsoft.graph.identitySet' - quota: - $ref: '#/components/schemas/microsoft.graph.quota' - sharePointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - system: - $ref: '#/components/schemas/microsoft.graph.systemFacet' - activities: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.itemActivityOLD' - description: The list of recent activities that took place under this drive. - bundles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.driveItem' - description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' - following: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.driveItem' - description: The list of items the user is following. Only in OneDrive for Business. - items: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.driveItem' - description: All items contained in the drive. Read-only. Nullable. - list: - $ref: '#/components/schemas/microsoft.graph.list' - root: - $ref: '#/components/schemas/microsoft.graph.driveItem' - special: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.driveItem' - description: Collection of common folders available in OneDrive. Read-only. Nullable. additionalProperties: type: object - microsoft.graph.site: + microsoft.graph.governanceRoleAssignment: allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItem' - - title: site + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: governanceRoleAssignment type: object properties: - deleted: - $ref: '#/components/schemas/microsoft.graph.deleted' - displayName: + assignmentState: type: string - description: The full title for the site. Read-only. - nullable: true - root: - $ref: '#/components/schemas/microsoft.graph.root' - settings: - $ref: '#/components/schemas/microsoft.graph.siteSettings' - sharepointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - siteCollection: - $ref: '#/components/schemas/microsoft.graph.siteCollection' - analytics: - $ref: '#/components/schemas/microsoft.graph.itemAnalytics' - columns: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of column definitions reusable across lists under this site. - contentTypes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types defined for this site. - drive: - $ref: '#/components/schemas/microsoft.graph.drive' - drives: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.drive' - description: The collection of drives (document libraries) under this site. - externalColumns: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site. - items: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.baseItem' - description: Used to address any item contained in this site. This collection cannot be enumerated. - lists: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.list' - description: The collection of lists under this site. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' - description: The collection of long running operations for the site. - pages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.sitePage' - description: The collection of pages in the SitePages list in this site. - permissions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.permission' - description: The permissions associated with the site. Nullable. - sites: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.site' - description: The collection of the sub-sites under this site. - termStore: - $ref: '#/components/schemas/microsoft.graph.termStore.store' - onenote: - $ref: '#/components/schemas/microsoft.graph.onenote' + description: 'The state of the assignment. The value can be Eligible for eligible assignment or Active if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.' + endDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'For a non-permanent role assignment, this is the time when the role assignment will be expired. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + externalId: + type: string + description: The external ID the resource that is used to identify the role assignment in the provider. + nullable: true + linkedEligibleRoleAssignmentId: + type: string + description: 'If this is an active assignment and created due to activation on an eligible assignment, it represents the ID of that eligible assignment; Otherwise, the value is null.' + nullable: true + memberType: + type: string + description: 'The type of member. The value can be: Inherited (if the role assignment is inherited from a parent resource scope), Group (if the role assignment is not inherited, but comes from the membership of a group assignment), or User (if the role assignment is neither inherited nor from a group assignment).' + resourceId: + type: string + description: Required. The ID of the resource which the role assignment is associated with. + nullable: true + roleDefinitionId: + type: string + description: Required. The ID of the role definition which the role assignment is associated with. + nullable: true + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The start time of the role assignment. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + status: + type: string + subjectId: + type: string + description: Required. The ID of the subject which the role assignment is associated with. + nullable: true + linkedEligibleRoleAssignment: + $ref: '#/components/schemas/microsoft.graph.governanceRoleAssignment' + resource: + $ref: '#/components/schemas/microsoft.graph.governanceResource' + roleDefinition: + $ref: '#/components/schemas/microsoft.graph.governanceRoleDefinition' + subject: + $ref: '#/components/schemas/microsoft.graph.governanceSubject' additionalProperties: type: object - microsoft.graph.extension: + microsoft.graph.privilegedApproval: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: extension + - title: privilegedApproval type: object + properties: + approvalDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + format: duration + nullable: true + approvalState: + $ref: '#/components/schemas/microsoft.graph.approvalState' + approvalType: + type: string + nullable: true + approverReason: + type: string + nullable: true + endDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + requestorReason: + type: string + nullable: true + roleId: + type: string + nullable: true + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + userId: + type: string + nullable: true + request: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignmentRequest' + roleInfo: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' additionalProperties: type: object - microsoft.graph.groupLifecyclePolicy: + microsoft.graph.privilegedRoleAssignmentRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: groupLifecyclePolicy + - title: privilegedRoleAssignmentRequest type: object properties: - alternateNotificationEmails: + assignmentState: type: string - description: List of email address to send notifications for groups without owners. Multiple email address can be defined by separating email address with a semicolon. + description: 'The state of the assignment. The value can be Eligible for eligible assignment Active - if it is directly assigned Active by administrators, or activated on an eligible assignment by the users.' nullable: true - groupLifetimeInDays: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Number of days before a group expires and needs to be renewed. Once renewed, the group expiration is extended by the number of days defined.' - format: int32 + duration: + type: string + description: The duration of a role assignment. nullable: true - managedGroupTypes: + reason: type: string - description: 'The group type for which the expiration policy applies. Possible values are All, Selected or None.' + description: The reason for the role assignment. + nullable: true + requestedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Read-only. The request create time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + format: date-time + nullable: true + roleId: + type: string + description: The id of the role. + nullable: true + schedule: + $ref: '#/components/schemas/microsoft.graph.governanceSchedule' + status: + type: string + description: 'Read-only.The status of the role assignment request. The value can be NotStarted,Completed,RequestedApproval,Scheduled,Approved,ApprovalDenied,ApprovalAborted,Cancelling,Cancelled,Revoked,RequestExpired.' + nullable: true + ticketNumber: + type: string + description: The ticketNumber for the role assignment. + nullable: true + ticketSystem: + type: string + description: The ticketSystem for the role assignment. nullable: true + type: + type: string + description: 'Representing the type of the operation on the role assignment. The value can be AdminAdd: Administrators add users to roles;UserAdd: Users add role assignments.' + nullable: true + userId: + type: string + description: The id of the user. + nullable: true + roleInfo: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' additionalProperties: type: object - microsoft.graph.plannerGroup: + microsoft.graph.privilegedRole: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: plannerGroup + - title: privilegedRole type: object properties: - plans: + name: + type: string + description: Role name. + nullable: true + assignments: type: array items: - $ref: '#/components/schemas/microsoft.graph.plannerPlan' - description: Read-only. Nullable. Returns the plannerPlans owned by the group. + $ref: '#/components/schemas/microsoft.graph.privilegedRoleAssignment' + description: The assignments for this role. Read-only. Nullable. + settings: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSettings' + summary: + $ref: '#/components/schemas/microsoft.graph.privilegedRoleSummary' additionalProperties: type: object - microsoft.graph.onenote: + microsoft.graph.privilegedRoleAssignment: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: onenote + - title: privilegedRoleAssignment type: object properties: - notebooks: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.notebook' - description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' - pages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.onenotePage' - description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. - resources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.onenoteResource' - description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' - sectionGroups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' - description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. - sections: + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The UTC DateTime when the temporary privileged role assignment will be expired. For permanent role assignment, the value is null.' + format: date-time + nullable: true + isElevated: + type: boolean + description: true if the role assignment is activated. false if the role assignment is deactivated. + nullable: true + resultMessage: + type: string + description: Result message set by the service. + nullable: true + roleId: + type: string + description: Role identifier. In GUID string format. + userId: + type: string + description: User identifier. In GUID string format. + roleInfo: + $ref: '#/components/schemas/microsoft.graph.privilegedRole' + additionalProperties: + type: object + microsoft.graph.privilegedRoleSettings: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: privilegedRoleSettings + type: object + properties: + approvalOnElevation: + type: boolean + description: true if the approval is required when activate the role. false if the approval is not required when activate the role. + nullable: true + approverIds: type: array items: - $ref: '#/components/schemas/microsoft.graph.onenoteSection' - description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. + type: string + nullable: true + description: 'List of Approval ids, if approval is required for activation.' + elevationDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + description: The duration when the role is activated. + format: duration + nullable: true + isMfaOnElevationConfigurable: + type: boolean + description: true if mfaOnElevation is configurable. false if mfaOnElevation is not configurable. + nullable: true + lastGlobalAdmin: + type: boolean + description: Internal used only. + nullable: true + maxElavationDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + description: Maximal duration for the activated role. + format: duration + nullable: true + mfaOnElevation: + type: boolean + description: true if MFA is required to activate the role. false if MFA is not required to activate the role. + nullable: true + minElevationDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + description: Minimal duration for the activated role. + format: duration + nullable: true + notificationToUserOnElevation: + type: boolean + description: true if send notification to the end user when the role is activated. false if do not send notification when the role is activated. + nullable: true + ticketingInfoOnElevation: + type: boolean + description: true if the ticketing information is required when activate the role. false if the ticketing information is not required when activate the role. + nullable: true additionalProperties: type: object - microsoft.graph.profilePhoto: + microsoft.graph.privilegedRoleSummary: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: profilePhoto + - title: privilegedRoleSummary type: object properties: - height: + elevatedCount: maximum: 2147483647 minimum: -2147483648 type: integer - description: The height of the photo. Read-only. + description: The number of users that have the role assigned and the role is activated. format: int32 nullable: true - width: + managedCount: maximum: 2147483647 minimum: -2147483648 type: integer - description: The width of the photo. Read-only. + description: The number of users that have the role assigned but the role is deactivated. + format: int32 + nullable: true + mfaEnabled: + type: boolean + description: true if the role activation requires MFA. false if the role activation doesn't require MFA. + nullable: true + status: + $ref: '#/components/schemas/microsoft.graph.roleSummaryStatus' + usersCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of users that are assigned with the role. format: int32 nullable: true additionalProperties: type: object - microsoft.graph.team: + microsoft.graph.privilegedOperationEvent: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: team + - title: privilegedOperationEvent type: object properties: - classification: + additionalInformation: type: string - description: An optional label. Typically describes the data or business sensitivity of the team. Must match one of a pre-configured set in the tenant's directory. + description: Detailed human readable information for the event. nullable: true - createdDateTime: + creationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Timestamp at which the team was created. + description: Indicates the time when the event is created. format: date-time nullable: true - description: + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'An optional description for the team. Maximum length: 1024 characters.' + description: 'This is only used when the requestType is Activate, and it indicates the expiration time for the role activation.' + format: date-time nullable: true - discoverySettings: - $ref: '#/components/schemas/microsoft.graph.teamDiscoverySettings' - displayName: + referenceKey: type: string - description: The name of the team. + description: Incident/Request ticket number during role activation. The value is presented only if the ticket number is provided during role activation. nullable: true - funSettings: - $ref: '#/components/schemas/microsoft.graph.teamFunSettings' - guestSettings: - $ref: '#/components/schemas/microsoft.graph.teamGuestSettings' - internalId: + referenceSystem: type: string - description: A unique ID for the team that has been used in a few places such as the audit log/Office 365 Management Activity API. + description: Incident/Request ticketing system provided during tole activation. The value is presented only if the ticket system is provided during role activation. nullable: true - isArchived: - type: boolean - description: Whether this team is in read-only mode. + requestorId: + type: string + description: The user id of the requestor who initiates the operation. nullable: true - isMembershipLimitedToOwners: - type: boolean - description: 'If set to true, the team is currently in the owner-only team membership state and not accessible by other team members, such as students.' + requestorName: + type: string + description: The user name of the requestor who initiates the operation. + nullable: true + requestType: + type: string + description: 'The request operation type. The requestType value can be: Assign (role assignment), Activate (role activation), Unassign (remove role assignment), Deactivate (role deactivation), ScanAlertsNow (scan security alerts), DismissAlert (dismiss security alert), FixAlertItem (fix a security alert issue), AccessReview_Review (review an Access Review), AccessReview_Create (create an Access Review) , AccessReview_Update (update an Access Review), AccessReview_Delete (delete an Access Review).' + nullable: true + roleId: + type: string + description: The id of the role that is associated with the operation. + nullable: true + roleName: + type: string + description: The name of the role. nullable: true - memberSettings: - $ref: '#/components/schemas/microsoft.graph.teamMemberSettings' - messagingSettings: - $ref: '#/components/schemas/microsoft.graph.teamMessagingSettings' - specialization: - $ref: '#/components/schemas/microsoft.graph.teamSpecialization' - summary: - $ref: '#/components/schemas/microsoft.graph.teamSummary' tenantId: type: string - description: The ID of the Azure Active Directory tenant. + description: The tenant (organization) id. nullable: true - visibility: - $ref: '#/components/schemas/microsoft.graph.teamVisibilityType' - webUrl: + userId: type: string - description: 'A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.' + description: The id of the user that is associated with the operation. nullable: true - allChannels: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.channel' - description: List of channels either hosted in or shared with the team (incoming channels). - channels: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.channel' - description: The collection of channels and messages associated with the team. - group: - $ref: '#/components/schemas/microsoft.graph.group' - incomingChannels: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.channel' - description: List of channels shared with the team. - installedApps: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' - description: The apps installed in this team. - members: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.conversationMember' - description: Members and owners of the team. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' - description: The async operations that ran or are running on this team. - owners: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.user' - description: 'The list of this team''s owners. Currently, when creating a team using application permissions, exactly one owner must be specified. When using user delegated permissions, no owner can be specified (the current user is the owner). Owner must be specified as an object ID (GUID), not a UPN.' - permissionGrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' - description: A collection of permissions granted to apps to access the team. - photo: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - primaryChannel: - $ref: '#/components/schemas/microsoft.graph.channel' - tags: + userMail: + type: string + description: The user's email. + nullable: true + userName: + type: string + description: The user's display name. + nullable: true + additionalProperties: + type: object + microsoft.graph.programControl: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: programControl + type: object + properties: + controlId: + type: string + description: 'The controlId of the control, in particular the identifier of an access review. Required on create.' + controlTypeId: + type: string + description: 'The programControlType identifies the type of program control - for example, a control linking to guest access reviews. Required on create.' + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The creation date and time of the program control. + format: date-time + displayName: + type: string + description: The name of the control. + nullable: true + owner: + $ref: '#/components/schemas/microsoft.graph.userIdentity' + programId: + type: string + description: The programId of the program this control is a part of. Required on create. + resource: + $ref: '#/components/schemas/microsoft.graph.programResource' + status: + type: string + description: The life cycle status of the control. + nullable: true + program: + $ref: '#/components/schemas/microsoft.graph.program' + additionalProperties: + type: object + microsoft.graph.program: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: program + type: object + properties: + description: + type: string + description: The description of the program. + displayName: + type: string + description: The name of the program. Required on create. + controls: type: array items: - $ref: '#/components/schemas/microsoft.graph.teamworkTag' - description: The tags associated with the team. - template: - $ref: '#/components/schemas/microsoft.graph.teamsTemplate' - schedule: - $ref: '#/components/schemas/microsoft.graph.schedule' + $ref: '#/components/schemas/microsoft.graph.programControl' + description: Controls associated with the program. additionalProperties: type: object - microsoft.graph.customExtensionAuthenticationConfiguration: - title: customExtensionAuthenticationConfiguration - type: object - additionalProperties: - type: object - microsoft.graph.customExtensionClientConfiguration: - title: customExtensionClientConfiguration - type: object - properties: - timeoutInMilliseconds: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The max duration in milliseconds that Azure AD will wait for a response from the logic app before it shuts down the connection. The valid range is between 200 and 2000 milliseconds. Default duration is 1000. - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.customExtensionEndpointConfiguration: - title: customExtensionEndpointConfiguration - type: object - additionalProperties: - type: object - microsoft.graph.accessPackageCustomExtensionHandlerStatus: - title: accessPackageCustomExtensionHandlerStatus - enum: - - requestSent - - requestReceived - - unknownFutureValue - type: string - microsoft.graph.expirationPattern: - title: expirationPattern + microsoft.graph.programControlType: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: programControlType + type: object + properties: + controlTypeGroupId: + type: string + nullable: true + displayName: + type: string + description: The name of the program control type + nullable: true + additionalProperties: + type: object + microsoft.graph.entity: + title: entity type: object properties: - duration: - pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' - type: string - description: 'The requestor''s desired duration of access represented in ISO 8601 format for durations. For example, PT3H refers to three hours. If specified in a request, endDateTime should not be present and the type property should be set to afterDuration.' - format: duration - nullable: true - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + id: type: string - description: 'Timestamp of date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' - format: date-time - nullable: true - type: - $ref: '#/components/schemas/microsoft.graph.expirationPatternType' - additionalProperties: - type: object - microsoft.graph.accessPackageResourceAttributeDestination: - title: accessPackageResourceAttributeDestination - type: object - additionalProperties: - type: object - microsoft.graph.accessPackageResourceAttributeSource: - title: accessPackageResourceAttributeSource - type: object additionalProperties: type: object - microsoft.graph.keyValue: - title: keyValue + microsoft.graph.userIdentity: + allOf: + - $ref: '#/components/schemas/microsoft.graph.identity' + - title: userIdentity + type: object + properties: + ipAddress: + type: string + description: Indicates the client IP address used by user performing the activity (audit log only). + nullable: true + userPrincipalName: + type: string + description: The userPrincipalName attribute of the user. + nullable: true + additionalProperties: + type: object + microsoft.graph.identity: + title: identity type: object properties: - key: - type: string - description: 'Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.' - nullable: true - value: + displayName: type: string - description: Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false. + description: The display name of the identity. This property is read-only. nullable: true - additionalProperties: - type: object - microsoft.graph.ODataErrors.MainError: - required: - - code - - message - type: object - properties: - code: - type: string - message: - type: string - target: + id: type: string + description: The identifier of the identity. This property is read-only. nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.ODataErrors.ErrorDetails' - innererror: - $ref: '#/components/schemas/microsoft.graph.ODataErrors.InnerError' additionalProperties: type: object - microsoft.graph.recurrencePattern: - title: recurrencePattern + microsoft.graph.accessReviewSettings: + title: accessReviewSettings type: object properties: - dayOfMonth: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The day of the month on which the event occurs. Required if type is absoluteMonthly or absoluteYearly. - format: int32 - daysOfWeek: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.dayOfWeek' - description: 'A collection of the days of the week on which the event occurs. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly.' - firstDayOfWeek: - $ref: '#/components/schemas/microsoft.graph.dayOfWeek' - index: - $ref: '#/components/schemas/microsoft.graph.weekIndex' - interval: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'The number of units between occurrences, where units can be in days, weeks, months, or years, depending on the type. Required.' - format: int32 - month: + accessRecommendationsEnabled: + type: boolean + description: Indicates whether showing recommendations to reviewers is enabled. + activityDurationInDays: maximum: 2147483647 minimum: -2147483648 type: integer - description: The month in which the event occurs. This is a number from 1 to 12. + description: The number of days of user activities to show to reviewers. format: int32 - type: - $ref: '#/components/schemas/microsoft.graph.recurrencePatternType' + autoApplyReviewResultsEnabled: + type: boolean + description: 'Indicates whether the auto-apply capability, to automatically change the target object access resource, is enabled. If not enabled, a user must, after the review completes, apply the access review.' + autoReviewEnabled: + type: boolean + description: 'Indicates whether a decision should be set if the reviewer did not supply one. For use when auto-apply is enabled. If you don''t want to have a review decision recorded unless the reviewer makes an explicit choice, set it to false.' + autoReviewSettings: + $ref: '#/components/schemas/microsoft.graph.autoReviewSettings' + justificationRequiredOnApproval: + type: boolean + description: Indicates whether reviewers are required to provide a justification when reviewing access. + mailNotificationsEnabled: + type: boolean + description: Indicates whether sending mails to reviewers and the review creator is enabled. + recurrenceSettings: + $ref: '#/components/schemas/microsoft.graph.accessReviewRecurrenceSettings' + remindersEnabled: + type: boolean + description: Indicates whether sending reminder emails to reviewers is enabled. additionalProperties: type: object - microsoft.graph.recurrenceRange: - title: recurrenceRange + microsoft.graph.termsExpiration: + title: termsExpiration type: object properties: - endDate: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' - type: string - description: 'The date to stop applying the recurrence pattern. Depending on the recurrence pattern of the event, the last occurrence of the meeting may not be this date. Required if type is endDate.' - format: date - nullable: true - numberOfOccurrences: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of times to repeat the event. Required and must be positive if type is numbered. - format: int32 - recurrenceTimeZone: + frequency: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: 'Time zone for the startDate and endDate properties. Optional. If not specified, the time zone of the event is used.' + description: 'Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month.' + format: duration nullable: true - startDate: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date to start applying the recurrence pattern. The first occurrence of the meeting may be this date or later, depending on the recurrence pattern of the event. Must be the same value as the start property of the recurring event. Required.' - format: date + description: 'The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + format: date-time nullable: true - type: - $ref: '#/components/schemas/microsoft.graph.recurrenceRangeType' additionalProperties: type: object - microsoft.graph.accessPackageLocalizedText: - title: accessPackageLocalizedText + microsoft.graph.agreementAcceptanceState: + title: agreementAcceptanceState + enum: + - accepted + - declined + - unknownFutureValue + type: string + microsoft.graph.agreementFileProperties: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: agreementFileProperties + type: object + properties: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date time representing when the file was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + format: date-time + nullable: true + displayName: + type: string + description: Localized display name of the policy file of an agreement. The localized display name is shown to end users who view the agreement. + nullable: true + fileData: + $ref: '#/components/schemas/microsoft.graph.agreementFileData' + fileName: + type: string + description: 'Name of the agreement file (for example, TOU.pdf). Read-only.' + nullable: true + isDefault: + type: boolean + description: 'If none of the languages matches the client preference, indicates whether this is the default agreement file . If none of the files are marked as default, the first one is treated as the default. Read-only.' + nullable: true + isMajorVersion: + type: boolean + description: Indicates whether the agreement file is a major version update. Major version updates invalidate the agreement's acceptances on the corresponding language. + nullable: true + language: + type: string + description: 'The language of the agreement file in the format ''languagecode2-country/regioncode2''. ''languagecode2'' is a lowercase two-letter code derived from ISO 639-1, while ''country/regioncode2'' is derived from ISO 3166 and usually consists of two uppercase letters, or a BCP-47 language tag. For example, U.S. English is en-US. Read-only.' + nullable: true + additionalProperties: + type: object + microsoft.graph.decisionItemPrincipalResourceMembership: + title: decisionItemPrincipalResourceMembership type: object properties: - languageCode: - type: string - description: The ISO code for the intended language. Required. - nullable: true - text: - type: string - description: The text in the specific language. Required. - nullable: true + membershipType: + $ref: '#/components/schemas/microsoft.graph.decisionItemPrincipalResourceMembershipType' additionalProperties: type: object - microsoft.graph.writebackConfiguration: - title: writebackConfiguration + microsoft.graph.accessReviewInstanceDecisionItemResource: + title: accessReviewInstanceDecisionItemResource type: object properties: - isEnabled: - type: boolean - description: Indicates whether writeback of cloud groups to on-premise Active Directory is enabled. Default value is true for Microsoft 365 groups and false for security groups. + displayName: + type: string + description: Display name of the resource nullable: true - additionalProperties: - type: object - microsoft.graph.MembershipRuleProcessingStatusDetails: - title: MembershipRuleProcessingStatusDetails - enum: - - NotStarted - - Running - - Failed - - Succeeded - - UnsupportedFutureValue - type: string - microsoft.graph.settingValue: - title: settingValue - type: object - properties: - name: + id: type: string - description: Name of the setting (as defined by the directorySettingTemplate). + description: Resource ID nullable: true - value: + type: type: string - description: Value of the setting. + description: 'Type of resource. Types include: Group, ServicePrincipal, DirectoryRole, AzureRole, AccessPackageAssignmentPolicy.' nullable: true additionalProperties: type: object - microsoft.graph.onlineMeetingProviderType: - title: onlineMeetingProviderType - enum: - - unknown - - skypeForBusiness - - skypeForConsumer - - teamsForBusiness - type: string - microsoft.graph.calendarColor: - title: calendarColor - enum: - - auto - - lightBlue - - lightGreen - - lightOrange - - lightGray - - lightYellow - - lightTeal - - lightPink - - lightBrown - - lightRed - - maxColor - type: string - microsoft.graph.emailAddress: - title: emailAddress + microsoft.graph.accessReviewInstanceDecisionItemTarget: + title: accessReviewInstanceDecisionItemTarget type: object - properties: - address: - type: string - description: The email address of an entity instance. - nullable: true - name: - type: string - description: The display name of an entity instance. - nullable: true additionalProperties: type: object - microsoft.graph.calendarPermission: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: calendarPermission - type: object - properties: - allowedRoles: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.calendarRoleType' - description: 'List of allowed sharing or delegating permission levels for the calendar. Possible values are: none, freeBusyRead, limitedRead, read, write, delegateWithoutPrivateEventAccess, delegateWithPrivateEventAccess, custom.' - emailAddress: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - isInsideOrganization: - type: boolean - description: True if the user in context (sharee or delegate) is inside the same organization as the calendar owner. - nullable: true - isRemovable: - type: boolean - description: 'True if the user can be removed from the list of sharees or delegates for the specified calendar, false otherwise. The ''My organization'' user determines the permissions other people within your organization have to the given calendar. You cannot remove ''My organization'' as a sharee to a calendar.' - nullable: true - role: - $ref: '#/components/schemas/microsoft.graph.calendarRoleType' - additionalProperties: - type: object - microsoft.graph.multiValueLegacyExtendedProperty: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: multiValueLegacyExtendedProperty - type: object - properties: - value: - type: array - items: - type: string - nullable: true - description: A collection of property values. - additionalProperties: - type: object - microsoft.graph.singleValueLegacyExtendedProperty: + microsoft.graph.accessReviewError: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: singleValueLegacyExtendedProperty + - $ref: '#/components/schemas/microsoft.graph.genericError' + - title: accessReviewError type: object - properties: - value: - type: string - description: A property value. - nullable: true additionalProperties: type: object - microsoft.graph.outlookItem: + microsoft.graph.accessReviewReviewerScope: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: outlookItem + - $ref: '#/components/schemas/microsoft.graph.accessReviewScope' + - title: accessReviewReviewerScope type: object properties: - categories: - type: array - items: - type: string - nullable: true - description: The categories associated with the item - changeKey: + query: type: string - description: 'Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' + description: The query specifying who will be the reviewer. nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + queryRoot: type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time + description: 'In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query, for example, ./manager, is specified. Possible value: decisions.' nullable: true - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + queryType: type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time + description: The type of query. Examples include MicrosoftGraph and ARM. nullable: true additionalProperties: type: object - microsoft.graph.attendee: - allOf: - - $ref: '#/components/schemas/microsoft.graph.attendeeBase' - - title: attendee - type: object - properties: - proposedNewTime: - $ref: '#/components/schemas/microsoft.graph.timeSlot' - status: - $ref: '#/components/schemas/microsoft.graph.responseStatus' - additionalProperties: - type: object - microsoft.graph.itemBody: - title: itemBody + microsoft.graph.accessReviewScope: + title: accessReviewScope type: object - properties: - content: - type: string - description: The content of the item. - nullable: true - contentType: - $ref: '#/components/schemas/microsoft.graph.bodyType' additionalProperties: type: object - microsoft.graph.dateTimeTimeZone: - title: dateTimeTimeZone + microsoft.graph.accessReviewNotificationRecipientItem: + title: accessReviewNotificationRecipientItem type: object properties: - dateTime: - type: string - description: 'A single point of time in a combined date and time representation ({date}T{time}). For example, ''2019-04-16T09:00:00''.' - timeZone: + notificationRecipientScope: + $ref: '#/components/schemas/microsoft.graph.accessReviewNotificationRecipientScope' + notificationTemplateType: type: string - description: 'Represents a time zone, for example, ''Pacific Standard Time''. See below for possible values.' + description: Indicates the type of access review email to be sent. Supported template type is CompletedAdditionalRecipients which sends review completion notifications to the recipients. nullable: true additionalProperties: type: object - microsoft.graph.importance: - title: importance - enum: - - low - - normal - - high - type: string - microsoft.graph.location: - title: location + microsoft.graph.accessReviewScheduleSettings: + title: accessReviewScheduleSettings type: object properties: - address: - $ref: '#/components/schemas/microsoft.graph.physicalAddress' - coordinates: - $ref: '#/components/schemas/microsoft.graph.outlookGeoCoordinates' - displayName: - type: string - description: The name associated with the location. - nullable: true - locationEmailAddress: - type: string - description: Optional email address of the location. + applyActions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewApplyAction' + description: 'Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction.' + autoApplyDecisionsEnabled: + type: boolean + description: 'Indicates whether decisions are automatically applied. When set to false, an admin must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.' + decisionHistoriesForReviewersEnabled: + type: boolean + description: 'Indicates whether decisions on previous access review stages are available for reviewers on an accessReviewInstance with multiple subsequent stages. If not provided, the default is disabled (false).' nullable: true - locationType: - $ref: '#/components/schemas/microsoft.graph.locationType' - locationUri: + defaultDecision: type: string - description: Optional URI representing the location. + description: 'Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.' nullable: true - uniqueId: + defaultDecisionEnabled: + type: boolean + description: Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. + instanceDurationInDays: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Duration of each recurrence of review (accessReviewInstance) in number of days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its durationInDays setting will be used instead of the value of this property.' + format: int32 + justificationRequiredOnApproval: + type: boolean + description: Indicates whether reviewers are required to provide justification with their decision. Default value is false. + mailNotificationsEnabled: + type: boolean + description: Indicates whether emails are enabled or disabled. Default value is false. + recommendationInsightSettings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewRecommendationInsightSetting' + description: 'Optional. Describes the types of insights that aid reviewers to make access review decisions. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationInsightSettings setting will be used instead of the value of this property.' + recommendationLookBackDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: For internal use only. + description: 'Optional field. Indicates the period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look-back duration. For reviews of groups and Azure AD roles, any duration is accepted. For reviews of applications, 30 days is the maximum duration. If not specified, the duration is 30 days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationLookBackDuration setting will be used instead of the value of this property.' + format: duration nullable: true - uniqueIdType: - $ref: '#/components/schemas/microsoft.graph.locationUniqueIdType' + recommendationsEnabled: + type: boolean + description: 'Indicates whether decision recommendations are enabled or disabled. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationsEnabled setting will be used instead of the value of this property.' + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderNotificationsEnabled: + type: boolean + description: Indicates whether reminders are enabled or disabled. Default value is false. additionalProperties: type: object - microsoft.graph.onlineMeetingInfo: - title: onlineMeetingInfo + microsoft.graph.accessReviewStageSettings: + title: accessReviewStageSettings type: object properties: - conferenceId: - type: string - description: The ID of the conference. - nullable: true - joinUrl: - type: string - description: The external link that launches the online meeting. This is a URL that clients will launch into a browser and will redirect the user to join the meeting. - nullable: true - phones: + decisionsThatWillMoveToNextStage: + type: array + items: + type: string + nullable: true + description: 'Indicate which decisions will go to the next stage. Can be a sub-set of Approve, Deny, Recommendation, or NotReviewed. If not provided, all decisions will go to the next stage. Optional.' + dependsOn: + type: array + items: + type: string + description: 'Defines the sequential or parallel order of the stages and depends on the stageId. Only sequential stages are currently supported. For example, if stageId is 2, then dependsOn must be 1. If stageId is 1, do not specify dependsOn. Required if stageId is not 1.' + durationInDays: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'The duration of the stage. Required. NOTE: The cumulative value of this property across all stages 1. Will override the instanceDurationInDays setting on the accessReviewScheduleDefinition object. 2. Cannot exceed the length of one recurrence. That is, if the review recurs weekly, the cumulative durationInDays cannot exceed 7.' + format: int32 + fallbackReviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'If provided, the fallback reviewers are asked to complete a review if the primary reviewers do not exist. For example, if managers are selected as reviewers and a principal under review does not have a manager in Azure AD, the fallback reviewers are asked to review that principal. NOTE: The value of this property will override the corresponding setting on the accessReviewScheduleDefinition object.' + recommendationInsightSettings: type: array items: - $ref: '#/components/schemas/microsoft.graph.phone' - description: All of the phone numbers associated with this conference. - quickDial: + $ref: '#/components/schemas/microsoft.graph.accessReviewRecommendationInsightSetting' + recommendationLookBackDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string - description: The pre-formatted quickdial for this call. + description: 'Optional field. Indicates the time period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look back duration. For reviews of groups and Azure AD roles, any duration is accepted. For reviews of applications, 30 days is the maximum duration. If not specified, the duration is 30 days. NOTE: The value of this property will override the corresponding setting on the accessReviewScheduleDefinition object.' + format: duration nullable: true - tollFreeNumbers: + recommendationsEnabled: + type: boolean + description: 'Indicates whether showing recommendations to reviewers is enabled. Required. NOTE: The value of this property will override override the corresponding setting on the accessReviewScheduleDefinition object.' + reviewers: type: array items: - type: string - nullable: true - description: The toll free numbers that can be used to join the conference. - tollNumber: + $ref: '#/components/schemas/microsoft.graph.accessReviewReviewerScope' + description: 'Defines who the reviewers are. If none are specified, the review is a self-review (users review their own access). For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API. NOTE: The value of this property will override the corresponding setting on the accessReviewScheduleDefinition.' + stageId: type: string - description: The toll number that can be used to join the conference. - nullable: true + description: Unique identifier of the accessReviewStageSettings. The stageId will be used in dependsOn property to indicate the stage relationship. Required. additionalProperties: type: object - microsoft.graph.recipient: - title: recipient + microsoft.graph.accessReviewHistoryDecisionFilter: + title: accessReviewHistoryDecisionFilter + enum: + - approve + - deny + - notReviewed + - dontKnow + - notNotified + - unknownFutureValue + type: string + microsoft.graph.accessReviewHistoryScheduleSettings: + title: accessReviewHistoryScheduleSettings type: object properties: - emailAddress: - $ref: '#/components/schemas/microsoft.graph.emailAddress' + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reportRange: + type: string + description: 'A duration string in ISO 8601 duration format specifying the lookback period of the generated review history data. For example, if a history definition is scheduled to run on the 1st of every month, the reportRange is P1M. In this case, on the first of every month, access review history data will be collected containing only the previous month''s review data. Note: Only years, months, and days ISO 8601 properties are supported. Required.' additionalProperties: type: object - microsoft.graph.responseStatus: - title: responseStatus + microsoft.graph.accessReviewHistoryStatus: + title: accessReviewHistoryStatus + enum: + - done + - inprogress + - error + - requested + - unknownFutureValue + type: string + microsoft.graph.appConsentRequestScope: + title: appConsentRequestScope type: object properties: - response: - $ref: '#/components/schemas/microsoft.graph.responseType' - time: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + displayName: type: string - description: 'The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time + description: The name of the scope. nullable: true additionalProperties: type: object - microsoft.graph.sensitivity: - title: sensitivity - enum: - - normal - - personal - - private - - confidential - type: string - microsoft.graph.freeBusyStatus: - title: freeBusyStatus - enum: - - unknown - - free - - tentative - - busy - - oof - - workingElsewhere - type: string - microsoft.graph.eventType: - title: eventType - enum: - - singleInstance - - occurrence - - exception - - seriesMaster - type: string - microsoft.graph.attachment: + microsoft.graph.request: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: attachment + - title: request type: object properties: - contentType: + approvalId: type: string - description: The MIME type. + description: The identifier of the approval of the request. nullable: true - isInline: - type: boolean - description: 'true if the attachment is an inline attachment; otherwise, false.' - lastModifiedDateTime: + completedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + description: The request completion date time. format: date-time nullable: true - name: - type: string - description: The display name of the attachment. This does not need to be the actual file name. - nullable: true - size: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The length of the attachment in bytes. - format: int32 - additionalProperties: - type: object - microsoft.graph.post: - allOf: - - $ref: '#/components/schemas/microsoft.graph.outlookItem' - - title: post - type: object - properties: - body: - $ref: '#/components/schemas/microsoft.graph.itemBody' - conversationId: - type: string - description: Unique ID of the conversation. Read-only. - nullable: true - conversationThreadId: - type: string - description: Unique ID of the conversation thread. Read-only. - nullable: true - from: - $ref: '#/components/schemas/microsoft.graph.recipient' - hasAttachments: - type: boolean - description: Indicates whether the post has at least one attachment. This is a default property. - importance: - $ref: '#/components/schemas/microsoft.graph.importance' - newParticipants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.recipient' - description: Conversation participants that were added to the thread as part of this post. - receivedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'Specifies when the post was received. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' - format: date-time - sender: - $ref: '#/components/schemas/microsoft.graph.recipient' - attachments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.attachment' - description: 'The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. Supports $expand.' - extensions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.extension' - description: The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. - inReplyTo: - $ref: '#/components/schemas/microsoft.graph.post' - mentions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.mention' - multiValueExtendedProperties: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' - description: The collection of multi-value extended properties defined for the post. Read-only. Nullable. - singleValueExtendedProperties: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' - description: The collection of single-value extended properties defined for the post. Read-only. Nullable. - additionalProperties: - type: object - microsoft.graph.baseItem: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: baseItem - type: object - properties: createdBy: $ref: '#/components/schemas/microsoft.graph.identitySet' createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Date and time of item creation. Read-only. + description: The request creation date time. format: date-time - description: - type: string - description: Provides a user-visible description of the item. Optional. - nullable: true - eTag: - type: string - description: ETag for the item. Read-only. nullable: true - lastModifiedBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Date and time the item was last modified. Read-only. - format: date-time - name: + customData: type: string - description: The name of the item. Read-write. + description: Free text field to define any custom data for the request. Not used. nullable: true - parentReference: - $ref: '#/components/schemas/microsoft.graph.itemReference' - webUrl: + status: type: string - description: URL that displays the resource in the browser. Read-only. - nullable: true - createdByUser: - $ref: '#/components/schemas/microsoft.graph.user' - lastModifiedByUser: - $ref: '#/components/schemas/microsoft.graph.user' + description: 'The status of the request. Not nullable. The possible values are: Canceled, Denied, Failed, Granted, PendingAdminDecision, PendingApproval, PendingProvisioning, PendingScheduleCreation, Provisioned, Revoked, and ScheduleCreated. Not nullable.' additionalProperties: type: object - microsoft.graph.quota: - title: quota + microsoft.graph.assignmentReviewSettings: + title: assignmentReviewSettings type: object properties: - deleted: - type: integer - description: 'Total space consumed by files in the recycle bin, in bytes. Read-only.' - format: int64 - nullable: true - remaining: - type: integer - description: 'Total space remaining before reaching the quota limit, in bytes. Read-only.' - format: int64 - nullable: true - state: - type: string - description: Enumeration value that indicates the state of the storage space. Read-only. - nullable: true - storagePlanInformation: - $ref: '#/components/schemas/microsoft.graph.storagePlanInformation' - total: - type: integer - description: 'Total allowed storage space, in bytes. Read-only.' - format: int64 - nullable: true - used: + accessReviewTimeoutBehavior: + $ref: '#/components/schemas/microsoft.graph.accessReviewTimeoutBehavior' + durationInDays: + maximum: 2147483647 + minimum: -2147483648 type: integer - description: 'Total space used, in bytes. Read-only.' - format: int64 - nullable: true - additionalProperties: - type: object - microsoft.graph.sharepointIds: - title: sharepointIds - type: object - properties: - listId: - type: string - description: The unique identifier (guid) for the item's list in SharePoint. + description: The number of days within which reviewers should provide input. + format: int32 nullable: true - listItemId: - type: string - description: An integer identifier for the item within the containing list. + isAccessRecommendationEnabled: + type: boolean + description: Specifies whether to display recommendations to the reviewer. The default value is true nullable: true - listItemUniqueId: - type: string - description: The unique identifier (guid) for the item within OneDrive for Business or a SharePoint site. + isApprovalJustificationRequired: + type: boolean + description: Specifies whether the reviewer must provide justification for the approval. The default value is true. nullable: true - siteId: - type: string - description: The unique identifier (guid) for the item's site collection (SPSite). + isEnabled: + type: boolean + description: 'If true, access reviews are required for assignments from this policy.' nullable: true - siteUrl: + recurrenceType: type: string - description: The SharePoint URL for the site that contains the item. + description: 'The interval for recurrence, such as monthly or quarterly.' nullable: true - tenantId: + reviewers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userSet' + description: 'If the reviewerType is Reviewers, this collection specifies the users who will be reviewers, either by ID or as members of a group, using a collection of singleUser and groupMembers.' + reviewerType: type: string - description: The unique identifier (guid) for the tenancy. + description: 'Who should be asked to do the review, either Self or Reviewers.' nullable: true - webId: + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The unique identifier (guid) for the item's site (SPWeb). + description: When the first review should start. + format: date-time nullable: true additionalProperties: type: object - microsoft.graph.systemFacet: - title: systemFacet - type: object - additionalProperties: - type: object - microsoft.graph.itemActivityOLD: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: itemActivityOLD - type: object - properties: - action: - $ref: '#/components/schemas/microsoft.graph.itemActionSet' - actor: - $ref: '#/components/schemas/microsoft.graph.identitySet' - times: - $ref: '#/components/schemas/microsoft.graph.itemActivityTimeSet' - driveItem: - $ref: '#/components/schemas/microsoft.graph.driveItem' - listItem: - $ref: '#/components/schemas/microsoft.graph.listItem' - additionalProperties: - type: object - microsoft.graph.driveItem: - allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItem' - - title: driveItem - type: object - properties: - audio: - $ref: '#/components/schemas/microsoft.graph.audio' - bundle: - $ref: '#/components/schemas/microsoft.graph.bundle' - content: - type: string - description: 'The content stream, if the item represents a file.' - format: base64url - nullable: true - cTag: - type: string - description: An eTag for the content of the item. This eTag is not changed if only the metadata is changed. Note This property is not returned if the item is a folder. Read-only. - nullable: true - deleted: - $ref: '#/components/schemas/microsoft.graph.deleted' - file: - $ref: '#/components/schemas/microsoft.graph.file' - fileSystemInfo: - $ref: '#/components/schemas/microsoft.graph.fileSystemInfo' - folder: - $ref: '#/components/schemas/microsoft.graph.folder' - image: - $ref: '#/components/schemas/microsoft.graph.image' - location: - $ref: '#/components/schemas/microsoft.graph.geoCoordinates' - malware: - $ref: '#/components/schemas/microsoft.graph.malware' - media: - $ref: '#/components/schemas/microsoft.graph.media' - package: - $ref: '#/components/schemas/microsoft.graph.package' - pendingOperations: - $ref: '#/components/schemas/microsoft.graph.pendingOperations' - photo: - $ref: '#/components/schemas/microsoft.graph.photo' - publication: - $ref: '#/components/schemas/microsoft.graph.publicationFacet' - remoteItem: - $ref: '#/components/schemas/microsoft.graph.remoteItem' - root: - $ref: '#/components/schemas/microsoft.graph.root' - searchResult: - $ref: '#/components/schemas/microsoft.graph.searchResult' - shared: - $ref: '#/components/schemas/microsoft.graph.shared' - sharepointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - size: - type: integer - description: Size of the item in bytes. Read-only. - format: int64 - nullable: true - source: - $ref: '#/components/schemas/microsoft.graph.driveItemSource' - specialFolder: - $ref: '#/components/schemas/microsoft.graph.specialFolder' - video: - $ref: '#/components/schemas/microsoft.graph.video' - webDavUrl: - type: string - description: WebDAV compatible URL for the item. - nullable: true - workbook: - $ref: '#/components/schemas/microsoft.graph.workbook' - activities: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.itemActivityOLD' - description: The list of recent activities that took place on this item. - analytics: - $ref: '#/components/schemas/microsoft.graph.itemAnalytics' - children: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.driveItem' - description: Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. - listItem: - $ref: '#/components/schemas/microsoft.graph.listItem' - permissions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.permission' - description: The set of permissions for the item. Read-only. Nullable. - subscriptions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.subscription' - description: The set of subscriptions on the item. Only supported on the root of a drive. - thumbnails: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.thumbnailSet' - description: 'Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.' - versions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.driveItemVersion' - description: 'The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.' - additionalProperties: - type: object - microsoft.graph.list: - allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItem' - - title: list - type: object - properties: - displayName: - type: string - description: The displayable title of the list. - nullable: true - list: - $ref: '#/components/schemas/microsoft.graph.listInfo' - sharepointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - system: - $ref: '#/components/schemas/microsoft.graph.systemFacet' - activities: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.itemActivityOLD' - description: The recent activities that took place within this list. - columns: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of field definitions for this list. - contentTypes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types present in this list. - drive: - $ref: '#/components/schemas/microsoft.graph.drive' - items: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.listItem' - description: All items contained in the list. - operations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' - description: The collection of long running operations for the list. - subscriptions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.subscription' - description: The set of subscriptions on the list. - additionalProperties: - type: object - microsoft.graph.deleted: - title: deleted + microsoft.graph.accessPackageQuestion: + title: accessPackageQuestion type: object properties: - state: + id: type: string - description: Represents the state of the deleted item. + description: ID of the question. nullable: true + isAnswerEditable: + type: boolean + description: Specifies whether the requestor is allowed to edit answers to questions. + nullable: true + isRequired: + type: boolean + description: Whether the requestor is required to supply an answer or not. + nullable: true + sequence: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Relative position of this question when displaying a list of questions to the requestor. + format: int32 + nullable: true + text: + $ref: '#/components/schemas/microsoft.graph.accessPackageLocalizedContent' additionalProperties: type: object - microsoft.graph.root: - title: root - type: object - additionalProperties: - type: object - microsoft.graph.siteSettings: - title: siteSettings + microsoft.graph.approvalSettings: + title: approvalSettings type: object properties: - languageTag: + approvalMode: type: string - description: The language tag for the language used on this site. + description: 'One of SingleStage, Serial, Parallel, NoApproval (default). NoApproval is used when isApprovalRequired is false.' nullable: true - timeZone: - type: string - description: Indicates the time offset for the time zone of the site from Coordinated Universal Time (UTC). + approvalStages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.approvalStage' + description: 'If approval is required, the one or two elements of this collection define each of the stages of approval. An empty array if no approval is required.' + isApprovalRequired: + type: boolean + description: Indicates whether approval is required for requests in this policy. + nullable: true + isApprovalRequiredForExtension: + type: boolean + description: Indicates whether approval is required for a user to extend their assignment. + nullable: true + isRequestorJustificationRequired: + type: boolean + description: Indicates whether the requestor is required to supply a justification in their request. nullable: true additionalProperties: type: object - microsoft.graph.siteCollection: - title: siteCollection + microsoft.graph.requestorSettings: + title: requestorSettings type: object properties: - dataLocationCode: - type: string - description: The geographic region code for where this site collection resides. Read-only. + acceptRequests: + type: boolean + description: Indicates whether new requests are accepted on this policy. nullable: true - hostname: + allowedRequestors: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userSet' + description: 'The users who are allowed to request on this policy, which can be singleUser, groupMembers, and connectedOrganizationMembers.' + scopeType: type: string - description: The hostname for the site collection. Read-only. + description: 'Who can request. One of NoSubjects, SpecificDirectorySubjects, SpecificConnectedOrganizationSubjects, AllConfiguredConnectedOrganizationSubjects, AllExistingConnectedOrganizationSubjects, AllExistingDirectoryMemberUsers, AllExistingDirectorySubjects or AllExternalSubjects.' nullable: true - root: - $ref: '#/components/schemas/microsoft.graph.root' additionalProperties: type: object - microsoft.graph.itemAnalytics: + microsoft.graph.group: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: itemAnalytics + - $ref: '#/components/schemas/microsoft.graph.directoryObject' + - title: group type: object properties: - allTime: - $ref: '#/components/schemas/microsoft.graph.itemActivityStat' - itemActivityStats: + assignedLabels: type: array items: - $ref: '#/components/schemas/microsoft.graph.itemActivityStat' - lastSevenDays: - $ref: '#/components/schemas/microsoft.graph.itemActivityStat' - additionalProperties: - type: object - microsoft.graph.columnDefinition: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: columnDefinition - type: object - properties: - boolean: - $ref: '#/components/schemas/microsoft.graph.booleanColumn' - calculated: - $ref: '#/components/schemas/microsoft.graph.calculatedColumn' - choice: - $ref: '#/components/schemas/microsoft.graph.choiceColumn' - columnGroup: + $ref: '#/components/schemas/microsoft.graph.assignedLabel' + description: 'The list of sensitivity label pairs (label ID, label name) associated with a Microsoft 365 group. Returned only on $select.' + assignedLicenses: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.assignedLicense' + description: The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq). Read-only. + classification: type: string - description: 'For site columns, the name of the group this column belongs to. Helps organize related columns.' + description: 'Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith).' nullable: true - contentApprovalStatus: - $ref: '#/components/schemas/microsoft.graph.contentApprovalStatusColumn' - currency: - $ref: '#/components/schemas/microsoft.graph.currencyColumn' - dateTime: - $ref: '#/components/schemas/microsoft.graph.dateTimeColumn' - defaultValue: - $ref: '#/components/schemas/microsoft.graph.defaultColumnValue' - description: + createdByAppId: type: string - description: The user-facing description of the column. + description: 'App ID of the app used to create the group. Can be null for some groups. Returned by default. Read-only. Supports $filter (eq, ne, not, in, startsWith).' nullable: true - displayName: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: The user-facing name of the column. - nullable: true - enforceUniqueValues: - type: boolean - description: 'If true, no two list items may have the same value for this column.' - nullable: true - geolocation: - $ref: '#/components/schemas/microsoft.graph.geolocationColumn' - hidden: - type: boolean - description: Specifies whether the column is displayed in the user interface. - nullable: true - hyperlinkOrPicture: - $ref: '#/components/schemas/microsoft.graph.hyperlinkOrPictureColumn' - indexed: - type: boolean - description: Specifies whether the column values can used for sorting and searching. - nullable: true - isDeletable: - type: boolean - description: Indicates whether this column can be deleted. - nullable: true - isReorderable: - type: boolean - description: Indicates whether values in the column can be reordered. Read-only. - nullable: true - isSealed: - type: boolean - description: Specifies whether the column can be changed. + description: 'Timestamp of when the group was created. The value cannot be modified and is automatically populated when the group is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.' + format: date-time nullable: true - lookup: - $ref: '#/components/schemas/microsoft.graph.lookupColumn' - name: + description: type: string - description: 'The API-facing name of the column as it appears in the [fields][] on a [listItem][]. For the user-facing name, see displayName.' + description: 'An optional description for the group. Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith) and $search.' nullable: true - number: - $ref: '#/components/schemas/microsoft.graph.numberColumn' - personOrGroup: - $ref: '#/components/schemas/microsoft.graph.personOrGroupColumn' - propagateChanges: - type: boolean - description: 'If true, changes to this column will be propagated to lists that implement the column.' + displayName: + type: string + description: 'The display name for the group. Required. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderBy.' nullable: true - readOnly: - type: boolean - description: Specifies whether the column values can be modified. + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Timestamp of when the group is set to expire. The value cannot be modified and is automatically populated when the group is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.' + format: date-time nullable: true - required: + groupTypes: + type: array + items: + type: string + description: 'Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it''s either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, not).' + hasMembersWithLicenseErrors: type: boolean - description: Specifies whether the column value isn't optional. + description: 'Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq).' nullable: true - sourceContentType: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - term: - $ref: '#/components/schemas/microsoft.graph.termColumn' - text: - $ref: '#/components/schemas/microsoft.graph.textColumn' - thumbnail: - $ref: '#/components/schemas/microsoft.graph.thumbnailColumn' - type: - $ref: '#/components/schemas/microsoft.graph.columnTypes' - validation: - $ref: '#/components/schemas/microsoft.graph.columnValidation' - sourceColumn: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - additionalProperties: - type: object - microsoft.graph.contentType: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: contentType - type: object - properties: - associatedHubsUrls: + infoCatalogs: type: array items: type: string - nullable: true - description: List of canonical URLs for hub sites with which this content type is associated to. This will contain all hubsites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type will be applied to the lists in the enforced sites. - description: - type: string - description: The descriptive text for the item. - nullable: true - documentSet: - $ref: '#/components/schemas/microsoft.graph.documentSet' - documentTemplate: - $ref: '#/components/schemas/microsoft.graph.documentSetContent' - group: - type: string - description: The name of the group this content type belongs to. Helps organize related content types. - nullable: true - hidden: + description: 'Identifies the info segments assigned to the group. Returned by default. Supports $filter (eq, not, ge, le, startsWith).' + isAssignableToRole: type: boolean - description: Indicates whether the content type is hidden in the list's 'New' menu. + description: 'Indicates whether this group can be assigned to an Azure Active Directory role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, not).' nullable: true - inheritedFrom: - $ref: '#/components/schemas/microsoft.graph.itemReference' - isBuiltIn: + isManagementRestricted: type: boolean - description: Specifies if a content type is a built-in content type. - nullable: true - name: - type: string - description: The name of the content type. nullable: true - order: - $ref: '#/components/schemas/microsoft.graph.contentTypeOrder' - parentId: + licenseProcessingState: + $ref: '#/components/schemas/microsoft.graph.licenseProcessingState' + mail: type: string - description: The unique identifier of the content type. - nullable: true - propagateChanges: - type: boolean - description: 'If true, any changes made to the content type will be pushed to inherited content types and lists that implement the content type.' - nullable: true - readOnly: - type: boolean - description: 'If true, the content type cannot be modified unless this value is first set to false.' + description: 'The SMTP address for the group, for example, ''serviceadmins@contoso.onmicrosoft.com''. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' nullable: true - sealed: + mailEnabled: type: boolean - description: 'If true, the content type cannot be modified by users or through push-down operations. Only site collection administrators can seal or unseal content types.' - nullable: true - base: - $ref: '#/components/schemas/microsoft.graph.contentType' - baseTypes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.contentType' - description: The collection of content types that are ancestors of this content type. - columnLinks: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnLink' - description: The collection of columns that are required by this content type - columnPositions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: Column order information in a content type. - columns: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - description: The collection of column definitions for this contentType. - additionalProperties: - type: object - microsoft.graph.richLongRunningOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' - - title: richLongRunningOperation - type: object - properties: - error: - $ref: '#/components/schemas/microsoft.graph.publicError' - percentageComplete: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: A value between 0 and 100 that indicates the progress of the operation. - format: int32 + description: 'Specifies whether the group is mail-enabled. Required. Returned by default. Supports $filter (eq, ne, not, and eq on null values).' nullable: true - resourceId: + mailNickname: type: string - description: A unique identifier for the result. + description: 'The mail alias for the group, unique for Microsoft 365 groups in the organization. Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () / [] '' ; : . <> , SPACE. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith).' nullable: true - type: + membershipRule: type: string - description: Type of the operation. + description: 'The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith).' nullable: true - additionalProperties: - type: object - microsoft.graph.sitePage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItem' - - title: sitePage - type: object - properties: - contentType: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - pageLayoutType: + membershipRuleProcessingState: type: string + description: 'Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, not, in).' nullable: true - publishingState: - $ref: '#/components/schemas/microsoft.graph.publicationFacet' - title: + onPremisesDomainName: type: string + description: 'Contains the on-premises domain FQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Read-only.' nullable: true - webParts: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.webPart' - additionalProperties: - type: object - microsoft.graph.permission: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: permission - type: object - properties: - expirationDateTime: + onPremisesLastSyncDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: A format of yyyy-MM-ddTHH:mm:ssZ of DateTimeOffset indicates the expiration time of the permission. DateTime.MinValue indicates there is no expiration set for this permission. Optional. + description: 'Indicates the last time at which the group was synced with the on-premises directory.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in).' format: date-time nullable: true - grantedTo: - $ref: '#/components/schemas/microsoft.graph.identitySet' - grantedToIdentities: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.identitySet' - grantedToIdentitiesV2: + onPremisesNetBiosName: + type: string + description: Contains the on-premises netBios name synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Read-only. + nullable: true + onPremisesProvisioningErrors: type: array items: - $ref: '#/components/schemas/microsoft.graph.sharePointIdentitySet' - description: 'For link type permissions, the details of the users to whom permission was granted. Read-only.' - grantedToV2: - $ref: '#/components/schemas/microsoft.graph.sharePointIdentitySet' - hasPassword: + $ref: '#/components/schemas/microsoft.graph.onPremisesProvisioningError' + description: 'Errors when using Microsoft synchronization product during provisioning. Returned by default. Supports $filter (eq, not).' + onPremisesSamAccountName: + type: string + description: 'Contains the on-premises SAM account name synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith). Read-only.' + nullable: true + onPremisesSecurityIdentifier: + type: string + description: Contains the on-premises security identifier (SID) for the group that was synchronized from on-premises to the cloud. Returned by default. Supports $filter (eq including on null values). Read-only. + nullable: true + onPremisesSyncEnabled: type: boolean - description: Indicates whether the password is set for this permission. This property only appears in the response. Optional. Read-only. For OneDrive Personal only. + description: 'true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values).' nullable: true - inheritedFrom: - $ref: '#/components/schemas/microsoft.graph.itemReference' - invitation: - $ref: '#/components/schemas/microsoft.graph.sharingInvitation' - link: - $ref: '#/components/schemas/microsoft.graph.sharingLink' - roles: - type: array - items: - type: string - nullable: true - description: 'The type of permission, for example, read. See below for the full list of roles. Read-only.' - shareId: + organizationId: type: string - description: 'A unique token that can be used to access this shared item via the [shares API][]. Read-only.' nullable: true - additionalProperties: - type: object - microsoft.graph.termStore.store: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: store - type: object - properties: - defaultLanguageTag: + preferredDataLocation: type: string - description: Default language of the term store. - languageTags: + description: 'The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator''s preferred data location. To set this property, the calling user must be assigned one of the following Azure AD roles: Global Administrator User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default.' + nullable: true + preferredLanguage: + type: string + description: 'The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example en-US. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + nullable: true + proxyAddresses: type: array items: type: string - description: List of languages for the term store. - groups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.termStore.group' - description: Collection of all groups available in the term store. - sets: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.termStore.set' - description: Collection of all sets available in the term store. - additionalProperties: - type: object - microsoft.graph.plannerPlan: - allOf: - - $ref: '#/components/schemas/microsoft.graph.plannerDelta' - - title: plannerPlan - type: object - properties: - container: - $ref: '#/components/schemas/microsoft.graph.plannerPlanContainer' - contexts: - $ref: '#/components/schemas/microsoft.graph.plannerPlanContextCollection' - createdBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - createdDateTime: + description: 'Email addresses for the group that direct to the same group mailbox. For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. The any operator is required for filter expressions on multi-valued properties. Returned by default. Read-only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, and counting empty collections).' + renewedDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + description: 'Timestamp of when the group was last renewed. This cannot be modified directly and is only updated via the renew service action. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only.' format: date-time nullable: true - owner: - type: string - nullable: true - title: - type: string - description: Required. Title of the plan. - buckets: + resourceBehaviorOptions: type: array items: - $ref: '#/components/schemas/microsoft.graph.plannerBucket' - description: Collection of buckets in the plan. Read-only. Nullable. - details: - $ref: '#/components/schemas/microsoft.graph.plannerPlanDetails' - tasks: + type: string + description: 'Specifies the group behaviors that can be set for a Microsoft 365 group during creation. This can be set only as part of creation (POST). Possible values are AllowOnlyMembersToPost, HideGroupInOutlook, SubscribeNewGroupMembers, WelcomeEmailDisabled. For more information, see Set Microsoft 365 group behaviors and provisioning options.' + resourceProvisioningOptions: type: array items: - $ref: '#/components/schemas/microsoft.graph.plannerTask' - description: Collection of tasks in the plan. Read-only. Nullable. - additionalProperties: - type: object - microsoft.graph.notebook: - allOf: - - $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel' - - title: notebook - type: object - properties: - isDefault: - type: boolean - description: Indicates whether this is the user's default notebook. Read-only. - nullable: true - isShared: + type: string + description: 'Specifies the group resources that are provisioned as part of Microsoft 365 group creation, that are not normally part of default group creation. Possible value is Team. For more information, see Set Microsoft 365 group behaviors and provisioning options. Returned by default. Supports $filter (eq, not, startsWith.' + securityEnabled: type: boolean - description: 'Indicates whether the notebook is shared. If true, the contents of the notebook can be seen by people other than the owner. Read-only.' + description: 'Specifies whether the group is a security group. Required.Returned by default. Supports $filter (eq, ne, not, in).' nullable: true - links: - $ref: '#/components/schemas/microsoft.graph.notebookLinks' - sectionGroupsUrl: + securityIdentifier: type: string - description: 'The URL for the sectionGroups navigation property, which returns all the section groups in the notebook. Read-only.' + description: 'Security identifier of the group, used in Windows scenarios. Returned by default.' nullable: true - sectionsUrl: + theme: type: string - description: 'The URL for the sections navigation property, which returns all the sections in the notebook. Read-only.' + description: 'Specifies a Microsoft 365 group''s color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default.' nullable: true - userRole: - $ref: '#/components/schemas/microsoft.graph.onenoteUserRole' - sectionGroups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' - description: The section groups in the notebook. Read-only. Nullable. - sections: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.onenoteSection' - description: The sections in the notebook. Read-only. Nullable. - additionalProperties: - type: object - microsoft.graph.onenoteOperation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.operation' - - title: onenoteOperation - type: object - properties: - error: - $ref: '#/components/schemas/microsoft.graph.onenoteOperationError' - percentComplete: + visibility: type: string - description: The operation percent complete if the operation is still in running status. + description: 'Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or HiddenMembership. HiddenMembership can be set only for Microsoft 365 groups, when the groups are created. It can''t be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. Groups assignable to roles are always Private. See group visibility options to learn more. Returned by default. Nullable.' nullable: true - resourceId: - type: string - description: The resource id. + writebackConfiguration: + $ref: '#/components/schemas/microsoft.graph.groupWritebackConfiguration' + accessType: + $ref: '#/components/schemas/microsoft.graph.groupAccessType' + allowExternalSenders: + type: boolean + description: 'Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' nullable: true - resourceLocation: - type: string - description: 'The resource URI for the object. For example, the resource URI for a copied page or section.' + autoSubscribeNewMembers: + type: boolean + description: 'Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' nullable: true - additionalProperties: - type: object - microsoft.graph.onenotePage: - allOf: - - $ref: '#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel' - - title: onenotePage - type: object - properties: - content: - type: string - description: The page's HTML content. - format: base64url + hideFromAddressLists: + type: boolean + description: 'true if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' nullable: true - contentUrl: - type: string - description: The URL for the page's HTML content. Read-only. + hideFromOutlookClients: + type: boolean + description: 'true if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' nullable: true - createdByAppId: - type: string - description: The unique identifier of the application that created the page. Read-only. + isFavorite: + type: boolean nullable: true - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'The date and time when the page was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' - format: date-time + isSubscribedByMail: + type: boolean + description: 'Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' nullable: true - level: + unseenConversationsCount: maximum: 2147483647 minimum: -2147483648 type: integer - description: The indentation level of the page. Read-only. + description: Count of conversations that have been delivered one or more new posts since the signed-in user's last visit to the group. This property is the same as unseenCount. Returned only on $select. format: int32 nullable: true - links: - $ref: '#/components/schemas/microsoft.graph.pageLinks' - order: + unseenCount: maximum: 2147483647 minimum: -2147483648 type: integer - description: The order of the page within its parent section. Read-only. + description: 'Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).' format: int32 nullable: true - title: - type: string - description: The title of the page. + unseenMessagesCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Count of new posts that have been delivered to the group's conversations since the signed-in user's last visit to the group. Returned only on $select. + format: int32 nullable: true - userTags: + membershipRuleProcessingStatus: + $ref: '#/components/schemas/microsoft.graph.membershipRuleProcessingStatus' + isArchived: + type: boolean + description: 'When a group is associated with a team, this property determines whether the team is in read-only mode. To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs.' + nullable: true + appRoleAssignments: type: array items: - type: string - nullable: true - parentNotebook: - $ref: '#/components/schemas/microsoft.graph.notebook' - parentSection: - $ref: '#/components/schemas/microsoft.graph.onenoteSection' - additionalProperties: - type: object - microsoft.graph.onenoteResource: - allOf: - - $ref: '#/components/schemas/microsoft.graph.onenoteEntityBaseModel' - - title: onenoteResource - type: object - properties: - content: - type: string - description: The content stream - format: base64url - nullable: true - contentUrl: - type: string - description: The URL for downloading the content - nullable: true - additionalProperties: - type: object - microsoft.graph.sectionGroup: - allOf: - - $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel' - - title: sectionGroup - type: object - properties: - sectionGroupsUrl: - type: string - description: 'The URL for the sectionGroups navigation property, which returns all the section groups in the section group. Read-only.' - nullable: true - sectionsUrl: - type: string - description: 'The URL for the sections navigation property, which returns all the sections in the section group. Read-only.' - nullable: true - parentNotebook: - $ref: '#/components/schemas/microsoft.graph.notebook' - parentSectionGroup: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' - sectionGroups: + $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' + description: Represents the app roles a group has been granted for an application. Supports $expand. + createdOnBehalfOf: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + endpoints: type: array items: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' - description: The section groups in the section. Read-only. Nullable. - sections: + $ref: '#/components/schemas/microsoft.graph.endpoint' + description: Endpoints for the group. Read-only. Nullable. + memberOf: type: array items: - $ref: '#/components/schemas/microsoft.graph.onenoteSection' - description: The sections in the section group. Read-only. Nullable. + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand.' + members: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'Direct members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName).' + membersWithLicenseErrors: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: A list of group members with license errors from this group-based license assignment. Read-only. + owners: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'The owners of the group who can be users or service principals. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,''Role'')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName).' + permissionGrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.resourceSpecificPermissionGrant' + description: The permissions that have been granted for a group to a specific application. Supports $expand. + settings: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directorySetting' + description: 'Settings that can govern this group''s behavior, like whether members can invite guest users to the group. Nullable.' + transitiveMemberOf: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'The groups that a group is a member of, either directly and through nested membership. Nullable.' + transitiveMembers: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: The direct and transitive members of a group. Nullable. + acceptedSenders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. + calendar: + $ref: '#/components/schemas/microsoft.graph.calendar' + calendarView: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.event' + description: The calendar view for the calendar. Read-only. + conversations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.conversation' + description: The group's conversations. + events: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.event' + description: The group's events. + rejectedSenders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable + threads: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.conversationThread' + description: The group's conversation threads. Nullable. + drive: + $ref: '#/components/schemas/microsoft.graph.drive' + drives: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.drive' + description: The group's drives. Read-only. + sites: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.site' + description: The list of SharePoint sites in this group. Access the default site with /sites/root. + extensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.extension' + description: The collection of open extensions defined for the group. Read-only. Nullable. + groupLifecyclePolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' + description: The collection of lifecycle policies for this group. Read-only. Nullable. + planner: + $ref: '#/components/schemas/microsoft.graph.plannerGroup' + onenote: + $ref: '#/components/schemas/microsoft.graph.onenote' + photo: + $ref: '#/components/schemas/microsoft.graph.profilePhoto' + photos: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.profilePhoto' + description: The profile photos owned by the group. Read-only. Nullable. + team: + $ref: '#/components/schemas/microsoft.graph.team' additionalProperties: type: object - microsoft.graph.onenoteSection: + microsoft.graph.accessPackageCustomExtensionStage: + title: accessPackageCustomExtensionStage + enum: + - assignmentRequestCreated + - assignmentRequestApproved + - assignmentRequestGranted + - assignmentRequestRemoved + - assignmentFourteenDaysBeforeExpiration + - assignmentOneDayBeforeExpiration + - unknownFutureValue + type: string + microsoft.graph.customCalloutExtension: allOf: - - $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel' - - title: onenoteSection + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: customCalloutExtension type: object properties: - isDefault: - type: boolean - description: Indicates whether this is the user's default section. Read-only. + authenticationConfiguration: + $ref: '#/components/schemas/microsoft.graph.customExtensionAuthenticationConfiguration' + clientConfiguration: + $ref: '#/components/schemas/microsoft.graph.customExtensionClientConfiguration' + description: + type: string + description: Description for the customCalloutExtension object. nullable: true - links: - $ref: '#/components/schemas/microsoft.graph.sectionLinks' - pagesUrl: + displayName: type: string - description: The pages endpoint where you can get details for all the pages in the section. Read-only. + description: Display name for the customCalloutExtension object. nullable: true - pages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.onenotePage' - description: The collection of pages in the section. Read-only. Nullable. - parentNotebook: - $ref: '#/components/schemas/microsoft.graph.notebook' - parentSectionGroup: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' + endpointConfiguration: + $ref: '#/components/schemas/microsoft.graph.customExtensionEndpointConfiguration' additionalProperties: type: object - microsoft.graph.teamDiscoverySettings: - title: teamDiscoverySettings + microsoft.graph.accessPackageAnswer: + title: accessPackageAnswer type: object properties: - showInTeamsSearchAndSuggestions: + answeredQuestion: + $ref: '#/components/schemas/microsoft.graph.accessPackageQuestion' + displayValue: + type: string + description: The display value of the answer. Required. + nullable: true + additionalProperties: + type: object + microsoft.graph.customExtensionHandlerInstance: + title: customExtensionHandlerInstance + type: object + properties: + customExtensionId: + type: string + description: Identifier of the customAccessPackageWorkflowExtension triggered at this instance. + nullable: true + externalCorrelationId: + type: string + description: The unique run ID for the logic app. + nullable: true + stage: + $ref: '#/components/schemas/microsoft.graph.accessPackageCustomExtensionStage' + status: + $ref: '#/components/schemas/microsoft.graph.accessPackageCustomExtensionHandlerStatus' + additionalProperties: + type: object + microsoft.graph.requestSchedule: + title: requestSchedule + type: object + properties: + expiration: + $ref: '#/components/schemas/microsoft.graph.expirationPattern' + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + startDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. In PIM, when the eligible or active assignment becomes active.' + format: date-time + nullable: true + additionalProperties: + type: object + microsoft.graph.accessPackageSubjectLifecycle: + title: accessPackageSubjectLifecycle + enum: + - notDefined + - notGoverned + - governed + - unknownFutureValue + type: string + microsoft.graph.identitySource: + title: identitySource + type: object + additionalProperties: + type: object + microsoft.graph.connectedOrganizationState: + title: connectedOrganizationState + enum: + - configured + - proposed + - unknownFutureValue + type: string + microsoft.graph.accessPackageResourceAttribute: + title: accessPackageResourceAttribute + type: object + properties: + attributeDestination: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttributeDestination' + attributeName: + type: string + description: 'The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension_2b676109c7c74ae2b41549205f1947ed_personalTitle.' + nullable: true + attributeSource: + $ref: '#/components/schemas/microsoft.graph.accessPackageResourceAttributeSource' + id: + type: string + description: Unique identifier for the attribute on the access package resource. Read-only. + nullable: true + isEditable: type: boolean - description: 'If set to true, the team is visible via search and suggestions from the Teams client.' + description: Specifies whether or not an existing attribute value can be edited by the requester. + nullable: true + isPersistedOnAssignmentRemoval: + type: boolean + description: Specifies whether the attribute will remain in the end system after an assignment ends. + nullable: true + additionalProperties: + type: object + microsoft.graph.connectionInfo: + title: connectionInfo + type: object + properties: + url: + type: string + description: The endpoint that is used by Entitlement Management to communicate with the access package resource. + nullable: true + additionalProperties: + type: object + microsoft.graph.customExtensionCallbackConfiguration: + title: customExtensionCallbackConfiguration + type: object + properties: + timeoutDuration: + pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' + type: string + description: 'Callback time out in ISO 8601 time duration. Accepted time durations are between five minutes to three hours. For example, PT5M for five minutes and PT3H for three hours.' + format: duration + nullable: true + additionalProperties: + type: object + microsoft.graph.signInActivity: + title: signInActivity + type: object + properties: + lastNonInteractiveSignInDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The last non-interactive sign-in date for a specific user. You can use this field to calculate the last time a client signed in to the directory on behalf of a user. Because some users may use clients to access tenant resources rather than signing into your tenant directly, you can use the non-interactive sign-in date to along with lastSignInDateTime to identify inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains non-interactive sign-ins going back to May 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + format: date-time + nullable: true + lastNonInteractiveSignInRequestId: + type: string + description: Request identifier of the last non-interactive sign-in performed by this user. + nullable: true + lastSignInDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The last interactive sign-in date and time for a specific user. You can use this field to calculate the last time a user signed in to the directory with an interactive authentication method. This field can be used to build reports, such as inactive users. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is: ''2014-01-01T00:00:00Z''. Azure AD maintains interactive sign-ins going back to April 2020. For more information about using the value of this property, see Manage inactive user accounts in Azure AD.' + format: date-time + nullable: true + lastSignInRequestId: + type: string + description: Request identifier of the last interactive sign-in performed by this user. + nullable: true + additionalProperties: + type: object + microsoft.graph.assignedLicense: + title: assignedLicense + type: object + properties: + disabledPlans: + type: array + items: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + format: uuid + description: A collection of the unique identifiers for plans that have been disabled. + skuId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + description: The unique identifier for the SKU. + format: uuid + nullable: true + additionalProperties: + type: object + microsoft.graph.assignedPlan: + title: assignedPlan + type: object + properties: + assignedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time + nullable: true + capabilityStatus: + type: string + description: 'Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.' + nullable: true + service: + type: string + description: 'The name of the service; for example, exchange.' + nullable: true + servicePlanId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + description: 'A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing.' + format: uuid + nullable: true + additionalProperties: + type: object + microsoft.graph.authorizationInfo: + title: authorizationInfo + type: object + properties: + certificateUserIds: + type: array + items: + type: string + nullable: true + description: The collection of unique identifiers that can be associated with a user and can be used to bind the Azure AD user to a certificate for authentication and authorization into non-Azure AD environments. The identifiers must be unique in the tenant. + additionalProperties: + type: object + microsoft.graph.customSecurityAttributeValue: + title: customSecurityAttributeValue + type: object + additionalProperties: + type: object + microsoft.graph.deviceKey: + title: deviceKey + type: object + properties: + deviceId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + format: uuid + nullable: true + keyMaterial: + type: string + format: base64url + nullable: true + keyType: + type: string + nullable: true + additionalProperties: + type: object + microsoft.graph.employeeOrgData: + title: employeeOrgData + type: object + properties: + costCenter: + type: string + description: The cost center associated with the user. Returned only on $select. Supports $filter. + nullable: true + division: + type: string + description: The name of the division in which the user works. Returned only on $select. Supports $filter. + nullable: true + additionalProperties: + type: object + microsoft.graph.objectIdentity: + title: objectIdentity + type: object + properties: + issuer: + type: string + description: 'Specifies the issuer of the identity, for example facebook.com.For local accounts (where signInType is not federated), this property is the local B2C tenant default domain name, for example contoso.onmicrosoft.com.For external users from other Azure AD organization, this will be the domain of the federated organization, for example contoso.com.Supports $filter. 512 character limit.' + nullable: true + issuerAssignedId: + type: string + description: 'Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit.' + nullable: true + signInType: + type: string + description: 'Specifies the user sign-in types in your directory, such as emailAddress, userName, federated, or userPrincipalName. federated represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Setting or updating a userPrincipalName identity will update the value of the userPrincipalName property on the user object. The validations performed on the userPrincipalName property on the user object, for example, verified domains and acceptable characters, will be performed when setting or updating a userPrincipalName identity. Additional validation is enforced on issuerAssignedId when the sign-in type is set to emailAddress or userName. This property can also be set to any custom string.' + nullable: true + additionalProperties: + type: object + microsoft.graph.licenseAssignmentState: + title: licenseAssignmentState + type: object + properties: + assignedByGroup: + type: string + description: 'The id of the group that assigns this license. If the assignment is a direct-assigned license, this field will be Null. Read-Only.' + nullable: true + disabledPlans: + type: array + items: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + format: uuid + nullable: true + description: The service plans that are disabled in this assignment. Read-Only. + error: + type: string + description: 'License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. The possible values are CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Other. For more information on how to identify and resolve license assignment errors see here.' + nullable: true + lastUpdatedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The timestamp when the state of the license assignment was last updated. + format: date-time + nullable: true + skuId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + description: The unique identifier for the SKU. Read-Only. + format: uuid + nullable: true + state: + type: string + description: 'Indicate the current state of this assignment. Read-Only. The possible values are Active, ActiveWithError, Disabled, and Error.' nullable: true additionalProperties: type: object - microsoft.graph.teamFunSettings: - title: teamFunSettings + microsoft.graph.onPremisesExtensionAttributes: + title: onPremisesExtensionAttributes type: object properties: - allowCustomMemes: - type: boolean - description: 'If set to true, enables users to include custom memes.' + extensionAttribute1: + type: string + description: First customizable extension attribute. nullable: true - allowGiphy: - type: boolean - description: 'If set to true, enables Giphy use.' + extensionAttribute10: + type: string + description: Tenth customizable extension attribute. nullable: true - allowStickersAndMemes: - type: boolean - description: 'If set to true, enables users to include stickers and memes.' + extensionAttribute11: + type: string + description: Eleventh customizable extension attribute. + nullable: true + extensionAttribute12: + type: string + description: Twelfth customizable extension attribute. + nullable: true + extensionAttribute13: + type: string + description: Thirteenth customizable extension attribute. + nullable: true + extensionAttribute14: + type: string + description: Fourteenth customizable extension attribute. + nullable: true + extensionAttribute15: + type: string + description: Fifteenth customizable extension attribute. + nullable: true + extensionAttribute2: + type: string + description: Second customizable extension attribute. + nullable: true + extensionAttribute3: + type: string + description: Third customizable extension attribute. + nullable: true + extensionAttribute4: + type: string + description: Fourth customizable extension attribute. + nullable: true + extensionAttribute5: + type: string + description: Fifth customizable extension attribute. + nullable: true + extensionAttribute6: + type: string + description: Sixth customizable extension attribute. + nullable: true + extensionAttribute7: + type: string + description: Seventh customizable extension attribute. + nullable: true + extensionAttribute8: + type: string + description: Eighth customizable extension attribute. + nullable: true + extensionAttribute9: + type: string + description: Ninth customizable extension attribute. nullable: true - giphyContentRating: - $ref: '#/components/schemas/microsoft.graph.giphyRatingType' additionalProperties: type: object - microsoft.graph.teamGuestSettings: - title: teamGuestSettings + microsoft.graph.onPremisesProvisioningError: + title: onPremisesProvisioningError type: object properties: - allowCreateUpdateChannels: - type: boolean - description: 'If set to true, guests can add and update channels.' + category: + type: string + description: 'Category of the provisioning error. Note: Currently, there is only one possible value. Possible value: PropertyConflict - indicates a property value is not unique. Other objects contain the same value for the property.' nullable: true - allowDeleteChannels: - type: boolean - description: 'If set to true, guests can delete channels.' + occurredDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The date and time at which the error occurred. + format: date-time + nullable: true + propertyCausingError: + type: string + description: 'Name of the directory property causing the error. Current possible values: UserPrincipalName or ProxyAddress' + nullable: true + value: + type: string + description: Value of the property causing the error. nullable: true additionalProperties: type: object - microsoft.graph.teamMemberSettings: - title: teamMemberSettings + microsoft.graph.passwordProfile: + title: passwordProfile type: object properties: - allowAddRemoveApps: + forceChangePasswordNextSignIn: type: boolean - description: 'If set to true, members can add and remove apps.' + description: 'true if the user must change her password on the next login; otherwise false. If not set, default is false. NOTE: For Azure B2C tenants, set to false and instead use custom policies and user flows to force password reset at first sign in. See Force password reset at first logon.' nullable: true - allowCreatePrivateChannels: + forceChangePasswordNextSignInWithMfa: type: boolean - description: 'If set to true, members can add and update private channels.' + description: 'If true, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to forceChangePasswordNextSignIn except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to false. If not set, default is false.' nullable: true - allowCreateUpdateChannels: - type: boolean - description: 'If set to true, members can add and update any channels.' + password: + type: string + description: 'The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the user’s passwordPolicies property. By default, a strong password is required.' nullable: true - allowCreateUpdateRemoveConnectors: - type: boolean - description: 'If set to true, members can add, update, and remove connectors.' + additionalProperties: + type: object + microsoft.graph.provisionedPlan: + title: provisionedPlan + type: object + properties: + capabilityStatus: + type: string + description: 'For example, ''Enabled''.' nullable: true - allowCreateUpdateRemoveTabs: - type: boolean - description: 'If set to true, members can add, update, and remove tabs.' + provisioningStatus: + type: string + description: 'For example, ''Success''.' nullable: true - allowDeleteChannels: - type: boolean - description: 'If set to true, members can delete channels.' + service: + type: string + description: 'The name of the service; for example, ''AccessControlS2S''' nullable: true additionalProperties: type: object - microsoft.graph.teamMessagingSettings: - title: teamMessagingSettings + microsoft.graph.mailboxSettings: + title: mailboxSettings type: object properties: - allowChannelMentions: - type: boolean - description: 'If set to true, @channel mentions are allowed.' - nullable: true - allowOwnerDeleteMessages: - type: boolean - description: 'If set to true, owners can delete any message.' + archiveFolder: + type: string + description: Folder ID of an archive folder for the user. Read only. nullable: true - allowTeamMentions: - type: boolean - description: 'If set to true, @team mentions are allowed.' + automaticRepliesSetting: + $ref: '#/components/schemas/microsoft.graph.automaticRepliesSetting' + dateFormat: + type: string + description: The date format for the user's mailbox. nullable: true - allowUserDeleteMessages: - type: boolean - description: 'If set to true, users can delete their messages.' + delegateMeetingMessageDeliveryOptions: + $ref: '#/components/schemas/microsoft.graph.delegateMeetingMessageDeliveryOptions' + language: + $ref: '#/components/schemas/microsoft.graph.localeInfo' + timeFormat: + type: string + description: The time format for the user's mailbox. nullable: true - allowUserEditMessages: - type: boolean - description: 'If set to true, users can edit their messages.' + timeZone: + type: string + description: The default time zone for the user's mailbox. nullable: true + userPurpose: + $ref: '#/components/schemas/microsoft.graph.userPurpose' + userPurposeV2: + $ref: '#/components/schemas/microsoft.graph.mailboxRecipientType' + workingHours: + $ref: '#/components/schemas/microsoft.graph.workingHours' additionalProperties: type: object - microsoft.graph.teamSpecialization: - title: teamSpecialization - enum: - - none - - educationStandard - - educationClass - - educationProfessionalLearningCommunity - - educationStaff - - healthcareStandard - - healthcareCareCoordination - - unknownFutureValue - type: string - microsoft.graph.teamSummary: - title: teamSummary + microsoft.graph.userPrint: + title: userPrint type: object properties: - guestsCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Count of guests in a team. - format: int32 - nullable: true - membersCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Count of members in a team. - format: int32 - nullable: true - ownersCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Count of owners in a team. - format: int32 - nullable: true + recentPrinterShares: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.printerShare' additionalProperties: type: object - microsoft.graph.teamVisibilityType: - title: teamVisibilityType - enum: - - private - - public - - hiddenMembership - - unknownFutureValue - type: string - microsoft.graph.channel: + microsoft.graph.userAnalytics: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: channel + - title: userAnalytics type: object properties: - createdDateTime: + settings: + $ref: '#/components/schemas/microsoft.graph.settings' + activityStatistics: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.activityStatistics' + description: The collection of work activities that a user spent time on during and outside of working hours. Read-only. Nullable. + additionalProperties: + type: object + microsoft.graph.cloudPC: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: cloudPC + type: object + properties: + aadDeviceId: + type: string + description: The Azure Active Directory (Azure AD) device ID of the Cloud PC. + nullable: true + connectivityResult: + $ref: '#/components/schemas/microsoft.graph.cloudPcConnectivityResult' + diskEncryptionState: + $ref: '#/components/schemas/microsoft.graph.cloudPcDiskEncryptionState' + displayName: + type: string + description: The display name of the Cloud PC. + nullable: true + gracePeriodEndDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Read only. Timestamp at which the channel was created. + description: 'The date and time when the grace period ends and reprovisioning/deprovisioning happens. Required only if the status is inGracePeriod. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' format: date-time nullable: true - description: + imageDisplayName: type: string - description: Optional textual description for the channel. + description: Name of the OS image that's on the Cloud PC. nullable: true - displayName: + lastLoginResult: + $ref: '#/components/schemas/microsoft.graph.cloudPcLoginResult' + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Channel name as it will appear to the user in Microsoft Teams. - email: + description: 'The last modified date and time of the Cloud PC. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.' + format: date-time + lastRemoteActionResult: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + managedDeviceId: type: string - description: The email address for sending messages to the channel. Read-only. + description: The Intune device ID of the Cloud PC. nullable: true - isFavoriteByDefault: - type: boolean - description: 'Indicates whether the channel should automatically be marked ''favorite'' for all members of the team. Can only be set programmatically with Create team. Default: false.' + managedDeviceName: + type: string + description: The Intune device name of the Cloud PC. nullable: true - membershipType: - $ref: '#/components/schemas/microsoft.graph.channelMembershipType' - moderationSettings: - $ref: '#/components/schemas/microsoft.graph.channelModerationSettings' - tenantId: + onPremisesConnectionName: type: string - description: The ID of the Azure Active Directory tenant. + description: The Azure network connection that is applied during the provisioning of Cloud PCs. nullable: true - webUrl: + osVersion: + $ref: '#/components/schemas/microsoft.graph.cloudPcOperatingSystem' + provisioningPolicyId: type: string - description: 'A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only.' + description: The provisioning policy ID of the Cloud PC. + nullable: true + provisioningPolicyName: + type: string + description: The provisioning policy that is applied during the provisioning of Cloud PCs. + nullable: true + servicePlanId: + type: string + description: The service plan ID of the Cloud PC. + nullable: true + servicePlanName: + type: string + description: The service plan name of the Cloud PC. + nullable: true + servicePlanType: + $ref: '#/components/schemas/microsoft.graph.cloudPcServicePlanType' + status: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatus' + statusDetails: + $ref: '#/components/schemas/microsoft.graph.cloudPcStatusDetails' + userAccountType: + $ref: '#/components/schemas/microsoft.graph.cloudPcUserAccountType' + userPrincipalName: + type: string + description: The user principal name (UPN) of the user assigned to the Cloud PC. nullable: true - filesFolder: - $ref: '#/components/schemas/microsoft.graph.driveItem' - members: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.conversationMember' - description: A collection of membership records associated with the channel. - messages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - description: A collection of all the messages in the channel. A navigation property. Nullable. - sharedWithTeams: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' - description: A collection of teams with which a channel is shared. - tabs: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.teamsTab' - description: A collection of all the tabs in the channel. A navigation property. - additionalProperties: - type: object - microsoft.graph.teamsAppInstallation: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAppInstallation - type: object - properties: - teamsApp: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - teamsAppDefinition: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' additionalProperties: type: object - microsoft.graph.conversationMember: + microsoft.graph.usageRight: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: conversationMember + - title: usageRight type: object properties: - displayName: + catalogId: type: string - description: The display name of the user. - nullable: true - roles: - type: array - items: - type: string - nullable: true - description: 'The roles for that user. This property only contains additional qualifiers when relevant - for example, if the member has owner privileges, the roles property contains owner as one of the values. Similarly, if the member is a guest, the roles property contains guest as one of the values. A basic member should not have any values specified in the roles property.' - visibleHistoryStartDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + description: Product id corresponding to the usage right. + serviceIdentifier: type: string - description: The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. - format: date-time - nullable: true + description: Identifier of the service corresponding to the usage right. + state: + $ref: '#/components/schemas/microsoft.graph.usageRightState' additionalProperties: type: object - microsoft.graph.teamsAsyncOperation: + microsoft.graph.informationProtection: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsAsyncOperation + - title: informationProtection type: object properties: - attemptsCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of times the operation was attempted before being marked successful or failed. - format: int32 - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Time when the operation was created. - format: date-time - error: - $ref: '#/components/schemas/microsoft.graph.operationError' - lastActionDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Time when the async operation was last updated. - format: date-time - operationType: - $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperationType' - status: - $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperationStatus' - targetResourceId: - type: string - description: 'The ID of the object that''s created or modified as result of this async operation, typically a team.' - nullable: true - targetResourceLocation: - type: string - description: The location of the object that's created or modified as result of this async operation. This URL should be treated as an opaque value and not parsed into its component paths. - nullable: true + bitlocker: + $ref: '#/components/schemas/microsoft.graph.bitlocker' + dataLossPreventionPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.dataLossPreventionPolicy' + sensitivityLabels: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' + sensitivityPolicySettings: + $ref: '#/components/schemas/microsoft.graph.sensitivityPolicySettings' + policy: + $ref: '#/components/schemas/microsoft.graph.informationProtectionPolicy' + threatAssessmentRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.threatAssessmentRequest' additionalProperties: type: object - microsoft.graph.user: + microsoft.graph.servicePrincipal: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - - title: user + - title: servicePrincipal type: object properties: - signInActivity: - $ref: '#/components/schemas/microsoft.graph.signInActivity' + passwordSingleSignOnSettings: + $ref: '#/components/schemas/microsoft.graph.passwordSingleSignOnSettings' accountEnabled: type: boolean - description: 'true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter (eq, ne, not, and in).' - nullable: true - ageGroup: - type: string - description: 'Sets the age group of the user. Allowed values: null, Minor, NotAdult and Adult. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, not, and in).' + description: 'true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, not, in).' nullable: true - assignedLicenses: + addIns: type: array items: - $ref: '#/components/schemas/microsoft.graph.assignedLicense' - description: 'The licenses that are assigned to the user, including inherited (group-based) licenses. Not nullable. Supports $filter (eq, not, and counting empty collections).' - assignedPlans: + $ref: '#/components/schemas/microsoft.graph.addIn' + description: 'Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its ''FileHandler'' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on.' + alternativeNames: type: array items: - $ref: '#/components/schemas/microsoft.graph.assignedPlan' - description: The plans that are assigned to the user. Read-only. Not nullable.Supports $filter (eq and not). - authorizationInfo: - $ref: '#/components/schemas/microsoft.graph.authorizationInfo' - businessPhones: + type: string + description: 'Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, not, ge, le, startsWith).' + appDescription: + type: string + description: The description exposed by the associated application. + nullable: true + appDisplayName: + type: string + description: The display name exposed by the associated application. + nullable: true + appId: + type: string + description: 'The unique identifier for the associated application (its appId property). Supports $filter (eq, ne, not, in, startsWith).' + nullable: true + applicationTemplateId: + type: string + description: 'Unique identifier of the applicationTemplate that the servicePrincipal was created from. Read-only. Supports $filter (eq, ne, NOT, startsWith).' + nullable: true + appOwnerOrganizationId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + description: 'Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le).' + format: uuid + nullable: true + appRoleAssignmentRequired: + type: boolean + description: 'Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT).' + appRoles: type: array items: - type: string - description: 'The telephone numbers for the user. Only one number can be set for this property. Read-only for users synced from on-premises directory. Supports $filter (eq, not, ge, le, startsWith).' - city: + $ref: '#/components/schemas/microsoft.graph.appRole' + description: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. + customSecurityAttributes: + $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeValue' + description: type: string - description: 'The city in which the user is located. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: 'Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, not, ge, le, startsWith) and $search.' nullable: true - companyName: + disabledByMicrosoftStatus: type: string - description: 'The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length is 64 characters.Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: 'Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, not).' nullable: true - consentProvidedForMinor: + displayName: type: string - description: 'Sets whether consent has been obtained for minors. Allowed values: null, Granted, Denied and NotRequired. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, not, and in).' + description: 'The display name for the service principal. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderBy.' nullable: true - country: + errorUrl: type: string - description: 'The country/region in which the user is located; for example, US or UK. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: Deprecated. Don't use. nullable: true - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + homepage: type: string - description: 'The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn''t be determined for the user. Read-only. Supports $filter (eq, ne, not , ge, le, in).' - format: date-time + description: Home page or landing page of the application. nullable: true - creationType: + info: + $ref: '#/components/schemas/microsoft.graph.informationalUrl' + keyCredentials: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyCredential' + description: 'The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, not, ge, le).' + loginUrl: type: string - description: 'Indicates whether the user account was created through one of the following methods: As a regular school or work account (null). As an external account (Invitation). As a local account for an Azure Active Directory B2C tenant (LocalAccount). Through self-service sign-up by an internal user using email verification (EmailVerified). Through self-service sign-up by an external user signing up through a link that is part of a user flow (SelfServiceSignUp). Read-only.Supports $filter (eq, ne, not, and in).' + description: 'Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL.' nullable: true - customSecurityAttributes: - $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeValue' - department: + logoutUrl: type: string - description: 'The name for the department in which the user works. Maximum length is 64 characters.Supports $filter (eq, ne, not , ge, le, in, and eq on null values).' + description: 'Specifies the URL that will be used by Microsoft''s authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols.' nullable: true - deviceKeys: + notes: + type: string + description: 'Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters.' + nullable: true + notificationEmailAddresses: type: array items: - $ref: '#/components/schemas/microsoft.graph.deviceKey' - displayName: + type: string + description: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. + passwordCredentials: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.passwordCredential' + description: The collection of password credentials associated with the service principal. Not nullable. + preferredSingleSignOnMode: type: string - description: 'The name displayed in the address book for the user. This value is usually the combination of the user''s first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Maximum length is 256 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderBy, and $search.' + description: 'Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc.' nullable: true - employeeHireDate: + preferredTokenSigningKeyEndDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The date and time when the user was hired or will start work in case of a future hire. Supports $filter (eq, ne, not , ge, le, in).' + description: 'Specifies the expiration date of the keyCredential used for token signing, marked by preferredTokenSigningKeyThumbprint.' format: date-time nullable: true - employeeId: + preferredTokenSigningKeyThumbprint: type: string - description: 'The employee identifier assigned to the user by the organization. The maximum length is 16 characters.Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + description: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. nullable: true - employeeOrgData: - $ref: '#/components/schemas/microsoft.graph.employeeOrgData' - employeeType: + publishedPermissionScopes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.permissionScope' + description: 'The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity''s api property. Not nullable. Note: This property is named oauth2PermissionScopes in v1.0.' + publisherName: type: string - description: 'Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Supports $filter (eq, ne, not , ge, le, in, startsWith).' nullable: true - externalUserState: + replyUrls: + type: array + items: + type: string + description: 'The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable.' + samlMetadataUrl: type: string - description: 'For an external user invited to the tenant using the invitation API, this property represents the invited user''s invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Supports $filter (eq, ne, not , in).' + description: The url where the service exposes SAML metadata for federation. nullable: true - externalUserStateChangeDateTime: + samlSingleSignOnSettings: + $ref: '#/components/schemas/microsoft.graph.samlSingleSignOnSettings' + servicePrincipalNames: + type: array + items: + type: string + description: 'Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the ''aud'' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, not, ge, le, startsWith).' + servicePrincipalType: type: string - description: 'Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, not , in).' + description: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. The SocialIdp type is for internal use. nullable: true - faxNumber: + signInAudience: type: string - description: 'The fax number of the user. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + description: 'Specifies the Microsoft accounts that are supported for the current application. Read-only. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.' nullable: true - givenName: + tags: + type: array + items: + type: string + description: 'Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, not, ge, le, startsWith).' + tokenEncryptionKeyId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string - description: 'The given name (first name) of the user. Maximum length is 64 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + description: 'Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user.' + format: uuid nullable: true - identities: + verifiedPublisher: + $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' + appManagementPolicies: type: array items: - $ref: '#/components/schemas/microsoft.graph.objectIdentity' - description: 'Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) including on null values, only where the signInType is not userPrincipalName.' - imAddresses: + $ref: '#/components/schemas/microsoft.graph.appManagementPolicy' + description: The appManagementPolicy applied to this service principal. + appRoleAssignedTo: type: array items: - type: string - nullable: true - description: 'The instant message voice over IP (VOIP) session initiation protocol (SIP) addresses for the user. Read-only. Supports $filter (eq, not, ge, le, startsWith).' - infoCatalogs: + $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' + description: 'App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand.' + appRoleAssignments: type: array items: - type: string - description: 'Identifies the info segments assigned to the user. Supports $filter (eq, not, ge, le, startsWith).' - isManagementRestricted: - type: boolean + $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' + description: 'App role assignment for another app or service, granted to this service principal. Supports $expand.' + claimsMappingPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy' + description: The claimsMappingPolicies assigned to this service principal. Supports $expand. + createdObjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Directory objects created by this service principal. Read-only. Nullable. + delegatedPermissionClassifications: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.delegatedPermissionClassification' + description: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. + endpoints: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.endpoint' + description: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. + federatedIdentityCredentials: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' + homeRealmDiscoveryPolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy' + description: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. + licenseDetails: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.licenseDetails' + memberOf: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: 'Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable. Supports $expand.' + oauth2PermissionGrants: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant' + description: Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. + ownedObjects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Directory objects that are owned by this service principal. Read-only. Nullable. Supports $expand. + owners: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + description: Directory objects that are owners of this servicePrincipal. The owners are a set of non-admin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. Supports $expand. + tokenIssuancePolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.tokenIssuancePolicy' + description: The tokenIssuancePolicies assigned to this service principal. Supports $expand. + tokenLifetimePolicies: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.tokenLifetimePolicy' + description: The tokenLifetimePolicies assigned to this service principal. Supports $expand. + transitiveMemberOf: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.directoryObject' + synchronization: + $ref: '#/components/schemas/microsoft.graph.synchronization' + additionalProperties: + type: object + microsoft.graph.appRoleAssignment: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: appRoleAssignment + type: object + properties: + appRoleId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + description: 'The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application''s service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create.' + format: uuid + creationTimestamp: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'The time when the app role assignment was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.' + format: date-time nullable: true - isResourceAccount: - type: boolean - description: Do not use – reserved for future use. + principalDisplayName: + type: string + description: 'The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith).' nullable: true - jobTitle: + principalId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string - description: 'The user''s job title. Maximum length is 128 characters. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values).' + description: 'The unique identifier (id) for the user, group, or service principal being granted the app role. Required on create.' + format: uuid nullable: true - lastPasswordChangeDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + principalType: type: string - description: 'The time when this Azure AD user last changed their password or when their password was created, , whichever date the latest action was performed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Returned only on $select.' - format: date-time + description: 'The type of the assigned principal. This can either be User, Group, or ServicePrincipal. Read-only.' nullable: true - legalAgeGroupClassification: + resourceDisplayName: type: string - description: 'Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult and Adult. Refer to the legal age group property definitions for further information. Returned only on $select.' + description: The display name of the resource app's service principal to which the assignment is made. nullable: true - licenseAssignmentStates: + resourceId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' + type: string + description: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). + format: uuid + nullable: true + additionalProperties: + type: object + microsoft.graph.licenseDetails: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: licenseDetails + type: object + properties: + servicePlans: type: array items: - $ref: '#/components/schemas/microsoft.graph.licenseAssignmentState' - description: State of license assignments for this user. Read-only. Returned only on $select. - mail: + $ref: '#/components/schemas/microsoft.graph.servicePlanInfo' + description: 'Information about the service plans assigned with the license. Read-only, Not nullable' + skuId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string - description: 'The SMTP address for the user, for example, admin@contoso.com. Changes to this property will also update the user''s proxyAddresses collection to include the value as an SMTP address. This property cannot contain accent characters. NOTE: We do not recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values).' + description: Unique identifier (GUID) for the service SKU. Equal to the skuId property on the related SubscribedSku object. Read-only + format: uuid nullable: true - mailNickname: + skuPartNumber: type: string - description: 'The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: 'Unique SKU display name. Equal to the skuPartNumber on the related SubscribedSku object; for example: ''AAD_Premium''. Read-only' nullable: true - mobilePhone: + additionalProperties: + type: object + microsoft.graph.oAuth2PermissionGrant: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: oAuth2PermissionGrant + type: object + properties: + clientId: type: string - description: 'The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' - nullable: true - officeLocation: + description: The id of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only). + consentType: type: string - description: 'The office location in the user''s place of business. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: 'Indicates whether authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).' nullable: true - onPremisesDistinguishedName: + expiryTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. + description: 'Currently, the end time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.' + format: date-time nullable: true - onPremisesDomainName: + principalId: type: string - description: 'Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only.' + description: 'The id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal. Supports $filter (eq only).' nullable: true - onPremisesExtensionAttributes: - $ref: '#/components/schemas/microsoft.graph.onPremisesExtensionAttributes' - onPremisesImmutableId: + resourceId: type: string - description: 'This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user''s userPrincipalName (UPN) property. Note: The $ and _ characters cannot be used when specifying this property. Supports $filter (eq, ne, not, ge, le, in).' + description: The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user. Supports $filter (eq only). + scope: + type: string + description: 'A space-separated list of the claim values for delegated permissions which should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the publishedPermissionScopes property of the resource service principal.' nullable: true - onPremisesLastSyncDateTime: + startTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Indicates the last time at which the object was synced with the on-premises directory; for example: ''2013-02-16T03:04:54Z''. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, in).' + description: 'Currently, the start time value is ignored, but a value is required when creating an oAuth2PermissionGrant. Required.' format: date-time nullable: true - onPremisesProvisioningErrors: + additionalProperties: + type: object + microsoft.graph.scopedRoleMembership: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: scopedRoleMembership + type: object + properties: + administrativeUnitId: + type: string + description: Unique identifier for the administrative unit that the directory role is scoped to + roleId: + type: string + description: Unique identifier for the directory role that the member is in. + roleMemberInfo: + $ref: '#/components/schemas/microsoft.graph.identity' + additionalProperties: + type: object + microsoft.graph.calendar: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: calendar + type: object + properties: + allowedOnlineMeetingProviders: type: array items: - $ref: '#/components/schemas/microsoft.graph.onPremisesProvisioningError' - description: 'Errors when using Microsoft synchronization product during provisioning. Supports $filter (eq, not, ge, le).' - onPremisesSamAccountName: + $ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType' + description: 'Represent the online meeting service providers that can be used to create online meetings in this calendar. Possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness.' + calendarGroupId: type: string - description: 'Contains the on-premises sAMAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith).' + description: 'The calendarGroup in which to create the calendar. If the user has never explicitly set a group for the calendar, this property is null.' nullable: true - onPremisesSecurityIdentifier: + canEdit: + type: boolean + description: 'true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only.' + nullable: true + canShare: + type: boolean + description: 'true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only.' + nullable: true + canViewPrivateItems: + type: boolean + description: 'true if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only.' + nullable: true + changeKey: type: string - description: Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Supports $filter (eq including on null values). + description: 'Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true - onPremisesSyncEnabled: + color: + $ref: '#/components/schemas/microsoft.graph.calendarColor' + defaultOnlineMeetingProvider: + $ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType' + hexColor: + type: string + description: 'The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty.' + nullable: true + isDefaultCalendar: type: boolean - description: 'true if this user object is currently being synced from an on-premises Active Directory (AD); otherwise the user isn''t being synced and can be managed in Azure Active Directory (Azure AD). Read-only. Supports $filter (eq, ne, not, in, and eq on null values).' + description: 'true if this is the default calendar where new events are created by default, false otherwise.' nullable: true - onPremisesUserPrincipalName: + isRemovable: + type: boolean + description: Indicates whether this user calendar can be deleted from the user mailbox. + nullable: true + isShared: + type: boolean + description: 'true if the user has shared the calendar with other users, false otherwise. Since only the user who created the calendar can share it, isShared and isSharedWithMe cannot be true for the same user. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.' + nullable: true + isSharedWithMe: + type: boolean + description: 'true if the user has been shared this calendar, false otherwise. This property is always false for a calendar owner. This property is set when sharing is initiated in an Outlook client, and can be reset when the sharing is cancelled through the client or the corresponding calendarPermission resource. Read-only.' + nullable: true + isTallyingResponses: + type: boolean + description: Indicates whether this user calendar supports tracking of meeting responses. Only meeting invites sent from users' primary calendars support tracking of meeting responses. + nullable: true + name: type: string - description: 'Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith).' + description: The calendar name. nullable: true - otherMails: + owner: + $ref: '#/components/schemas/microsoft.graph.emailAddress' + calendarPermissions: type: array items: - type: string - description: 'A list of additional email addresses for the user; for example: [''bob@contoso.com'', ''Robert@fabrikam.com''].NOTE: This property cannot contain accent characters.Supports $filter (eq, not, ge, le, in, startsWith, endsWith, and counting empty collections).' - passwordPolicies: + $ref: '#/components/schemas/microsoft.graph.calendarPermission' + description: The permissions of the users with whom the calendar is shared. + calendarView: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.event' + description: The calendar view for the calendar. Navigation property. Read-only. + events: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.event' + description: The events in the calendar. Navigation property. Read-only. + multiValueExtendedProperties: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' + description: The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. + singleValueExtendedProperties: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' + description: The collection of single-value extended properties defined for the calendar. Read-only. Nullable. + additionalProperties: + type: object + microsoft.graph.calendarGroup: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: calendarGroup + type: object + properties: + changeKey: type: string - description: 'Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. For more information on the default password policies, see Azure AD pasword policies. Supports $filter (ne, not, and eq on null values).' + description: 'Identifies the version of the calendar group. Every time the calendar group is changed, ChangeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.' nullable: true - passwordProfile: - $ref: '#/components/schemas/microsoft.graph.passwordProfile' - postalCode: + classId: + pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$' type: string - description: 'The postal code for the user''s postal address. The postal code is specific to the user''s country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + description: The class identifier. Read-only. + format: uuid nullable: true - preferredDataLocation: + name: type: string - description: 'The preferred data location for the user. For more information, see OneDrive Online Multi-Geo.' + description: The group name. nullable: true - preferredLanguage: - type: string - description: 'The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + calendars: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.calendar' + description: The calendars in the calendar group. Navigation property. Read-only. Nullable. + additionalProperties: + type: object + microsoft.graph.event: + allOf: + - $ref: '#/components/schemas/microsoft.graph.outlookItem' + - title: event + type: object + properties: + allowNewTimeProposals: + type: boolean + description: true if the meeting organizer allows invitees to propose a new time when responding; otherwise false. Optional. Default is true. nullable: true - provisionedPlans: + attendees: type: array items: - $ref: '#/components/schemas/microsoft.graph.provisionedPlan' - description: 'The plans that are provisioned for the user. Read-only. Not nullable. Supports $filter (eq, not, ge, le).' - proxyAddresses: + $ref: '#/components/schemas/microsoft.graph.attendee' + description: The collection of attendees for the event. + body: + $ref: '#/components/schemas/microsoft.graph.itemBody' + bodyPreview: + type: string + description: The preview of the message associated with the event. It is in text format. + nullable: true + cancelledOccurrences: type: array items: type: string - description: 'For example: [''SMTP: bob@contoso.com'', ''smtp: bob@sales.contoso.com'']. Changes to the mail property will also update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address while those prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of ten unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, and counting empty collections).' - refreshTokensValidFromDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use invalidateAllRefreshTokens to reset.' - format: date-time + nullable: true + description: 'Contains occurrenceId property values of cancelled instances in a recurring series, if the event is the series master. Instances in a recurring series that are cancelled are called cancelledOccurences.Returned only on $select in a Get operation which specifies the id of a series master event (that is, the seriesMasterId property value).' + end: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + hasAttachments: + type: boolean + description: Set to true if the event has attachments. nullable: true - securityIdentifier: - type: string - description: 'Security identifier (SID) of the user, used in Windows scenarios. Read-only. Returned by default. Supports $select and $filter (eq, not, ge, le, startsWith).' + hideAttendees: + type: boolean + description: 'When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. Default is false.' + nullable: true + importance: + $ref: '#/components/schemas/microsoft.graph.importance' + isAllDay: + type: boolean + nullable: true + isCancelled: + type: boolean + nullable: true + isDraft: + type: boolean nullable: true - showInAddressList: + isOnlineMeeting: type: boolean - description: Do not use in Microsoft Graph. Manage this property through the Microsoft 365 admin center instead. Represents whether the user should be included in the Outlook global address list. See Known issue. nullable: true - signInSessionsValidFromDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: 'Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use revokeSignInSessions to reset.' - format: date-time + isOrganizer: + type: boolean nullable: true - state: - type: string - description: 'The state or province in the user''s address. Maximum length is 128 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' + isReminderOn: + type: boolean nullable: true - streetAddress: + location: + $ref: '#/components/schemas/microsoft.graph.location' + locations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.location' + occurrenceId: type: string - description: 'The street address of the user''s place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' nullable: true - surname: + onlineMeeting: + $ref: '#/components/schemas/microsoft.graph.onlineMeetingInfo' + onlineMeetingProvider: + $ref: '#/components/schemas/microsoft.graph.onlineMeetingProviderType' + onlineMeetingUrl: type: string - description: 'The user''s surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' nullable: true - usageLocation: + organizer: + $ref: '#/components/schemas/microsoft.graph.recipient' + originalEndTimeZone: type: string - description: 'A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).' nullable: true - userPrincipalName: + originalStart: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user''s email name. The general format is alias@domain, where domain must be present in the tenant''s collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property cannot contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, '' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderBy.' + format: date-time nullable: true - userType: + originalStartTimeZone: type: string - description: 'A String value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for member and guest users, see What are the default user permissions in Azure Active Directory?' nullable: true - mailboxSettings: - $ref: '#/components/schemas/microsoft.graph.mailboxSettings' - deviceEnrollmentLimit: + recurrence: + $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' + reminderMinutesBeforeStart: maximum: 2147483647 minimum: -2147483648 type: integer - description: The limit on the maximum number of devices that the user is permitted to enroll. Allowed values are 5 or 1000. format: int32 - print: - $ref: '#/components/schemas/microsoft.graph.userPrint' - aboutMe: + nullable: true + responseRequested: + type: boolean + nullable: true + responseStatus: + $ref: '#/components/schemas/microsoft.graph.responseStatus' + sensitivity: + $ref: '#/components/schemas/microsoft.graph.sensitivity' + seriesMasterId: type: string - description: A freeform text entry field for the user to describe themselves. Returned only on $select. nullable: true - birthday: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + showAs: + $ref: '#/components/schemas/microsoft.graph.freeBusyStatus' + start: + $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' + subject: type: string - description: 'The birthday of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Returned only on $select.' - format: date-time - hireDate: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + nullable: true + transactionId: type: string - description: 'The hire date of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned only on $select. Note: This property is specific to SharePoint Online. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs.' - format: date-time - interests: - type: array - items: - type: string - nullable: true - description: A list for the user to describe their interests. Returned only on $select. - mySite: + nullable: true + type: + $ref: '#/components/schemas/microsoft.graph.eventType' + uid: type: string - description: The URL for the user's personal site. Returned only on $select. nullable: true - pastProjects: - type: array - items: - type: string - nullable: true - description: A list for the user to enumerate their past projects. Returned only on $select. - preferredName: + webLink: type: string - description: The preferred name for the user. Not Supported. This attribute returns an empty string.Returned only on $select. nullable: true - responsibilities: - type: array - items: - type: string - nullable: true - description: A list for the user to enumerate their responsibilities. Returned only on $select. - schools: - type: array - items: - type: string - nullable: true - description: A list for the user to enumerate the schools they have attended. Returned only on $select. - skills: - type: array - items: - type: string - nullable: true - description: A list for the user to enumerate their skills. Returned only on $select. - analytics: - $ref: '#/components/schemas/microsoft.graph.userAnalytics' - cloudPCs: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.cloudPC' - usageRights: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.usageRight' - description: Represents the usage rights a user has been granted. - informationProtection: - $ref: '#/components/schemas/microsoft.graph.informationProtection' - appRoleAssignedResources: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.servicePrincipal' - appRoleAssignments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' - description: Represents the app roles a user has been granted for an application. Supports $expand. - createdObjects: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: Directory objects that were created by the user. Read-only. Nullable. - directReports: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. Supports $expand. - licenseDetails: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.licenseDetails' - description: A collection of this user's license details. Read-only. - manager: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - memberOf: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: 'The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable. Supports $expand.' - oauth2PermissionGrants: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant' - ownedDevices: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: Devices that are owned by the user. Read-only. Nullable. Supports $expand. - ownedObjects: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: Directory objects that are owned by the user. Read-only. Nullable. Supports $expand. - registeredDevices: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: Devices that are registered for the user. Read-only. Nullable. Supports $expand. - scopedRoleMemberOf: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' - description: The scoped-role administrative unit memberships for this user. Read-only. Nullable. - transitiveMemberOf: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: 'The groups, including nested groups, and directory roles that a user is a member of. Nullable.' - transitiveReports: + attachments: type: array items: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - description: The transitive reports for a user. Read-only. + $ref: '#/components/schemas/microsoft.graph.attachment' + description: 'The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable.' calendar: $ref: '#/components/schemas/microsoft.graph.calendar' - calendarGroups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.calendarGroup' - description: The user's calendar groups. Read-only. Nullable. - calendars: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.calendar' - description: The user's calendars. Read-only. Nullable. - calendarView: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.event' - description: The calendar view for the calendar. Read-only. Nullable. - contactFolders: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.contactFolder' - description: The user's contacts folders. Read-only. Nullable. - contacts: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.contact' - description: The user's contacts. Read-only. Nullable. - events: + exceptionOccurrences: type: array items: $ref: '#/components/schemas/microsoft.graph.event' - description: The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. - inferenceClassification: - $ref: '#/components/schemas/microsoft.graph.inferenceClassification' - joinedGroups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.group' - mailFolders: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.mailFolder' - description: The user's mail folders. Read-only. Nullable. - messages: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.message' - description: The messages in a mailbox or folder. Read-only. Nullable. - outlook: - $ref: '#/components/schemas/microsoft.graph.outlookUser' - people: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.person' - description: 'Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user''s communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks.' - drive: - $ref: '#/components/schemas/microsoft.graph.drive' - drives: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.drive' - description: A collection of drives available for this user. Read-only. - followedSites: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.site' extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' - description: The collection of open extensions defined for the user. Supports $expand. Nullable. - appConsentRequestsForApproval: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.appConsentRequest' - approvals: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.approval' - pendingAccessReviewInstances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.accessReviewInstance' - description: Navigation property to get list of access reviews pending approval by reviewer. - agreementAcceptances: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' - description: The user's terms of use acceptance statuses. Read-only. Nullable. - security: - $ref: '#/components/schemas/microsoft.graph.security.security' - deviceEnrollmentConfigurations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration' - description: Get enrollment configurations targeted to the user - managedDevices: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.managedDevice' - description: The managed devices associated with the user. - managedAppRegistrations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' - description: Zero or more managed app registrations that belong to the user. - windowsInformationProtectionDeviceRegistrations: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' - description: Zero or more WIP device registrations that belong to the user. - deviceManagementTroubleshootingEvents: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent' - description: The list of troubleshooting events for this user. - mobileAppIntentAndStates: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.mobileAppIntentAndState' - description: The list of troubleshooting events for this user. - mobileAppTroubleshootingEvents: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.mobileAppTroubleshootingEvent' - description: The list of mobile app troubleshooting events for this user. - notifications: + description: The collection of open extensions defined for the event. Nullable. + instances: type: array items: - $ref: '#/components/schemas/microsoft.graph.notification' - planner: - $ref: '#/components/schemas/microsoft.graph.plannerUser' - insights: - $ref: '#/components/schemas/microsoft.graph.itemInsights' - settings: - $ref: '#/components/schemas/microsoft.graph.userSettings' - onenote: - $ref: '#/components/schemas/microsoft.graph.onenote' - photo: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - photos: + $ref: '#/components/schemas/microsoft.graph.event' + description: 'The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.' + multiValueExtendedProperties: type: array items: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - profile: - $ref: '#/components/schemas/microsoft.graph.profile' - activities: + $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' + description: The collection of multi-value extended properties defined for the event. Read-only. Nullable. + singleValueExtendedProperties: type: array items: - $ref: '#/components/schemas/microsoft.graph.userActivity' - description: The user's activities across devices. Read-only. Nullable. - devices: + $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' + description: The collection of single-value extended properties defined for the event. Read-only. Nullable. + additionalProperties: + type: object + microsoft.graph.contactFolder: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: contactFolder + type: object + properties: + displayName: + type: string + description: The folder's display name. + nullable: true + parentFolderId: + type: string + description: The ID of the folder's parent folder. + nullable: true + wellKnownName: + type: string + description: The name of the folder if the folder is a recognized folder. Currently contacts is the only recognized contacts folder. + nullable: true + childFolders: type: array items: - $ref: '#/components/schemas/microsoft.graph.device' - onlineMeetings: + $ref: '#/components/schemas/microsoft.graph.contactFolder' + description: The collection of child folders in the folder. Navigation property. Read-only. Nullable. + contacts: type: array items: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' - presence: - $ref: '#/components/schemas/microsoft.graph.presence' - authentication: - $ref: '#/components/schemas/microsoft.graph.authentication' - tasks: - $ref: '#/components/schemas/microsoft.graph.tasks' - chats: + $ref: '#/components/schemas/microsoft.graph.contact' + description: The contacts in the folder. Navigation property. Read-only. Nullable. + multiValueExtendedProperties: type: array items: - $ref: '#/components/schemas/microsoft.graph.chat' - joinedTeams: + $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' + description: The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. + singleValueExtendedProperties: type: array items: - $ref: '#/components/schemas/microsoft.graph.team' - description: The Microsoft Teams teams that the user is a member of. Read-only. Nullable. - teamwork: - $ref: '#/components/schemas/microsoft.graph.userTeamwork' - todo: - $ref: '#/components/schemas/microsoft.graph.todo' + $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' + description: The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable. additionalProperties: type: object - microsoft.graph.teamworkTag: + microsoft.graph.contact: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamworkTag + - $ref: '#/components/schemas/microsoft.graph.outlookItem' + - title: contact type: object properties: - description: + assistantName: type: string - description: Tag description as it will appear to the user in Microsoft Teams. + description: The name of the contact's assistant. nullable: true - displayName: + birthday: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Tag name as it will appear to the user in Microsoft Teams. + description: 'The contact''s birthday. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z' + format: date-time nullable: true - memberCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of users assigned to the tag. - format: int32 + children: + type: array + items: + type: string + nullable: true + description: The names of the contact's children. + companyName: + type: string + description: The name of the contact's company. nullable: true - tagType: - $ref: '#/components/schemas/microsoft.graph.teamworkTagType' - teamId: + department: type: string - description: ID of the team in which the tag is defined. + description: The contact's department. nullable: true - members: + displayName: + type: string + description: 'The contact''s display name. You can specify the display name in a create or update operation. Note that later updates to other properties may cause an automatically generated value to overwrite the displayName value you have specified. To preserve a pre-existing value, always include it as displayName in an update operation.' + nullable: true + emailAddresses: type: array items: - $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' - description: Users assigned to the tag. - additionalProperties: - type: object - microsoft.graph.teamsTemplate: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: teamsTemplate - type: object - additionalProperties: - type: object - microsoft.graph.schedule: - allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: schedule - type: object - properties: - enabled: - type: boolean - description: Indicates whether the schedule is enabled for the team. Required. + $ref: '#/components/schemas/microsoft.graph.typedEmailAddress' + description: The contact's email addresses. + fileAs: + type: string + description: The name the contact is filed under. nullable: true - offerShiftRequestsEnabled: - type: boolean - description: Indicates whether offer shift requests are enabled for the schedule. + flag: + $ref: '#/components/schemas/microsoft.graph.followupFlag' + gender: + type: string + description: The contact's gender. nullable: true - openShiftsEnabled: - type: boolean - description: Indicates whether open shifts are enabled for the schedule. + generation: + type: string + description: The contact's generation. nullable: true - provisionStatus: - $ref: '#/components/schemas/microsoft.graph.operationStatus' - provisionStatusCode: + givenName: type: string - description: Additional information about why schedule provisioning failed. + description: The contact's given name. nullable: true - swapShiftsRequestsEnabled: - type: boolean - description: Indicates whether swap shifts requests are enabled for the schedule. + imAddresses: + type: array + items: + type: string + nullable: true + initials: + type: string nullable: true - timeClockEnabled: + isFavorite: type: boolean - description: Indicates whether time clock is enabled for the schedule. nullable: true - timeClockSettings: - $ref: '#/components/schemas/microsoft.graph.timeClockSettings' - timeOffRequestsEnabled: - type: boolean - description: Indicates whether time off requests are enabled for the schedule. + jobTitle: + type: string + nullable: true + manager: + type: string + nullable: true + middleName: + type: string + nullable: true + nickName: + type: string nullable: true - timeZone: + officeLocation: type: string - description: Indicates the time zone of the schedule team using tz database format. Required. nullable: true - workforceIntegrationIds: - type: array - items: - type: string - nullable: true - offerShiftRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' - openShiftChangeRequests: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' - openShifts: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.openShift' - schedulingGroups: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.schedulingGroup' - description: The logical grouping of users in the schedule (usually by role). - shifts: + parentFolderId: + type: string + nullable: true + personalNotes: + type: string + nullable: true + phones: type: array items: - $ref: '#/components/schemas/microsoft.graph.shift' - description: The shifts in the schedule. - swapShiftsChangeRequests: + $ref: '#/components/schemas/microsoft.graph.phone' + postalAddresses: type: array items: - $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' - timeCards: + $ref: '#/components/schemas/microsoft.graph.physicalAddress' + profession: + type: string + nullable: true + spouseName: + type: string + nullable: true + surname: + type: string + nullable: true + title: + type: string + nullable: true + websites: type: array items: - $ref: '#/components/schemas/microsoft.graph.timeCard' - timeOffReasons: + $ref: '#/components/schemas/microsoft.graph.website' + weddingAnniversary: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$' + type: string + format: date + nullable: true + yomiCompanyName: + type: string + nullable: true + yomiGivenName: + type: string + nullable: true + yomiSurname: + type: string + nullable: true + extensions: type: array items: - $ref: '#/components/schemas/microsoft.graph.timeOffReason' - description: The set of reasons for a time off in the schedule. - timeOffRequests: + $ref: '#/components/schemas/microsoft.graph.extension' + description: The collection of open extensions defined for the contact. Nullable. + multiValueExtendedProperties: type: array items: - $ref: '#/components/schemas/microsoft.graph.timeOffRequest' - timesOff: + $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' + description: The collection of multi-value extended properties defined for the contact. Read-only. Nullable. + photo: + $ref: '#/components/schemas/microsoft.graph.profilePhoto' + singleValueExtendedProperties: type: array items: - $ref: '#/components/schemas/microsoft.graph.timeOff' - description: The instances of times off in the schedule. + $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' + description: The collection of single-value extended properties defined for the contact. Read-only. Nullable. additionalProperties: type: object - microsoft.graph.expirationPatternType: - title: expirationPatternType - enum: - - notSpecified - - noExpiration - - afterDateTime - - afterDuration - type: string - microsoft.graph.ODataErrors.ErrorDetails: - required: - - code - - message - type: object - properties: - code: - type: string - message: - type: string - target: - type: string - nullable: true - additionalProperties: - type: object - microsoft.graph.ODataErrors.InnerError: - type: object - additionalProperties: - type: object - description: The structure of this object is service-specific - microsoft.graph.dayOfWeek: - title: dayOfWeek - enum: - - sunday - - monday - - tuesday - - wednesday - - thursday - - friday - - saturday - type: string - microsoft.graph.weekIndex: - title: weekIndex - enum: - - first - - second - - third - - fourth - - last - type: string - microsoft.graph.recurrencePatternType: - title: recurrencePatternType - enum: - - daily - - weekly - - absoluteMonthly - - relativeMonthly - - absoluteYearly - - relativeYearly - type: string - microsoft.graph.recurrenceRangeType: - title: recurrenceRangeType - enum: - - endDate - - noEnd - - numbered - type: string - microsoft.graph.calendarRoleType: - title: calendarRoleType - enum: - - none - - freeBusyRead - - limitedRead - - read - - write - - delegateWithoutPrivateEventAccess - - delegateWithPrivateEventAccess - - custom - type: string - microsoft.graph.attendeeBase: + microsoft.graph.inferenceClassification: allOf: - - $ref: '#/components/schemas/microsoft.graph.recipient' - - title: attendeeBase + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: inferenceClassification type: object properties: - type: - $ref: '#/components/schemas/microsoft.graph.attendeeType' + overrides: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.inferenceClassificationOverride' + description: 'A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable.' additionalProperties: type: object - microsoft.graph.timeSlot: - title: timeSlot - type: object - properties: - end: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - start: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - additionalProperties: - type: object - microsoft.graph.bodyType: - title: bodyType - enum: - - text - - html - type: string - microsoft.graph.physicalAddress: - title: physicalAddress - type: object - properties: - city: - type: string - description: The city. - nullable: true - countryOrRegion: - type: string - description: 'The country or region. It''s a free-format string value, for example, ''United States''.' - nullable: true - postalCode: - type: string - description: The postal code. - nullable: true - postOfficeBox: - type: string - description: The post office box number. - nullable: true - state: - type: string - description: The state. - nullable: true - street: - type: string - description: The street. - nullable: true - type: - $ref: '#/components/schemas/microsoft.graph.physicalAddressType' - additionalProperties: - type: object - microsoft.graph.outlookGeoCoordinates: - title: outlookGeoCoordinates - type: object - properties: - accuracy: - type: number - description: 'The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters.' - format: double - nullable: true - altitude: - type: number - description: The altitude of the location. - format: double - nullable: true - altitudeAccuracy: - type: number - description: The accuracy of the altitude. - format: double - nullable: true - latitude: - type: number - description: The latitude of the location. - format: double - nullable: true - longitude: - type: number - description: The longitude of the location. - format: double - nullable: true - additionalProperties: - type: object - microsoft.graph.locationType: - title: locationType - enum: - - default - - conferenceRoom - - homeAddress - - businessAddress - - geoCoordinates - - streetAddress - - hotel - - restaurant - - localBusiness - - postalAddress - type: string - microsoft.graph.locationUniqueIdType: - title: locationUniqueIdType - enum: - - unknown - - locationStore - - directory - - private - - bing - type: string - microsoft.graph.phone: - title: phone - type: object - properties: - number: - type: string - description: The phone number. - nullable: true - type: - $ref: '#/components/schemas/microsoft.graph.phoneType' - additionalProperties: - type: object - microsoft.graph.responseType: - title: responseType - enum: - - none - - organizer - - tentativelyAccepted - - accepted - - declined - - notResponded - type: string - microsoft.graph.mention: + microsoft.graph.mailFolder: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: mention + - title: mailFolder type: object properties: - application: - type: string - description: The name of the application where the mention is created. Optional. Not used and defaulted as null for message. + childFolderCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of immediate child mailFolders in the current mailFolder. + format: int32 nullable: true - clientReference: + displayName: type: string - description: A unique identifier that represents a parent of the resource instance. Optional. Not used and defaulted as null for message. + description: The mailFolder's display name. nullable: true - createdBy: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The date and time that the mention is created on the client. - format: date-time + isHidden: + type: boolean + description: Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders. nullable: true - deepLink: + parentFolderId: type: string - description: A deep web link to the context of the mention in the resource instance. Optional. Not used and defaulted as null for message. + description: The unique identifier for the mailFolder's parent mailFolder. nullable: true - mentioned: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - mentionText: - type: string - description: 'Optional. Not used and defaulted as null for message. To get the mentions in a message, see the bodyPreview property of the message instead.' + totalItemCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of items in the mailFolder. + format: int32 nullable: true - serverCreatedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + unreadItemCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The number of items in the mailFolder marked as unread. + format: int32 + nullable: true + wellKnownName: type: string - description: The date and time that the mention is created on the server. Optional. Not used and defaulted as null for message. - format: date-time + description: 'The well-known folder name for the folder. The possible values are listed above. This property is only set for default folders created by Outlook. For other folders, this property is null.' nullable: true + childFolders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mailFolder' + description: The collection of child folders in the mailFolder. + messageRules: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.messageRule' + description: The collection of rules that apply to the user's Inbox folder. + messages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.message' + description: The collection of messages in the mailFolder. + multiValueExtendedProperties: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' + description: The collection of multi-value extended properties defined for the mailFolder. Read-only. Nullable. + singleValueExtendedProperties: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' + description: The collection of single-value extended properties defined for the mailFolder. Read-only. Nullable. + userConfigurations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userConfiguration' additionalProperties: type: object - microsoft.graph.itemReference: - title: itemReference - type: object - properties: - driveId: - type: string - description: Unique identifier of the drive instance that contains the item. Read-only. - nullable: true - driveType: - type: string - description: 'Identifies the type of drive. See [drive][] resource for values.' - nullable: true - id: - type: string - description: Unique identifier of the item in the drive. Read-only. - nullable: true - name: - type: string - description: The name of the item being referenced. Read-only. - nullable: true - path: - type: string - description: Path that can be used to navigate to the item. Read-only. - nullable: true - shareId: - type: string - description: 'A unique identifier for a shared resource that can be accessed via the [Shares][] API.' - nullable: true - sharepointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - siteId: - type: string - description: 'For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource. The value is the same as the id property of that [site][] resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated.' - nullable: true - additionalProperties: - type: object - microsoft.graph.storagePlanInformation: - title: storagePlanInformation - type: object - properties: - upgradeAvailable: - type: boolean - description: Indicates if there are higher storage quota plans available. Read-only. - nullable: true - additionalProperties: - type: object - microsoft.graph.itemActionSet: - title: itemActionSet - type: object - properties: - comment: - $ref: '#/components/schemas/microsoft.graph.commentAction' - create: - $ref: '#/components/schemas/microsoft.graph.createAction' - delete: - $ref: '#/components/schemas/microsoft.graph.deleteAction' - edit: - $ref: '#/components/schemas/microsoft.graph.editAction' - mention: - $ref: '#/components/schemas/microsoft.graph.mentionAction' - move: - $ref: '#/components/schemas/microsoft.graph.moveAction' - rename: - $ref: '#/components/schemas/microsoft.graph.renameAction' - restore: - $ref: '#/components/schemas/microsoft.graph.restoreAction' - share: - $ref: '#/components/schemas/microsoft.graph.shareAction' - version: - $ref: '#/components/schemas/microsoft.graph.versionAction' - additionalProperties: - type: object - microsoft.graph.itemActivityTimeSet: - title: itemActivityTimeSet - type: object - properties: - lastRecordedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - format: date-time - nullable: true - observedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: When the activity was observed to take place. - format: date-time - nullable: true - recordedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: When the observation was recorded on the service. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.listItem: + microsoft.graph.message: allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItem' - - title: listItem + - $ref: '#/components/schemas/microsoft.graph.outlookItem' + - title: message type: object properties: - contentType: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - deleted: - $ref: '#/components/schemas/microsoft.graph.deleted' - sharepointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - activities: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.itemActivityOLD' - description: The list of recent activities that took place on this item. - analytics: - $ref: '#/components/schemas/microsoft.graph.itemAnalytics' - documentSetVersions: + bccRecipients: type: array items: - $ref: '#/components/schemas/microsoft.graph.documentSetVersion' - description: Version information for a document set version created by a user. - driveItem: - $ref: '#/components/schemas/microsoft.graph.driveItem' - fields: - $ref: '#/components/schemas/microsoft.graph.fieldValueSet' - versions: + $ref: '#/components/schemas/microsoft.graph.recipient' + description: 'The Bcc: recipients for the message.' + body: + $ref: '#/components/schemas/microsoft.graph.itemBody' + bodyPreview: + type: string + description: 'The first 255 characters of the message body. It is in text format. If the message contains instances of mention, this property would contain a concatenation of these mentions as well.' + nullable: true + ccRecipients: type: array items: - $ref: '#/components/schemas/microsoft.graph.listItemVersion' - description: The list of previous versions of the list item. - additionalProperties: - type: object - microsoft.graph.audio: - title: audio - type: object - properties: - album: - type: string - description: The title of the album for this audio file. - nullable: true - albumArtist: - type: string - description: The artist named on the album for the audio file. - nullable: true - artist: - type: string - description: The performing artist for the audio file. - nullable: true - bitrate: - type: integer - description: Bitrate expressed in kbps. - format: int64 - nullable: true - composers: - type: string - description: The name of the composer of the audio file. - nullable: true - copyright: - type: string - description: Copyright information for the audio file. - nullable: true - disc: - maximum: 32767 - minimum: -32768 - type: integer - description: The number of the disc this audio file came from. - format: int16 - nullable: true - discCount: - maximum: 32767 - minimum: -32768 - type: integer - description: The total number of discs in this album. - format: int16 - nullable: true - duration: - type: integer - description: 'Duration of the audio file, expressed in milliseconds' - format: int64 - nullable: true - genre: - type: string - description: The genre of this audio file. - nullable: true - hasDrm: - type: boolean - description: Indicates if the file is protected with digital rights management. - nullable: true - isVariableBitrate: - type: boolean - description: Indicates if the file is encoded with a variable bitrate. - nullable: true - title: - type: string - description: The title of the audio file. - nullable: true - track: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The number of the track on the original disc for this audio file. - format: int32 - nullable: true - trackCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The total number of tracks on the original disc for this audio file. - format: int32 - nullable: true - year: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The year the audio file was recorded. - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.bundle: - title: bundle - type: object - properties: - album: - $ref: '#/components/schemas/microsoft.graph.album' - childCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of children contained immediately within this container. - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.file: - title: file - type: object - properties: - hashes: - $ref: '#/components/schemas/microsoft.graph.hashes' - mimeType: - type: string - description: The MIME type for the file. This is determined by logic on the server and might not be the value provided when the file was uploaded. Read-only. - nullable: true - processingMetadata: - type: boolean - nullable: true - additionalProperties: - type: object - microsoft.graph.fileSystemInfo: - title: fileSystemInfo - type: object - properties: - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The UTC date and time the file was created on a client. - format: date-time - nullable: true - lastAccessedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The UTC date and time the file was last accessed. Available for the recent file list only. - format: date-time - nullable: true - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The UTC date and time the file was last modified on a client. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.folder: - title: folder - type: object - properties: - childCount: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of children contained immediately within this container. - format: int32 - nullable: true - view: - $ref: '#/components/schemas/microsoft.graph.folderView' - additionalProperties: - type: object - microsoft.graph.image: - title: image - type: object - properties: - height: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Optional. Height of the image, in pixels. Read-only.' - format: int32 - nullable: true - width: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Optional. Width of the image, in pixels. Read-only.' - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.geoCoordinates: - title: geoCoordinates - type: object - properties: - altitude: - type: number - description: 'Optional. The altitude (height), in feet, above sea level for the item. Read-only.' - format: double - nullable: true - latitude: - type: number - description: 'Optional. The latitude, in decimal, for the item. Writable on OneDrive Personal.' - format: double - nullable: true - longitude: - type: number - description: 'Optional. The longitude, in decimal, for the item. Writable on OneDrive Personal.' - format: double - nullable: true - additionalProperties: - type: object - microsoft.graph.malware: - title: malware - type: object - properties: - description: - type: string - description: Contains the virus details for the malware facet. - nullable: true - additionalProperties: - type: object - microsoft.graph.media: - title: media - type: object - properties: - isTranscriptionShown: - type: boolean - description: 'If a file has a transcript, this setting controls if the closed captions / transcription for the media file should be shown to people during viewing. Read-Write.' - nullable: true - mediaSource: - $ref: '#/components/schemas/microsoft.graph.mediaSource' - additionalProperties: - type: object - microsoft.graph.package: - title: package - type: object - properties: - type: - type: string - description: 'A string indicating the type of package. While oneNote is the only currently defined value, you should expect other package types to be returned and handle them accordingly.' - nullable: true - additionalProperties: - type: object - microsoft.graph.pendingOperations: - title: pendingOperations - type: object - properties: - pendingContentUpdate: - $ref: '#/components/schemas/microsoft.graph.pendingContentUpdate' - additionalProperties: - type: object - microsoft.graph.photo: - title: photo - type: object - properties: - cameraMake: - type: string - description: Camera manufacturer. Read-only. - nullable: true - cameraModel: - type: string - description: Camera model. Read-only. - nullable: true - exposureDenominator: - type: number - description: The denominator for the exposure time fraction from the camera. Read-only. - format: double - nullable: true - exposureNumerator: - type: number - description: The numerator for the exposure time fraction from the camera. Read-only. - format: double - nullable: true - fNumber: - type: number - description: The F-stop value from the camera. Read-only. - format: double - nullable: true - focalLength: - type: number - description: The focal length from the camera. Read-only. - format: double - nullable: true - iso: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The ISO value from the camera. Read-only. - format: int32 - nullable: true - orientation: - maximum: 32767 - minimum: -32768 - type: integer - description: The orientation value from the camera. Writable on OneDrive Personal. - format: int16 - nullable: true - takenDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The date and time the photo was taken in UTC time. Read-only. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.publicationFacet: - title: publicationFacet - type: object - properties: - level: - type: string - description: The state of publication for this document. Either published or checkout. Read-only. - nullable: true - versionId: - type: string - description: The unique identifier for the version that is visible to the current caller. Read-only. - nullable: true - additionalProperties: - type: object - microsoft.graph.remoteItem: - title: remoteItem - type: object - properties: - createdBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - createdDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Date and time of item creation. Read-only. - format: date-time - nullable: true - file: - $ref: '#/components/schemas/microsoft.graph.file' - fileSystemInfo: - $ref: '#/components/schemas/microsoft.graph.fileSystemInfo' - folder: - $ref: '#/components/schemas/microsoft.graph.folder' - id: - type: string - description: Unique identifier for the remote item in its drive. Read-only. - nullable: true - image: - $ref: '#/components/schemas/microsoft.graph.image' - lastModifiedBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - lastModifiedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: Date and time the item was last modified. Read-only. - format: date-time - nullable: true - name: - type: string - description: Optional. Filename of the remote item. Read-only. - nullable: true - package: - $ref: '#/components/schemas/microsoft.graph.package' - parentReference: - $ref: '#/components/schemas/microsoft.graph.itemReference' - shared: - $ref: '#/components/schemas/microsoft.graph.shared' - sharepointIds: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - size: - type: integer - description: Size of the remote item. Read-only. - format: int64 - nullable: true - specialFolder: - $ref: '#/components/schemas/microsoft.graph.specialFolder' - video: - $ref: '#/components/schemas/microsoft.graph.video' - webDavUrl: - type: string - description: DAV compatible URL for the item. - nullable: true - webUrl: - type: string - description: URL that displays the resource in the browser. Read-only. - nullable: true - additionalProperties: - type: object - microsoft.graph.searchResult: - title: searchResult - type: object - properties: - onClickTelemetryUrl: - type: string - description: A callback URL that can be used to record telemetry information. The application should issue a GET on this URL if the user interacts with this item to improve the quality of results. - nullable: true - additionalProperties: - type: object - microsoft.graph.shared: - title: shared - type: object - properties: - owner: - $ref: '#/components/schemas/microsoft.graph.identitySet' - scope: - type: string - description: 'Indicates the scope of how the item is shared: anonymous, organization, or users. Read-only.' - nullable: true - sharedBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - sharedDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: The UTC date and time when the item was shared. Read-only. - format: date-time - nullable: true - additionalProperties: - type: object - microsoft.graph.driveItemSource: - title: driveItemSource - type: object - properties: - application: - $ref: '#/components/schemas/microsoft.graph.driveItemSourceApplication' - externalId: - type: string - description: The external identifier for the drive item from the source. - nullable: true - additionalProperties: - type: object - microsoft.graph.specialFolder: - title: specialFolder - type: object - properties: - name: - type: string - description: The unique identifier for this item in the /drive/special collection - nullable: true - additionalProperties: - type: object - microsoft.graph.video: - title: video - type: object - properties: - audioBitsPerSample: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of audio bits per sample. - format: int32 - nullable: true - audioChannels: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of audio channels. - format: int32 - nullable: true - audioFormat: - type: string - description: 'Name of the audio format (AAC, MP3, etc.).' - nullable: true - audioSamplesPerSecond: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Number of audio samples per second. - format: int32 - nullable: true - bitrate: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Bit rate of the video in bits per second. - format: int32 - nullable: true - duration: - type: integer - description: Duration of the file in milliseconds. - format: int64 - nullable: true - fourCC: - type: string - description: '''Four character code'' name of the video format.' - nullable: true - frameRate: - type: number - description: Frame rate of the video. - format: double - nullable: true - height: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Height of the video, in pixels.' - format: int32 - nullable: true - width: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: 'Width of the video, in pixels.' - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.workbook: + $ref: '#/components/schemas/microsoft.graph.recipient' + description: 'The Cc: recipients for the message.' + conversationId: + type: string + description: The ID of the conversation the email belongs to. + nullable: true + conversationIndex: + type: string + description: Indicates the position of the message within the conversation. + format: base64url + nullable: true + flag: + $ref: '#/components/schemas/microsoft.graph.followupFlag' + from: + $ref: '#/components/schemas/microsoft.graph.recipient' + hasAttachments: + type: boolean + description: 'Indicates whether the message has attachments. This property doesn''t include inline attachments, so if a message contains only inline attachments, this property is false. To verify the existence of inline attachments, parse the body property to look for a src attribute, such as .' + nullable: true + importance: + $ref: '#/components/schemas/microsoft.graph.importance' + inferenceClassification: + $ref: '#/components/schemas/microsoft.graph.inferenceClassificationType' + internetMessageHeaders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.internetMessageHeader' + internetMessageId: + type: string + nullable: true + isDeliveryReceiptRequested: + type: boolean + nullable: true + isDraft: + type: boolean + nullable: true + isRead: + type: boolean + nullable: true + isReadReceiptRequested: + type: boolean + nullable: true + mentionsPreview: + $ref: '#/components/schemas/microsoft.graph.mentionsPreview' + parentFolderId: + type: string + nullable: true + receivedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + replyTo: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.recipient' + sender: + $ref: '#/components/schemas/microsoft.graph.recipient' + sentDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true + subject: + type: string + nullable: true + toRecipients: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.recipient' + uniqueBody: + $ref: '#/components/schemas/microsoft.graph.itemBody' + unsubscribeData: + type: array + items: + type: string + nullable: true + unsubscribeEnabled: + type: boolean + nullable: true + webLink: + type: string + nullable: true + attachments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.attachment' + description: The fileAttachment and itemAttachment attachments for the message. + extensions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.extension' + description: The collection of open extensions defined for the message. Nullable. + mentions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mention' + description: 'A collection of mentions in the message, ordered by the createdDateTime from the newest to the oldest. By default, a GET /messages does not return this property unless you apply $expand on the property.' + multiValueExtendedProperties: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty' + description: The collection of multi-value extended properties defined for the message. Nullable. + singleValueExtendedProperties: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty' + description: The collection of single-value extended properties defined for the message. Nullable. + additionalProperties: + type: object + microsoft.graph.outlookUser: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: outlookUser + type: object + properties: + masterCategories: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.outlookCategory' + description: A list of categories defined for the user. + taskFolders: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.outlookTaskFolder' + taskGroups: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.outlookTaskGroup' + tasks: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.outlookTask' + additionalProperties: + type: object + microsoft.graph.person: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: person + type: object + properties: + birthday: + type: string + description: The person's birthday. + nullable: true + companyName: + type: string + description: The name of the person's company. + nullable: true + department: + type: string + description: The person's department. + nullable: true + displayName: + type: string + description: The person's display name. + nullable: true + emailAddresses: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.rankedEmailAddress' + description: The person's email addresses. + givenName: + type: string + description: The person's given name. + nullable: true + isFavorite: + type: boolean + description: true if the user has flagged this person as a favorite. + nullable: true + mailboxType: + type: string + description: The type of mailbox that is represented by the person's email address. + nullable: true + officeLocation: + type: string + description: The location of the person's office. + nullable: true + personNotes: + type: string + description: Free-form notes that the user has taken about this person. + nullable: true + personType: + type: string + description: 'The type of person, for example distribution list.' + nullable: true + phones: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.phone' + description: The person's phone numbers. + postalAddresses: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.location' + description: The person's addresses. + profession: + type: string + description: The person's profession. + nullable: true + sources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personDataSource' + description: 'The sources the user data comes from, for example Directory or Outlook Contacts.' + surname: + type: string + description: The person's surname. + nullable: true + title: + type: string + description: The person's title. + nullable: true + userPrincipalName: + type: string + description: 'The user principal name (UPN) of the person. The UPN is an Internet-style login name for the person based on the Internet standard RFC 822. By convention, this should map to the person''s email name. The general format is alias@domain.' + nullable: true + websites: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.website' + description: The person's websites. + yomiCompany: + type: string + description: The phonetic Japanese name of the person's company. + nullable: true + additionalProperties: + type: object + microsoft.graph.drive: + allOf: + - $ref: '#/components/schemas/microsoft.graph.baseItem' + - title: drive + type: object + properties: + driveType: + type: string + description: Describes the type of drive represented by this resource. OneDrive personal drives will return personal. OneDrive for Business will return business. SharePoint document libraries will return documentLibrary. Read-only. + nullable: true + owner: + $ref: '#/components/schemas/microsoft.graph.identitySet' + quota: + $ref: '#/components/schemas/microsoft.graph.quota' + sharePointIds: + $ref: '#/components/schemas/microsoft.graph.sharepointIds' + system: + $ref: '#/components/schemas/microsoft.graph.systemFacet' + activities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.itemActivityOLD' + description: The list of recent activities that took place under this drive. + bundles: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.driveItem' + description: 'Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive.' + following: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.driveItem' + description: The list of items the user is following. Only in OneDrive for Business. + items: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.driveItem' + description: All items contained in the drive. Read-only. Nullable. + list: + $ref: '#/components/schemas/microsoft.graph.list' + root: + $ref: '#/components/schemas/microsoft.graph.driveItem' + special: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.driveItem' + description: Collection of common folders available in OneDrive. Read-only. Nullable. + additionalProperties: + type: object + microsoft.graph.site: + allOf: + - $ref: '#/components/schemas/microsoft.graph.baseItem' + - title: site + type: object + properties: + deleted: + $ref: '#/components/schemas/microsoft.graph.deleted' + displayName: + type: string + description: The full title for the site. Read-only. + nullable: true + root: + $ref: '#/components/schemas/microsoft.graph.root' + settings: + $ref: '#/components/schemas/microsoft.graph.siteSettings' + sharepointIds: + $ref: '#/components/schemas/microsoft.graph.sharepointIds' + siteCollection: + $ref: '#/components/schemas/microsoft.graph.siteCollection' + analytics: + $ref: '#/components/schemas/microsoft.graph.itemAnalytics' + columns: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.columnDefinition' + description: The collection of column definitions reusable across lists under this site. + contentTypes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.contentType' + description: The collection of content types defined for this site. + drive: + $ref: '#/components/schemas/microsoft.graph.drive' + drives: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.drive' + description: The collection of drives (document libraries) under this site. + externalColumns: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.columnDefinition' + description: The collection of column definitions available in the site that are referenced from the sites in the parent hierarchy of the current site. + items: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.baseItem' + description: Used to address any item contained in this site. This collection cannot be enumerated. + lists: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.list' + description: The collection of lists under this site. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' + description: The collection of long running operations for the site. + pages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.sitePage' + description: The collection of pages in the SitePages list in this site. + permissions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.permission' + description: The permissions associated with the site. Nullable. + sites: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.site' + description: The collection of the sub-sites under this site. + termStore: + $ref: '#/components/schemas/microsoft.graph.termStore.store' + onenote: + $ref: '#/components/schemas/microsoft.graph.onenote' + additionalProperties: + type: object + microsoft.graph.extension: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: extension + type: object + additionalProperties: + type: object + microsoft.graph.security.security: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: security + type: object + properties: + informationProtection: + $ref: '#/components/schemas/microsoft.graph.security.informationProtection' + additionalProperties: + type: object + microsoft.graph.deviceEnrollmentConfiguration: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceEnrollmentConfiguration + type: object + properties: + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Created date time in UTC of the device enrollment configuration + format: date-time + description: + type: string + description: The description of the device enrollment configuration + nullable: true + deviceEnrollmentConfigurationType: + $ref: '#/components/schemas/microsoft.graph.deviceEnrollmentConfigurationType' + displayName: + type: string + description: The display name of the device enrollment configuration + nullable: true + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Last modified date time in UTC of the device enrollment configuration + format: date-time + priority: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Priority is used when a user exists in multiple groups that are assigned enrollment configuration. Users are subject only to the configuration with the lowest priority value. + format: int32 + roleScopeTagIds: + type: array + items: + type: string + nullable: true + description: Optional role scope tags for the enrollment restrictions. + version: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The version of the device enrollment configuration + format: int32 + assignments: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.enrollmentConfigurationAssignment' + description: The list of group assignments for the device configuration profile + additionalProperties: + type: object + description: The Base Class of Device Enrollment Configuration + microsoft.graph.managedDevice: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: managedDevice + type: object + properties: + cloudPcRemoteActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.cloudPcRemoteActionResult' + aadRegistered: + type: boolean + description: Whether the device is Azure Active Directory registered. This property is read-only. + nullable: true + activationLockBypassCode: + type: string + description: Code that allows the Activation Lock on a device to be bypassed. This property is read-only. + nullable: true + androidSecurityPatchLevel: + type: string + description: Android security patch level. This property is read-only. + nullable: true + autopilotEnrolled: + type: boolean + description: Reports if the managed device is enrolled via auto-pilot. This property is read-only. + azureActiveDirectoryDeviceId: + type: string + description: The unique identifier for the Azure Active Directory device. Read only. This property is read-only. + nullable: true + azureADDeviceId: + type: string + description: The unique identifier for the Azure Active Directory device. Read only. This property is read-only. + nullable: true + azureADRegistered: + type: boolean + description: Whether the device is Azure Active Directory registered. This property is read-only. + nullable: true + bootstrapTokenEscrowed: + type: boolean + description: 'Reports if the managed device has an escrowed Bootstrap Token. This is only for macOS devices. To get, include BootstrapTokenEscrowed in the select clause and query with a device id. If FALSE, no bootstrap token is escrowed. If TRUE, the device has escrowed a bootstrap token with Intune. This property is read-only.' + chassisType: + $ref: '#/components/schemas/microsoft.graph.chassisType' + chromeOSDeviceInfo: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.chromeOSDeviceProperty' + description: List of properties of the ChromeOS Device. + complianceGracePeriodExpirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The DateTime when device compliance grace period expires. This property is read-only. + format: date-time + complianceState: + $ref: '#/components/schemas/microsoft.graph.complianceState' + configurationManagerClientEnabledFeatures: + $ref: '#/components/schemas/microsoft.graph.configurationManagerClientEnabledFeatures' + configurationManagerClientHealthState: + $ref: '#/components/schemas/microsoft.graph.configurationManagerClientHealthState' + configurationManagerClientInformation: + $ref: '#/components/schemas/microsoft.graph.configurationManagerClientInformation' + deviceActionResults: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceActionResult' + description: List of ComplexType deviceActionResult objects. This property is read-only. + deviceCategoryDisplayName: + type: string + description: Device category display name. This property is read-only. + nullable: true + deviceEnrollmentType: + $ref: '#/components/schemas/microsoft.graph.deviceEnrollmentType' + deviceFirmwareConfigurationInterfaceManaged: + type: boolean + description: 'Indicates whether the device is DFCI managed. When TRUE the device is DFCI managed. When FALSE, the device is not DFCI managed. The default value is FALSE.' + deviceHealthAttestationState: + $ref: '#/components/schemas/microsoft.graph.deviceHealthAttestationState' + deviceName: + type: string + description: Name of the device. This property is read-only. + nullable: true + deviceRegistrationState: + $ref: '#/components/schemas/microsoft.graph.deviceRegistrationState' + deviceType: + $ref: '#/components/schemas/microsoft.graph.deviceType' + easActivated: + type: boolean + description: Whether the device is Exchange ActiveSync activated. This property is read-only. + easActivationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Exchange ActivationSync activation time of the device. This property is read-only. + format: date-time + easDeviceId: + type: string + description: Exchange ActiveSync Id of the device. This property is read-only. + nullable: true + emailAddress: + type: string + description: Email(s) for the user associated with the device. This property is read-only. + nullable: true + enrolledDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Enrollment time of the device. This property is read-only. + format: date-time + enrollmentProfileName: + type: string + description: 'Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only.' + nullable: true + ethernetMacAddress: + type: string + description: Ethernet MAC. This property is read-only. + nullable: true + exchangeAccessState: + $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessState' + exchangeAccessStateReason: + $ref: '#/components/schemas/microsoft.graph.deviceManagementExchangeAccessStateReason' + exchangeLastSuccessfulSyncDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Last time the device contacted Exchange. This property is read-only. + format: date-time + freeStorageSpaceInBytes: + type: integer + description: Free Storage in Bytes. This property is read-only. + format: int64 + hardwareInformation: + $ref: '#/components/schemas/microsoft.graph.hardwareInformation' + iccid: + type: string + description: 'Integrated Circuit Card Identifier, it is A SIM card''s unique identification number. This property is read-only.' + nullable: true + imei: + type: string + description: IMEI. This property is read-only. + nullable: true + isEncrypted: + type: boolean + description: Device encryption status. This property is read-only. + isSupervised: + type: boolean + description: Device supervised status. This property is read-only. + jailBroken: + type: string + description: whether the device is jail broken or rooted. This property is read-only. + nullable: true + joinType: + $ref: '#/components/schemas/microsoft.graph.joinType' + lastSyncDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: The date and time that the device last completed a successful sync with Intune. This property is read-only. + format: date-time + lostModeState: + $ref: '#/components/schemas/microsoft.graph.lostModeState' + managedDeviceName: + type: string + description: Automatically generated name to identify a device. Can be overwritten to a user friendly name. + nullable: true + managedDeviceOwnerType: + $ref: '#/components/schemas/microsoft.graph.managedDeviceOwnerType' + managementAgent: + $ref: '#/components/schemas/microsoft.graph.managementAgentType' + managementCertificateExpirationDate: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Reports device management certificate expiration date. This property is read-only. + format: date-time + managementFeatures: + $ref: '#/components/schemas/microsoft.graph.managedDeviceManagementFeatures' + managementState: + $ref: '#/components/schemas/microsoft.graph.managementState' + manufacturer: + type: string + description: Manufacturer of the device. This property is read-only. + nullable: true + meid: + type: string + description: MEID. This property is read-only. + nullable: true + model: + type: string + description: Model of the device. This property is read-only. + nullable: true + notes: + type: string + description: Notes on the device created by IT Admin + nullable: true + operatingSystem: + type: string + description: 'Operating system of the device. Windows, iOS, etc. This property is read-only.' + nullable: true + osVersion: + type: string + description: Operating system version of the device. This property is read-only. + nullable: true + ownerType: + $ref: '#/components/schemas/microsoft.graph.ownerType' + partnerReportedThreatState: + $ref: '#/components/schemas/microsoft.graph.managedDevicePartnerReportedHealthState' + phoneNumber: + type: string + description: Phone number of the device. This property is read-only. + nullable: true + physicalMemoryInBytes: + type: integer + description: Total Memory in Bytes. This property is read-only. + format: int64 + preferMdmOverGroupPolicyAppliedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: 'Reports the DateTime the preferMdmOverGroupPolicy setting was set. When set, the Intune MDM settings will override Group Policy settings if there is a conflict. Read Only. This property is read-only.' + format: date-time + processorArchitecture: + $ref: '#/components/schemas/microsoft.graph.managedDeviceArchitecture' + remoteAssistanceSessionErrorDetails: + type: string + description: An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. + nullable: true + remoteAssistanceSessionUrl: + type: string + description: Url that allows a Remote Assistance session to be established with the device. This property is read-only. + nullable: true + requireUserEnrollmentApproval: + type: boolean + description: Reports if the managed iOS device is user approval enrollment. This property is read-only. + nullable: true + retireAfterDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Indicates the time after when a device will be auto retired because of scheduled action. This property is read-only. + format: date-time + roleScopeTagIds: + type: array + items: + type: string + nullable: true + description: List of Scope Tag IDs for this Device instance. + serialNumber: + type: string + description: SerialNumber. This property is read-only. + nullable: true + skuFamily: + type: string + description: Device sku family + nullable: true + skuNumber: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Device sku number, see also: https://docs.microsoft.com/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo. Valid values 0 to 2147483647. This property is read-only.' + format: int32 + specificationVersion: + type: string + description: Specification version. This property is read-only. + nullable: true + subscriberCarrier: + type: string + description: Subscriber Carrier. This property is read-only. + nullable: true + totalStorageSpaceInBytes: + type: integer + description: Total Storage in Bytes. This property is read-only. + format: int64 + udid: + type: string + description: Unique Device Identifier for iOS and macOS devices. This property is read-only. + nullable: true + userDisplayName: + type: string + description: User display name. This property is read-only. + nullable: true + userId: + type: string + description: Unique Identifier for the user associated with the device. This property is read-only. + nullable: true + userPrincipalName: + type: string + description: Device user principal name. This property is read-only. + nullable: true + usersLoggedOn: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.loggedOnUser' + description: Indicates the last logged on users of a device. This property is read-only. + wiFiMacAddress: + type: string + description: Wi-Fi MAC. This property is read-only. + nullable: true + windowsActiveMalwareCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Count of active malware for this windows device. This property is read-only. + format: int32 + windowsRemediatedMalwareCount: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: Count of remediated malware for this windows device. This property is read-only. + format: int32 + assignmentFilterEvaluationStatusDetails: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' + description: Managed device mobile app configuration states for this device. + deviceCompliancePolicyStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' + description: Device compliance policy states for this device. + deviceConfigurationStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceConfigurationState' + description: Device configuration states for this device. + managedDeviceMobileAppConfigurationStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationState' + description: Managed device mobile app configuration states for this device. + securityBaselineStates: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.securityBaselineState' + description: Security baseline states for this device. + detectedApps: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.detectedApp' + description: All applications currently installed on the device + deviceCategory: + $ref: '#/components/schemas/microsoft.graph.deviceCategory' + logCollectionRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' + description: List of log collection requests + users: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.user' + description: The primary users associated with the managed device. + windowsProtectionState: + $ref: '#/components/schemas/microsoft.graph.windowsProtectionState' + additionalProperties: + type: object + description: Devices that are managed or pre-enrolled through Intune + microsoft.graph.managedAppRegistration: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: workbook + - title: managedAppRegistration type: object properties: - application: - $ref: '#/components/schemas/microsoft.graph.workbookApplication' - comments: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.workbookComment' - functions: - $ref: '#/components/schemas/microsoft.graph.workbookFunctions' - names: + appIdentifier: + $ref: '#/components/schemas/microsoft.graph.mobileAppIdentifier' + applicationVersion: + type: string + description: App version + nullable: true + azureADDeviceId: + type: string + description: The Azure Active Directory Device identifier of the host device. Value could be empty even when the host device is Azure Active Directory registered. + nullable: true + createdDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Date and time of creation + format: date-time + deviceManufacturer: + type: string + description: The device manufacturer for the current app registration + nullable: true + deviceModel: + type: string + description: The device model for the current app registration + nullable: true + deviceName: + type: string + description: Host device name + nullable: true + deviceTag: + type: string + description: 'App management SDK generated tag, which helps relate apps hosted on the same device. Not guaranteed to relate apps in all conditions.' + nullable: true + deviceType: + type: string + description: Host device type + nullable: true + flaggedReasons: type: array items: - $ref: '#/components/schemas/microsoft.graph.workbookNamedItem' - description: Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. - operations: + $ref: '#/components/schemas/microsoft.graph.managedAppFlaggedReason' + description: Zero or more reasons an app registration is flagged. E.g. app running on rooted device + lastSyncDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + description: Date and time of last the app synced with management service. + format: date-time + managedDeviceId: + type: string + description: The Managed Device identifier of the host device. Value could be empty even when the host device is managed. + nullable: true + managementSdkVersion: + type: string + description: App management SDK version + nullable: true + platformVersion: + type: string + description: Operating System version + nullable: true + userId: + type: string + description: The user Id to who this app registration belongs. + nullable: true + version: + type: string + description: Version of the entity. + nullable: true + appliedPolicies: type: array items: - $ref: '#/components/schemas/microsoft.graph.workbookOperation' - description: 'The status of Workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. Nullable.' - tables: + $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' + description: Zero or more policys already applied on the registered app when it last synchronized with managment service. + intendedPolicies: type: array items: - $ref: '#/components/schemas/microsoft.graph.workbookTable' - description: Represents a collection of tables associated with the workbook. Read-only. - worksheets: + $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' + description: Zero or more policies admin intended for the app as of now. + operations: type: array items: - $ref: '#/components/schemas/microsoft.graph.workbookWorksheet' - description: Represents a collection of worksheets associated with the workbook. Read-only. + $ref: '#/components/schemas/microsoft.graph.managedAppOperation' + description: Zero or more long running operations triggered on the app registration. additionalProperties: type: object - microsoft.graph.subscription: + description: The ManagedAppEntity is the base entity type for all other entity types under app management workflow. + microsoft.graph.windowsInformationProtectionDeviceRegistration: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: subscription + - title: windowsInformationProtectionDeviceRegistration type: object properties: - applicationId: + deviceMacAddress: type: string - description: Optional. Identifier of the application used to create the subscription. Read-only. + description: Device Mac address. nullable: true - changeType: + deviceName: type: string - description: 'Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType.' - clientState: + description: Device name. + nullable: true + deviceRegistrationId: type: string - description: Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 255 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. + description: Device identifier for this device registration record. nullable: true - creatorId: + deviceType: type: string - description: 'Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the ID of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the ID of the service principal corresponding to the app. Read-only.' + description: 'Device type, for example, Windows laptop VS Windows phone.' nullable: true - encryptionCertificate: + lastCheckInDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. + description: Last checkin time of the device. + format: date-time + userId: + type: string + description: UserId associated with this device registration record. nullable: true - encryptionCertificateId: + additionalProperties: + type: object + description: Represents device registration records for Bring-Your-Own-Device(BYOD) Windows devices. + microsoft.graph.deviceManagementTroubleshootingEvent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: deviceManagementTroubleshootingEvent + type: object + properties: + additionalInformation: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.keyValuePair' + description: A set of string key and string value pairs which provides additional information on the Troubleshooting event + correlationId: type: string - description: Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Required when includeResourceData is true. + description: Id used for tracing the failure in the service. nullable: true - expirationDateTime: + eventDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: 'Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see the table below.' + description: Time when the event occurred . format: date-time - includeResourceData: - type: boolean - description: 'Optional. When set to true, change notifications include resource data (such as content of a chat message).' + eventName: + type: string + description: Event Name corresponding to the Troubleshooting Event. It is an Optional field nullable: true - latestSupportedTlsVersion: + troubleshootingErrorDetails: + $ref: '#/components/schemas/microsoft.graph.deviceManagementTroubleshootingErrorDetails' + additionalProperties: + type: object + description: Event representing an general failure. + microsoft.graph.mobileAppIntentAndState: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: mobileAppIntentAndState + type: object + properties: + managedDeviceIdentifier: type: string - description: 'Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v1_0, v1_1, v1_2, v1_3. For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2.' + description: Device identifier created or collected by Intune. nullable: true - lifecycleNotificationUrl: + mobileAppList: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mobileAppIntentAndStateDetail' + description: The list of payload intents and states for the tenant. + userId: type: string - description: 'Optional. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved and missed notifications. This URL must make use of the HTTPS protocol.' + description: Identifier for the user that tried to enroll the device. nullable: true - notificationContentType: + additionalProperties: + type: object + description: MobileApp Intent and Install State for a given device. + microsoft.graph.mobileAppTroubleshootingEvent: + allOf: + - $ref: '#/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent' + - title: mobileAppTroubleshootingEvent + type: object + properties: + applicationId: type: string - description: Optional. Desired content-type for Microsoft Graph change notifications for supported resource types. The default content-type is application/json. + description: Intune application identifier. nullable: true - notificationQueryOptions: + history: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.mobileAppTroubleshootingHistoryItem' + description: Intune Mobile Application Troubleshooting History Item + managedDeviceIdentifier: type: string - description: 'Optional. OData query options for specifying the value for the targeting resource. Clients receive notifications when the resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks will deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc.' + description: Device identifier created or collected by Intune. nullable: true - notificationUrl: + userId: type: string - description: Required. The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. - notificationUrlAppId: + description: Identifier for the user that tried to enroll the device. + nullable: true + appLogCollectionRequests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.appLogCollectionRequest' + description: The collection property of AppLogUploadRequest. + additionalProperties: + type: object + description: Event representing a users device application install status. + microsoft.graph.notification: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: notification + type: object + properties: + displayTimeToLive: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: 'Sets how long (in seconds) this notification content will stay in each platform''s notification viewer. For example, when the notification is delivered to a Windows device, the value of this property is passed on to ToastNotification.ExpirationTime, which determines how long the toast notification will stay in the user''s Windows Action Center.' + format: int32 + nullable: true + expirationDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string - description: Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. + description: 'Sets a UTC expiration date and time on a user notification using ISO 8601 format (for example, midnight UTC on Jan 1, 2019 would look like this: ''2019-01-01T00:00:00Z''). When time is up, the notification is removed from the Microsoft Graph notification feed store completely and is no longer part of notification history. Max value is 30 days.' + format: date-time nullable: true - resource: + groupName: type: string - description: Required. Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/beta/). See the possible resource path values for each supported resource. + description: The name of the group that this notification belongs to. It is set by the developer for the purpose of grouping notifications together. + nullable: true + payload: + $ref: '#/components/schemas/microsoft.graph.payloadTypes' + priority: + $ref: '#/components/schemas/microsoft.graph.priority' + targetHostName: + type: string + description: 'Represents the host name of the app to which the calling service wants to post the notification, for the given user. If targeting web endpoints (see targetPolicy.platformTypes), ensure that targetHostName is the same as the name used when creating a subscription on the client side within the application JSON property.' + targetPolicy: + $ref: '#/components/schemas/microsoft.graph.targetPolicyEndpoints' + additionalProperties: + type: object + microsoft.graph.plannerUser: + allOf: + - $ref: '#/components/schemas/microsoft.graph.plannerDelta' + - title: plannerUser + type: object + properties: + favoritePlanReferences: + $ref: '#/components/schemas/microsoft.graph.plannerFavoritePlanReferenceCollection' + recentPlanReferences: + $ref: '#/components/schemas/microsoft.graph.plannerRecentPlanReferenceCollection' + all: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.plannerDelta' + favoritePlans: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.plannerPlan' + description: Read-only. Nullable. Returns the plannerPlans that the user marked as favorites. + plans: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.plannerPlan' + recentPlans: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.plannerPlan' + description: Read-only. Nullable. Returns the plannerPlans that have been recently viewed by the user in apps that support recent plans. + rosterPlans: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.plannerPlan' + description: Read-only. Nullable. Returns the plannerPlans contained by the plannerRosters the user is a member. + tasks: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.plannerTask' + description: Read-only. Nullable. Returns the plannerTasks assigned to the user. additionalProperties: type: object - microsoft.graph.thumbnailSet: + microsoft.graph.itemInsights: allOf: - - $ref: '#/components/schemas/microsoft.graph.entity' - - title: thumbnailSet + - $ref: '#/components/schemas/microsoft.graph.officeGraphInsights' + - title: itemInsights type: object - properties: - large: - $ref: '#/components/schemas/microsoft.graph.thumbnail' - medium: - $ref: '#/components/schemas/microsoft.graph.thumbnail' - small: - $ref: '#/components/schemas/microsoft.graph.thumbnail' - source: - $ref: '#/components/schemas/microsoft.graph.thumbnail' additionalProperties: type: object - microsoft.graph.driveItemVersion: + microsoft.graph.userSettings: allOf: - - $ref: '#/components/schemas/microsoft.graph.baseItemVersion' - - title: driveItemVersion + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: userSettings type: object properties: - content: - type: string - format: base64url - nullable: true - size: - type: integer - description: Indicates the size of the content stream for this version of the item. - format: int64 - nullable: true + contributionToContentDiscoveryAsOrganizationDisabled: + type: boolean + description: 'Reflects the Office Delve organization level setting. When set to true, the organization doesn''t have access to Office Delve. This setting is read-only and can only be changed by administrators in the SharePoint admin center.' + contributionToContentDiscoveryDisabled: + type: boolean + description: 'When set to true, documents in the user''s Office Delve are disabled. Users can control this setting in Office Delve.' + itemInsights: + $ref: '#/components/schemas/microsoft.graph.userInsightsSettings' + contactMergeSuggestions: + $ref: '#/components/schemas/microsoft.graph.contactMergeSuggestions' + regionalAndLanguageSettings: + $ref: '#/components/schemas/microsoft.graph.regionalAndLanguageSettings' + shiftPreferences: + $ref: '#/components/schemas/microsoft.graph.shiftPreferences' additionalProperties: type: object - microsoft.graph.listInfo: - title: listInfo - type: object - properties: - contentTypesEnabled: - type: boolean - description: 'If true, indicates that content types are enabled for this list.' - nullable: true - hidden: - type: boolean - description: 'If true, indicates that the list is not normally visible in the SharePoint user experience.' - nullable: true - template: - type: string - description: 'An enumerated value that represents the base list template used in creating the list. Possible values include documentLibrary, genericList, task, survey, announcements, contacts, and more.' - nullable: true - additionalProperties: - type: object - microsoft.graph.itemActivityStat: + microsoft.graph.onenote: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: itemActivityStat + - title: onenote type: object properties: - access: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - create: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - delete: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - edit: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - endDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: When the interval ends. Read-only. - format: date-time - nullable: true - incompleteData: - $ref: '#/components/schemas/microsoft.graph.incompleteData' - isTrending: - type: boolean - description: Indicates whether the item is 'trending.' Read-only. - nullable: true - move: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - startDateTime: - pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' - type: string - description: When the interval starts. Read-only. - format: date-time - nullable: true - activities: + notebooks: type: array items: - $ref: '#/components/schemas/microsoft.graph.itemActivity' - description: Exposes the itemActivities represented in this itemActivityStat resource. + $ref: '#/components/schemas/microsoft.graph.notebook' + description: The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. + operations: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onenoteOperation' + description: 'The status of OneNote operations. Getting an operations collection is not supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.' + pages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onenotePage' + description: The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. + resources: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onenoteResource' + description: 'The image and other file resources in OneNote pages. Getting a resources collection is not supported, but you can get the binary content of a specific resource. Read-only. Nullable.' + sectionGroups: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.sectionGroup' + description: The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. + sections: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.onenoteSection' + description: The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. additionalProperties: type: object - microsoft.graph.booleanColumn: - title: booleanColumn - type: object - additionalProperties: - type: object - microsoft.graph.calculatedColumn: - title: calculatedColumn - type: object - properties: - format: - type: string - description: 'For dateTime output types, the format of the value. Must be one of dateOnly or dateTime.' - nullable: true - formula: - type: string - description: The formula used to compute the value for this column. - nullable: true - outputType: - type: string - description: 'The output type used to format values in this column. Must be one of boolean, currency, dateTime, number, or text.' - nullable: true - additionalProperties: - type: object - microsoft.graph.choiceColumn: - title: choiceColumn - type: object - properties: - allowTextEntry: - type: boolean - description: 'If true, allows custom values that aren''t in the configured choices.' - nullable: true - choices: - type: array - items: - type: string - nullable: true - description: The list of values available for this column. - displayAs: - type: string - description: 'How the choices are to be presented in the UX. Must be one of checkBoxes, dropDownMenu, or radioButtons' - nullable: true - additionalProperties: - type: object - microsoft.graph.contentApprovalStatusColumn: - title: contentApprovalStatusColumn - type: object - additionalProperties: - type: object - microsoft.graph.currencyColumn: - title: currencyColumn - type: object - properties: - locale: - type: string - description: Specifies the locale from which to infer the currency symbol. - nullable: true - additionalProperties: - type: object - microsoft.graph.dateTimeColumn: - title: dateTimeColumn - type: object - properties: - displayAs: - type: string - description: 'How the value should be presented in the UX. Must be one of default, friendly, or standard. See below for more details. If unspecified, treated as default.' - nullable: true - format: - type: string - description: Indicates whether the value should be presented as a date only or a date and time. Must be one of dateOnly or dateTime - nullable: true - additionalProperties: - type: object - microsoft.graph.defaultColumnValue: - title: defaultColumnValue - type: object - properties: - formula: - type: string - description: The formula used to compute the default value for this column. - nullable: true - value: - type: string - description: The direct value to use as the default value for this column. - nullable: true - additionalProperties: - type: object - microsoft.graph.geolocationColumn: - title: geolocationColumn - type: object - additionalProperties: - type: object - microsoft.graph.hyperlinkOrPictureColumn: - title: hyperlinkOrPictureColumn - type: object - properties: - isPicture: - type: boolean - description: Specifies whether the display format used for URL columns is an image or a hyperlink. - nullable: true - additionalProperties: - type: object - microsoft.graph.lookupColumn: - title: lookupColumn - type: object - properties: - allowMultipleValues: - type: boolean - description: Indicates whether multiple values can be selected from the source. - nullable: true - allowUnlimitedLength: - type: boolean - description: Indicates whether values in the column should be able to exceed the standard limit of 255 characters. - nullable: true - columnName: - type: string - description: The name of the lookup source column. - nullable: true - listId: - type: string - description: The unique identifier of the lookup source list. - nullable: true - primaryLookupColumnId: - type: string - description: 'If specified, this column is a secondary lookup, pulling an additional field from the list item looked up by the primary lookup. Use the list item looked up by the primary as the source for the column named here.' - nullable: true - additionalProperties: - type: object - microsoft.graph.numberColumn: - title: numberColumn - type: object - properties: - decimalPlaces: - type: string - description: How many decimal places to display. See below for information about the possible values. - nullable: true - displayAs: - type: string - description: 'How the value should be presented in the UX. Must be one of number or percentage. If unspecified, treated as number.' - nullable: true - maximum: - type: number - description: The maximum permitted value. - format: double - nullable: true - minimum: - type: number - description: The minimum permitted value. - format: double - nullable: true - additionalProperties: - type: object - microsoft.graph.personOrGroupColumn: - title: personOrGroupColumn - type: object - properties: - allowMultipleSelection: - type: boolean - description: Indicates whether multiple values can be selected from the source. - nullable: true - chooseFromType: - type: string - description: 'Whether to allow selection of people only, or people and groups. Must be one of peopleAndGroups or peopleOnly.' - nullable: true - displayAs: - type: string - description: How to display the information about the person or group chosen. See below. - nullable: true - additionalProperties: - type: object - microsoft.graph.contentTypeInfo: - title: contentTypeInfo - type: object - properties: - id: - type: string - description: The id of the content type. - nullable: true - name: - type: string - description: The name of the content type. - nullable: true - additionalProperties: - type: object - microsoft.graph.termColumn: - title: termColumn - type: object - properties: - allowMultipleValues: - type: boolean - description: Specifies whether the column will allow more than one value - nullable: true - showFullyQualifiedName: - type: boolean - description: Specifies whether to display the entire term path or only the term label. - nullable: true - parentTerm: - $ref: '#/components/schemas/microsoft.graph.termStore.term' - termSet: - $ref: '#/components/schemas/microsoft.graph.termStore.set' - additionalProperties: - type: object - microsoft.graph.textColumn: - title: textColumn - type: object - properties: - allowMultipleLines: - type: boolean - description: Whether to allow multiple lines of text. - nullable: true - appendChangesToExistingText: - type: boolean - description: 'Whether updates to this column should replace existing text, or append to it.' - nullable: true - linesForEditing: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The size of the text box. - format: int32 - nullable: true - maxLength: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: The maximum number of characters for the value. - format: int32 - nullable: true - textType: - type: string - description: The type of text being stored. Must be one of plain or richText - nullable: true - additionalProperties: - type: object - microsoft.graph.thumbnailColumn: - title: thumbnailColumn - type: object - additionalProperties: - type: object - microsoft.graph.columnTypes: - title: columnTypes - enum: - - note - - text - - choice - - multichoice - - number - - currency - - dateTime - - lookup - - boolean - - user - - url - - calculated - - location - - geolocation - - term - - multiterm - - thumbnail - - approvalStatus - - unknownFutureValue - type: string - microsoft.graph.columnValidation: - title: columnValidation - type: object - properties: - defaultLanguage: - type: string - description: Default BCP 47 language tag for the description. - nullable: true - descriptions: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.displayNameLocalization' - description: Localized messages that explain what is needed for this column's value to be considered valid. User will be prompted with this message if validation fails. - formula: - type: string - description: 'The formula to validate column value. For examples, see Examples of common formulas in lists' - nullable: true - additionalProperties: - type: object - microsoft.graph.documentSet: - title: documentSet - type: object - properties: - allowedContentTypes: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - description: Content types allowed in document set. - defaultContents: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.documentSetContent' - description: Default contents of document set. - propagateWelcomePageChanges: - type: boolean - description: Indicates whether to add the name of the document set to each file name. - nullable: true - shouldPrefixNameToFile: - type: boolean - description: Add the name of the Document Set to each file name. - nullable: true - welcomePageUrl: - type: string - description: Welcome page absolute URL. - nullable: true - sharedColumns: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - welcomePageColumns: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - additionalProperties: - type: object - microsoft.graph.documentSetContent: - title: documentSetContent - type: object - properties: - contentType: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - fileName: - type: string - description: Name of the file in resource folder that should be added as a default content or a template in the document set - nullable: true - folderName: - type: string - description: Folder name in which the file will be placed when a new document set is created in the library. - nullable: true - additionalProperties: - type: object - microsoft.graph.contentTypeOrder: - title: contentTypeOrder - type: object - properties: - default: - type: boolean - description: Whether this is the default Content Type - nullable: true - position: - maximum: 2147483647 - minimum: -2147483648 - type: integer - description: Specifies the position in which the Content Type appears in the selection UI. - format: int32 - nullable: true - additionalProperties: - type: object - microsoft.graph.columnLink: + microsoft.graph.profilePhoto: + allOf: + - $ref: '#/components/schemas/microsoft.graph.entity' + - title: profilePhoto + type: object + properties: + height: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The height of the photo. Read-only. + format: int32 + nullable: true + width: + maximum: 2147483647 + minimum: -2147483648 + type: integer + description: The width of the photo. Read-only. + format: int32 + nullable: true + additionalProperties: + type: object + microsoft.graph.profile: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: columnLink + - title: profile type: object properties: - name: - type: string - description: The name of the column in this content type. - nullable: true + account: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.userAccountInformation' + addresses: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.itemAddress' + description: Represents details of addresses associated with the user. + anniversaries: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personAnnualEvent' + description: Represents the details of meaningful dates associated with a person. + awards: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personAward' + description: Represents the details of awards or honors associated with a person. + certifications: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personCertification' + description: Represents the details of certifications associated with a person. + educationalActivities: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.educationalActivity' + description: 'Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.' + emails: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.itemEmail' + description: Represents detailed information about email addresses associated with the user. + interests: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personInterest' + description: Provides detailed information about interests the user has associated with themselves in various services. + languages: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.languageProficiency' + description: Represents detailed information about languages that a user has added to their profile. + names: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personName' + description: Represents the names a user has added to their profile. + notes: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personAnnotation' + description: Represents notes that a user has added to their profile. + patents: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.itemPatent' + description: Represents patents that a user has added to their profile. + phones: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.itemPhone' + description: Represents detailed information about phone numbers associated with a user in various services. + positions: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.workPosition' + description: Represents detailed information about work positions associated with a user's profile. + projects: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.projectParticipation' + description: Represents detailed information about projects associated with a user. + publications: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.itemPublication' + description: Represents details of any publications a user has added to their profile. + skills: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.skillProficiency' + description: Represents detailed information about skills associated with a user in various services. + webAccounts: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.webAccount' + description: Represents web accounts the user has indicated they use or has added to their user profile. + websites: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.personWebsite' + description: Represents detailed information about websites associated with a user in various services. additionalProperties: type: object - microsoft.graph.longRunningOperation: + microsoft.graph.userActivity: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - - title: longRunningOperation + - title: userActivity type: object properties: + activationUrl: + type: string + activitySourceHost: + type: string + appActivityId: + type: string + appDisplayName: + type: string + nullable: true + contentInfo: + $ref: '#/components/schemas/microsoft.graph.Json' + contentUrl: + type: string + nullable: true createdDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string format: date-time nullable: true - lastActionDateTime: + expirationDateTime: pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' type: string format: date-time nullable: true - resourceLocation: + fallbackUrl: type: string nullable: true + lastModifiedDateTime: + pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$' + type: string + format: date-time + nullable: true status: - $ref: '#/components/schemas/microsoft.graph.longRunningOperationStatus' - statusDetail: + $ref: '#/components/schemas/microsoft.graph.status' + userTimezone: type: string nullable: true + visualElements: + $ref: '#/components/schemas/microsoft.graph.visualInfo' + historyItems: + type: array + items: + $ref: '#/components/schemas/microsoft.graph.activityHistoryItem' additionalProperties: type: object - microsoft.graph.publicError: - title: publicError - type: object - properties: - code: - type: string - description: Represents the error code. - nullable: true - details: - type: array - items: - $ref: '#/components/schemas/microsoft.graph.publicErrorDetail' - description: Details of the error. - innerError: - $ref: '#/components/schemas/microsoft.graph.publicInnerError' - message: - type: string - description: A non-localized message for the developer. - nullable: true - target: - type: string - description: The target of the error. - nullable: true - additionalProperties: - type: object - microsoft.graph.webPart: - title: webPart - type: object - properties: - data: - $ref: '#/components/schemas/microsoft.graph.sitePageData' - type: - type: string - description: A unique identifier specifying the webPart type. Read-only. - nullable: true - additionalProperties: - type: object - microsoft.graph.sharePointIdentitySet: - allOf: - - $ref: '#/components/schemas/microsoft.graph.identitySet' - - title: sharePointIdentitySet - type: object - properties: - group: - $ref: '#/components/schemas/microsoft.graph.identity' - siteGroup: - $ref: '#/components/schemas/microsoft.graph.sharePointIdentity' - siteUser: - $ref: '#/components/schemas/microsoft.graph.sharePointIdentity' - additionalProperties: - type: object - microsoft.graph.sharingInvitation: - title: sharingInvitation - type: object - properties: - email: - type: string - description: The email address provided for the recipient of the sharing invitation. Read-only. - nullable: true - invitedBy: - $ref: '#/components/schemas/microsoft.graph.identitySet' - redeemedBy: - type: string - nullable: true - signInRequired: - type: boolean - description: If true the recipient of the invitation needs to sign in in order to access the shared item. Read-only. - nullable: true - additionalProperties: - type: object - microsoft.graph.sharingLink: - title: sharingLink - type: object - properties: - application: - $ref: '#/components/schemas/microsoft.graph.identity' - configuratorUrl: - type: string - nullable: true - preventsDownload: - type: boolean - description: 'If true then the user can only use this link to view the item on the web, and cannot use it to download the contents of the item. Only for OneDrive for Business and SharePoint.' - nullable: true - scope: - type: string - description: 'The scope of the link represented by this permission. Value anonymous indicates the link is usable by anyone, organization indicates the link is only usable for users signed into the same tenant.' - nullable: true - type: - type: string - description: The type of the link created. - nullable: true - webHtml: - type: string - description: 'For embed links, this property contains the HTML code for an